This commit is contained in:
Mid 2025-09-06 14:58:10 +03:00
parent eb5a23761d
commit c2cd319d0c

View File

@ -1072,6 +1072,7 @@ bool parse_stat(Parser *P) {
Scope *new_scope = calloc(1, sizeof(*new_scope));
new_scope->parent = P->scope;
P->scope = new_scope;
expect(P, TOK_DO);
parse_chunk(P);