| 365 | } |
| 366 | |
| 367 | type bytesStringTypeBuilder struct { |
| 368 | typ super.Type |
| 369 | offs []uint32 |
| 370 | bytes []byte |
| 371 | } |
| 372 | |
| 373 | func newBytesStringTypeBuilder(typ super.Type) Builder { |
| 374 | return &bytesStringTypeBuilder{typ: typ, bytes: []byte{}, offs: []uint32{0}} |
nothing calls this directly
no outgoing calls
no test coverage detected