We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8202bd1 commit 4019273Copy full SHA for 4019273
src/parser.c
@@ -613,7 +613,6 @@ static Stmt* parse_try(Parser* parser) {
613
Token tok = parser->current_token;
614
consume(parser, TOKEN_TRY, "Expected 'TRY'");
615
Stmt* try_block = parse_block(parser);
616
- skip_newlines(parser);
617
consume(parser, TOKEN_CATCH, "Expected 'CATCH' after TRY");
618
char* catch_name = NULL;
619
if (match(parser, TOKEN_LPAREN)) {
0 commit comments