nolint:unused
(pv potentialValue)
| 1111 | |
| 1112 | //nolint:unused |
| 1113 | func (i *interpreter) evaluateInt64(pv potentialValue) (int64, error) { |
| 1114 | v, err := i.evaluatePV(pv) |
| 1115 | if err != nil { |
| 1116 | return 0, err |
| 1117 | } |
| 1118 | return i.getInt64(v) |
| 1119 | } |
| 1120 | |
| 1121 | func (i *interpreter) getString(val value) (valueString, error) { |
| 1122 | switch v := val.(type) { |
nothing calls this directly
no test coverage detected