(bytes scode.Bytes)
| 273 | } |
| 274 | |
| 275 | func (f *fusionBuilder) Write(bytes scode.Bytes) { |
| 276 | it := bytes.Iter() |
| 277 | f.values.Write(it.Next()) |
| 278 | f.subtypes = append(f.subtypes, it.Next()) |
| 279 | } |
| 280 | |
| 281 | func (f *fusionBuilder) Build(sctx *super.Context) Any { |
| 282 | types := make([]super.Type, 0, len(f.subtypes)) |