Expr ::= OrExpr
| 9543 | |
| 9544 | // Expr ::= OrExpr |
| 9545 | xpath_ast_node* parse_expression() |
| 9546 | { |
| 9547 | return parse_or_expression(); |
| 9548 | } |
| 9549 | |
| 9550 | xpath_parser(const char_t* query, xpath_variable_set* variables, xpath_allocator* alloc, xpath_parse_result* result): _alloc(alloc), _lexer(query), _query(query), _variables(variables), _result(result) |
| 9551 | { |
nothing calls this directly
no outgoing calls
no test coverage detected