added string function to all nodes of ast

This commit is contained in:
Karma Riuk
2025-07-08 10:17:38 +02:00
parent da2b6716b1
commit 31cb483602
12 changed files with 60 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ namespace ast {
ast::expression* expression;
std::string token_literal() const override;
std::string str() const override;
~expression_stmt();
};