(sctx *super.Context)
| 196 | } |
| 197 | |
| 198 | func (a *arraySetBuilder) Build(sctx *super.Context) Any { |
| 199 | if typ, ok := a.typ.(*super.TypeArray); ok { |
| 200 | return NewArray(typ, a.offsets, a.values.Build(sctx)) |
| 201 | } |
| 202 | return NewSet(a.typ.(*super.TypeSet), a.offsets, a.values.Build(sctx)) |
| 203 | } |
| 204 | |
| 205 | type mapBuilder struct { |
| 206 | typ *super.TypeMap |