| 304 | } |
| 305 | |
| 306 | type intBuilder struct { |
| 307 | typ super.Type |
| 308 | values []int64 |
| 309 | } |
| 310 | |
| 311 | func (i *intBuilder) Write(bytes scode.Bytes) { |
| 312 | i.values = append(i.values, super.DecodeInt(bytes)) |
nothing calls this directly
no outgoing calls
no test coverage detected