(offsets []uint32, bytes []byte)
| 70 | } |
| 71 | |
| 72 | func NewBytesTable(offsets []uint32, bytes []byte) BytesTable { |
| 73 | return BytesTable{offsets, bytes} |
| 74 | } |
| 75 | |
| 76 | func NewBytesTableEmpty(cap uint32) BytesTable { |
| 77 | return BytesTable{make([]uint32, 1, cap+1), nil} |
no outgoing calls
no test coverage detected