parse terminal
| 655 | |
| 656 | // parse terminal |
| 657 | virtual bool parse_term(_context& con) const override { |
| 658 | if (!m_expr->parse_term(con)) return false; |
| 659 | con.next_line(); |
| 660 | return true; |
| 661 | } |
| 662 | }; |
| 663 | |
| 664 | // base class for binary expressions |
nothing calls this directly
no test coverage detected