renamed function->block to function->body

This commit is contained in:
Karma Riuk
2025-07-15 01:13:52 +02:00
parent c6daa5c2af
commit e2dfca2679
4 changed files with 14 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ namespace ast {
function_literal(token::token);
token::token token;
std::vector<identifier*> parameters;
ast::block_stmt* block;
ast::block_stmt* body;
std::string token_literal() const override;
std::string str() const override;