(in ...vector.Any)
| 42 | } |
| 43 | |
| 44 | func (a *ArrayExpr) eval(in ...vector.Any) vector.Any { |
| 45 | offsets, inner := buildList(a.sctx, a.elems, in) |
| 46 | return vector.NewArray(a.sctx.LookupTypeArray(inner.Type()), offsets, inner) |
| 47 | } |
| 48 | |
| 49 | func buildList(sctx *super.Context, elems []ListElem, in []vector.Any) ([]uint32, vector.Any) { |
| 50 | n := in[0].Len() |
nothing calls this directly
no test coverage detected