parse with whitespace
| 695 | |
| 696 | // parse with whitespace |
| 697 | virtual bool parse_non_term(_context& con) const override { |
| 698 | if (!m_left->parse_non_term(con)) return false; |
| 699 | return m_right->parse_non_term(con); |
| 700 | } |
| 701 | |
| 702 | // parse terminal |
| 703 | virtual bool parse_term(_context& con) const override { |
nothing calls this directly
no test coverage detected