parse with whitespace
| 598 | |
| 599 | // parse with whitespace |
| 600 | virtual bool parse_non_term(_context& con) const override { |
| 601 | _state st(con); |
| 602 | bool ok = m_expr->parse_non_term(con); |
| 603 | con.restore(st); |
| 604 | return ok; |
| 605 | } |
| 606 | |
| 607 | // parse terminal |
| 608 | virtual bool parse_term(_context& con) const override { |
nothing calls this directly
no test coverage detected