parse with whitespace
| 623 | |
| 624 | // parse with whitespace |
| 625 | virtual bool parse_non_term(_context& con) const override { |
| 626 | _state st(con); |
| 627 | bool ok = !m_expr->parse_non_term(con); |
| 628 | con.restore(st); |
| 629 | return ok; |
| 630 | } |
| 631 | |
| 632 | // parse terminal |
| 633 | virtual bool parse_term(_context& con) const override { |
nothing calls this directly
no test coverage detected