parse terminal
| 606 | |
| 607 | // parse terminal |
| 608 | virtual bool parse_term(_context& con) const override { |
| 609 | _state st(con); |
| 610 | bool ok = m_expr->parse_term(con); |
| 611 | con.restore(st); |
| 612 | return ok; |
| 613 | } |
| 614 | }; |
| 615 | |
| 616 | // not |
nothing calls this directly
no test coverage detected