diff options
| author | Baitinq <[email protected]> | 2025-01-23 20:36:16 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-23 20:36:16 +0100 |
| commit | 2c7f904adec45c7677daae4891f67ce01f191eb8 (patch) | |
| tree | 15ba241dcd8b2909dce80049f9f124cb753a9726 /src | |
| parent | Examples: modify example (diff) | |
| download | interpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.tar.gz interpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.tar.bz2 interpreter-2c7f904adec45c7677daae4891f67ce01f191eb8.zip | |
Sync grammar
Diffstat (limited to 'src')
| -rw-r--r-- | src/parser.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.zig b/src/parser.zig index 75abf77..94f5cb7 100644 --- a/src/parser.zig +++ b/src/parser.zig @@ -232,7 +232,7 @@ pub const Parser = struct { } }); } - // Expression ::= EqualityExpression | AdditiveExpression + // Expression ::= EqualityExpression | AdditiveExpression fn parse_expression(self: *Parser) ParserError!*Node { errdefer if (!self.try_context) std.debug.print("Error parsing expression {any}\n", .{self.peek_token()}); |