parse terminal
| 582 | |
| 583 | // parse terminal |
| 584 | virtual bool parse_term(_context& con) const override { |
| 585 | _state st(con); |
| 586 | if (!m_expr->parse_term(con)) con.restore(st); |
| 587 | return true; |
| 588 | } |
| 589 | }; |
| 590 | |
| 591 | // and |
nothing calls this directly
no test coverage detected