parse terminal
| 701 | |
| 702 | // parse terminal |
| 703 | virtual bool parse_term(_context& con) const override { |
| 704 | if (!m_left->parse_term(con)) return false; |
| 705 | return m_right->parse_term(con); |
| 706 | } |
| 707 | |
| 708 | virtual EXPR_TYPE get_type() const override { |
| 709 | return EXPR_TYPE::SEQ_TWO; |
nothing calls this directly
no test coverage detected