(sctx *super.Context)
| 380 | } |
| 381 | |
| 382 | func (b *bytesStringTypeBuilder) Build(sctx *super.Context) Any { |
| 383 | switch b.typ.ID() { |
| 384 | case super.IDString: |
| 385 | return NewString(NewBytesTable(b.offs, b.bytes)) |
| 386 | case super.IDBytes: |
| 387 | return NewBytes(NewBytesTable(b.offs, b.bytes)) |
| 388 | default: |
| 389 | return NewTypeValue(NewBytesTable(b.offs, b.bytes)) |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | type ipBuilder struct { |
| 394 | values []netip.Addr |
nothing calls this directly
no test coverage detected