| 37 | } |
| 38 | |
| 39 | type recordExpr struct { |
| 40 | sctx *super.Context |
| 41 | elems []RecordElem |
| 42 | |
| 43 | elemVecs []vector.Any |
| 44 | fields []super.Field |
| 45 | fieldIndexes map[string]int |
| 46 | fieldVecs []vector.Any |
| 47 | } |
| 48 | |
| 49 | func (r *recordExpr) Eval(this vector.Any) vector.Any { |
| 50 | if len(r.elems) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected