Parse the expression with default parser instance. @param inputExpression input expression @return the parsed expression @throws ParseException if the expression cannot be parsed
(String inputExpression)
| 22 | * @throws ParseException if the expression cannot be parsed |
| 23 | */ |
| 24 | static Expression parseDefault(String inputExpression) throws ParseException { |
| 25 | return ParserImpl.getInstance().parse(inputExpression); |
| 26 | } |
| 27 |
no outgoing calls