| 1838 | return 1; |
| 1839 | } |
| 1840 | static int my_xpath_parse_PrimaryExpr(MY_XPATH *xpath) |
| 1841 | { |
| 1842 | return |
| 1843 | my_xpath_parse_lp_Expr_rp(xpath) || |
| 1844 | my_xpath_parse_VariableReference(xpath) || |
| 1845 | my_xpath_parse_PrimaryExpr_literal(xpath) || |
| 1846 | my_xpath_parse_Number(xpath) || |
| 1847 | my_xpath_parse_FunctionCall(xpath); |
| 1848 | } |
| 1849 | |
| 1850 | |
| 1851 | /* |
no test coverage detected