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

@@ -282,7 +282,7 @@ namespace parser {
delete ret;
return nullptr;
}
ret->block = parse_block();
ret->body = parse_block();
return ret;
};