added tests for the stringification of the program

This commit is contained in:
Karma Riuk
2025-07-08 11:18:54 +02:00
parent 902f5a16df
commit 83df4955d4
7 changed files with 61 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
namespace ast {
struct let_stmt : statement {
let_stmt(token::token token);
let_stmt(token::token token, identifier* name, expression* value);
token::token token;
identifier* name;