From cfc7aa9cf75abd1719a99915ab6543f05a57ec52 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Tue, 23 Aug 2022 11:34:37 -0700 Subject: [PATCH] Forgot to fix the grammar comment --- Ast/src/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ast/src/Parser.cpp b/Ast/src/Parser.cpp index 668c2a5e..cc624c10 100644 --- a/Ast/src/Parser.cpp +++ b/Ast/src/Parser.cpp @@ -2272,7 +2272,7 @@ AstExpr* Parser::parseSimpleExpr() } } -// args ::= `(' [explist] `)' | tableconstructor | String | InterpString +// args ::= `(' [explist] `)' | tableconstructor | String AstExpr* Parser::parseFunctionArgs(AstExpr* func, bool self) { if (lexer.current().type == '(')