Skip to content

Commit 95b8ffc

Browse files
committed
feat: Implement the core parser for the ProXPL language, including declarations, statements, and expressions.
1 parent b02ade1 commit 95b8ffc

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/compiler/parser/parser.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,8 +857,7 @@ static Expr *primary(Parser *p) {
857857
return expr;
858858
}
859859

860-
return expr;
861-
}
860+
862861

863862
if (match(p, 1, TOKEN_THIS)) {
864863
return createThisExpr(previous(p).line, 0);

0 commit comments

Comments
 (0)