Parse binop expressions

Signed-off-by: CHatingPython <chatingpython@gmail.com>
This commit is contained in:
CHatingPython
2026-05-26 21:06:37 +02:00
committed by CHatingPython
parent e205d67443
commit f130553e20
8 changed files with 194 additions and 30 deletions
+2
View File
@@ -48,6 +48,8 @@ public:
literal_node_t literal_type() const override { return literal_node_t::Integer; }
const handle<front::integer_token>& value() const { return m_value; }
bool operator==(front::integer_token integer) const { return m_value == integer; }
public:
std::ostream& print(std::ostream& os) const override;
protected: