Skip to content

Commit a4ce1c3

Browse files
committed
Warn for unexpected semicolon between else and opening brace.
1 parent 384c318 commit a4ce1c3

File tree

4 files changed

+39
-20
lines changed

4 files changed

+39
-20
lines changed

docs/errors/E220.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# E220: Semicolon after else may cause unexpected execution of its body.
2+
3+
A semicolon next to the `else` keyword can cause its body to be executed even when previous `if` statement condition is true.
4+
5+
if (true) {
6+
console.log("true");
7+
} else; {
8+
console.log("& false");
9+
}
10+
> true
11+
> & false
12+
13+
To avoid this behavior, remove the semicolon between the else keyword and the opening brace of the else block.

src/quick-lint-js/error.h

+7-6
Original file line numberDiff line numberDiff line change
@@ -1090,6 +1090,13 @@
10901090
"expected variable name"), \
10911091
unexpected_token)) \
10921092
\
1093+
QLJS_ERROR_TYPE( \
1094+
error_unexpected_semicolon_after_else, "E202", \
1095+
{ source_code_span semicolon; }, \
1096+
.warning(QLJS_TRANSLATABLE("semicolon after else may be causing " \
1097+
"unexpected behavior"), \
1098+
semicolon)) \
1099+
\
10931100
QLJS_ERROR_TYPE( \
10941101
error_unmatched_indexing_bracket, "E055", \
10951102
{ source_code_span left_square; }, \
@@ -1139,12 +1146,6 @@
11391146
{ source_code_span continue_statement; }, \
11401147
.error(QLJS_TRANSLATABLE("continue can only be used inside of a loop"), \
11411148
continue_statement)) \
1142-
\
1143-
QLJS_ERROR_TYPE( \
1144-
error_redundant_semicolon_after_else, "E202", \
1145-
{ source_code_span semicolon; }, \
1146-
.warning(QLJS_TRANSLATABLE("redundant semicolon after else"), \
1147-
semicolon)) \
11481149
/* END */
11491150

11501151
namespace quick_lint_js {

src/quick-lint-js/parse.h

+10-6
Original file line numberDiff line numberDiff line change
@@ -2515,14 +2515,18 @@ class parser {
25152515

25162516
if (this->peek().type == token_type::kw_else) {
25172517
this->skip();
2518-
if (this->peek().type == token_type::semicolon) {
2519-
source_code_span semicolon = this->peek().span();
2520-
this->error_reporter_->report(error_redundant_semicolon_after_else{
2521-
.semicolon = source_code_span(
2522-
semicolon.begin(), semicolon.end()),
2518+
2519+
bool semicolon_after_else = this->peek().type == token_type::semicolon;
2520+
const char8 *token_after_else_begin = this->peek().begin;
2521+
2522+
parse_and_visit_body();
2523+
if (semicolon_after_else &&
2524+
this->peek().type == token_type::left_curly &&
2525+
!this->peek().has_leading_newline) {
2526+
this->error_reporter_->report(error_unexpected_semicolon_after_else{
2527+
.semicolon = source_code_span(token_after_else_begin, token_after_else_begin+1)
25232528
});
25242529
}
2525-
parse_and_visit_body();
25262530
}
25272531
}
25282532

test/test-parse-statement.cpp

+9-8
Original file line numberDiff line numberDiff line change
@@ -578,19 +578,20 @@ TEST(test_parse, else_without_if) {
578578
}
579579
}
580580

581-
TEST(test_parse, else_redundant_semicolon) {
581+
TEST(test_parse, else_unexpected_semicolon) {
582582
{
583583
spy_visitor v;
584584
padded_string code(u8"if (cond) { body; } else; { body; }"_sv);
585585
parser p(&code, &v);
586586
EXPECT_TRUE(p.parse_and_visit_statement(v));
587-
EXPECT_THAT(v.visits, ElementsAre("visit_variable_use", // cond
588-
"visit_enter_block_scope", // (if)
589-
"visit_variable_use", // body
590-
"visit_exit_block_scope")); // (else)
591-
EXPECT_THAT(v.errors, ElementsAre(ERROR_TYPE_FIELD(
592-
error_redundant_semicolon_after_else, semicolon,
593-
offsets_matcher(&code, strlen(u8"if (cond) { body; } else"), u8";"))));
587+
EXPECT_THAT(v.visits, ElementsAre("visit_variable_use", // cond
588+
"visit_enter_block_scope", // (if)
589+
"visit_variable_use", // body
590+
"visit_exit_block_scope")); // (if)
591+
EXPECT_THAT(v.errors,
592+
ElementsAre(ERROR_TYPE_FIELD(
593+
error_unexpected_semicolon_after_else, semicolon,
594+
offsets_matcher(&code, strlen(u8"if (cond) { body; } else"), u8";"))));
594595
}
595596
}
596597

0 commit comments

Comments
 (0)