newErrorFormulaArg create an error formula argument of a given type with a specified error message.
(formulaError, msg string)
| 956 | // newErrorFormulaArg create an error formula argument of a given type with a |
| 957 | // specified error message. |
| 958 | func newErrorFormulaArg(formulaError, msg string) formulaArg { |
| 959 | return formulaArg{Type: ArgError, String: formulaError, Error: msg} |
| 960 | } |
| 961 | |
| 962 | // newEmptyFormulaArg create an empty formula argument. |
| 963 | func newEmptyFormulaArg() formulaArg { |
no outgoing calls