| 609 | } |
| 610 | |
| 611 | bool parseExpression(const char* exp, IExpressionFunctions* funcs, u64& dest, std::string& error) |
| 612 | { |
| 613 | PostfixExpression postfix; |
| 614 | if (!initPostfixExpression(exp,funcs,postfix,error)) return false; |
| 615 | return parsePostfixExpression(postfix,funcs,dest,error); |
| 616 | } |
no test coverage detected