nolint:unused
(pv potentialValue)
| 1165 | |
| 1166 | //nolint:unused |
| 1167 | func (i *interpreter) evaluateArray(pv potentialValue) (*valueArray, error) { |
| 1168 | v, err := i.evaluatePV(pv) |
| 1169 | if err != nil { |
| 1170 | return nil, err |
| 1171 | } |
| 1172 | return i.getArray(v) |
| 1173 | } |
| 1174 | |
| 1175 | func (i *interpreter) getFunction(val value) (*valueFunction, error) { |
| 1176 | switch v := val.(type) { |
nothing calls this directly
no test coverage detected