(bytes scode.Bytes)
| 309 | } |
| 310 | |
| 311 | func (i *intBuilder) Write(bytes scode.Bytes) { |
| 312 | i.values = append(i.values, super.DecodeInt(bytes)) |
| 313 | } |
| 314 | |
| 315 | func (i *intBuilder) Build(sctx *super.Context) Any { |
| 316 | return NewInt(i.typ, i.values) |
nothing calls this directly
no test coverage detected