(b *buffer)
| 553 | } |
| 554 | |
| 555 | func (p *Function) encode(b *buffer) { |
| 556 | encodeUint64Opt(b, 1, p.ID) |
| 557 | encodeInt64Opt(b, 2, p.nameX) |
| 558 | encodeInt64Opt(b, 3, p.systemNameX) |
| 559 | encodeInt64Opt(b, 4, p.filenameX) |
| 560 | encodeInt64Opt(b, 5, p.StartLine) |
| 561 | } |
| 562 | |
| 563 | var functionDecoder = []decoder{ |
| 564 | nil, // 0 |
nothing calls this directly
no test coverage detected