diff --git a/src/parser.c b/src/parser.c index 95e4aef..6290b6e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -348,10 +348,7 @@ noomP_Node* noomP_parseRawStatement(noomP_Parser* parser) { noomP_peek(parser, &token); if (token.type == NOOML_TOKEN_SYMBOL) { - if (noom_streql(parser->code + token.offset, token.length, "=", 1)) { - // noomP_skip(parser, &token); - break; - } else if (noom_streql(parser->code + token.offset, token.length, ",", 1)) { + if (noom_streql(parser->code + token.offset, token.length, ",", 1)) { noomP_skip(parser, &token); } else { break;