parse with whitespace
| 575 | |
| 576 | // parse with whitespace |
| 577 | virtual bool parse_non_term(_context& con) const override { |
| 578 | _state st(con); |
| 579 | if (!m_expr->parse_non_term(con)) con.restore(st); |
| 580 | return true; |
| 581 | } |
| 582 | |
| 583 | // parse terminal |
| 584 | virtual bool parse_term(_context& con) const override { |
nothing calls this directly
no test coverage detected