Removed toString from expressions

This commit is contained in:
Rafał Grodziński
2025-07-02 17:40:21 +09:00
parent e9d55a2ed1
commit 77b7a7f7c8
20 changed files with 3 additions and 103 deletions

View File

@@ -25,7 +25,7 @@ private:
public:
Statement(StatementKind kind);
virtual ~Statement() {}
virtual ~Statement() { }
StatementKind getKind();
bool isValid();
};