(bytes scode.Bytes)
| 322 | } |
| 323 | |
| 324 | func (u *uintBuilder) Write(bytes scode.Bytes) { |
| 325 | u.values = append(u.values, super.DecodeUint(bytes)) |
| 326 | } |
| 327 | |
| 328 | func (u *uintBuilder) Build(sctx *super.Context) Any { |
| 329 | return NewUint(u.typ, u.values) |
nothing calls this directly
no test coverage detected