nolint:unused
(pv potentialValue)
| 1129 | |
| 1130 | //nolint:unused |
| 1131 | func (i *interpreter) evaluateString(pv potentialValue) (valueString, error) { |
| 1132 | v, err := i.evaluatePV(pv) |
| 1133 | if err != nil { |
| 1134 | return nil, err |
| 1135 | } |
| 1136 | return i.getString(v) |
| 1137 | } |
| 1138 | |
| 1139 | func (i *interpreter) getBoolean(val value) (*valueBoolean, error) { |
| 1140 | switch v := val.(type) { |
nothing calls this directly
no test coverage detected