diff options
| author | gingerBill <bill@gingerbill.org> | 2024-08-24 13:16:55 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-08-24 13:16:55 +0100 |
| commit | b6d9a0c32e64fd4ce4d3350fca9a671d5daac126 (patch) | |
| tree | 14681d04c3fb87a073f3967b54fe00dadc4febe4 /src/parser.hpp | |
| parent | a4cc207022712c238e827bda9e871870970cca25 (diff) | |
Manually implement tail-recursion for `parse_if_stmt`
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index 711e6f060..565a8e621 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -120,8 +120,6 @@ struct AstFile { bool allow_type; bool in_when_statement; - isize recursion_depth_else_if; - isize total_file_decl_count; isize delayed_decl_count; Slice<Ast *> decls; |