(sctx *super.Context)
| 13 | } |
| 14 | |
| 15 | func NewFields(sctx *super.Context) *Fields { |
| 16 | inner := sctx.LookupTypeArray(super.TypeString) |
| 17 | return &Fields{ |
| 18 | sctx: sctx, |
| 19 | innerTyp: inner, |
| 20 | outerTyp: sctx.LookupTypeArray(inner), |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func (f *Fields) Call(args ...vector.Any) vector.Any { |
| 25 | if vec, ok := expr.CheckForNullThenError(args); ok { |