(typ super.Type)
| 371 | } |
| 372 | |
| 373 | func newBytesStringTypeBuilder(typ super.Type) Builder { |
| 374 | return &bytesStringTypeBuilder{typ: typ, bytes: []byte{}, offs: []uint32{0}} |
| 375 | } |
| 376 | |
| 377 | func (b *bytesStringTypeBuilder) Write(bytes scode.Bytes) { |
| 378 | b.bytes = append(b.bytes, bytes...) |