nolint:unused
(pv potentialValue)
| 1183 | |
| 1184 | //nolint:unused |
| 1185 | func (i *interpreter) evaluateFunction(pv potentialValue) (*valueFunction, error) { |
| 1186 | v, err := i.evaluatePV(pv) |
| 1187 | if err != nil { |
| 1188 | return nil, err |
| 1189 | } |
| 1190 | return i.getFunction(v) |
| 1191 | } |
| 1192 | |
| 1193 | func (i *interpreter) getObject(val value) (*valueObject, error) { |
| 1194 | switch v := val.(type) { |
nothing calls this directly
no test coverage detected