Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(fe): add new diagnostic E0721 #1212

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/errors/E0721.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# E0721: invalid syntax; missing parentheses around postfix expression

In JavaScript, putting a `.` or a `?.` directly following a postfix increment
or decrement is a syntax error:

```javascript
let x = 3;
console.log(x++.toString()); // Invalid syntax
console.log(x--?.constructor); // Invalid syntax
```

Add parentheses around the postfix expression to resolve this:

```javascript
let x = 3;
console.log((x++).toString());
console.log((x--)?.constructor);
```
4 changes: 4 additions & 0 deletions po/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2429,6 +2429,10 @@ msgstr ""
msgid "function 'let' call may be confused for destructuring; remove parentheses to declare a variable"
msgstr ""

#: src/quick-lint-js/diag/diagnostic-metadata-generated.cpp
msgid "invalid syntax; missing parentheses around '{0}'"
msgstr ""

#: test/test-diagnostic-formatter.cpp
#: test/test-vim-qflist-json-diag-reporter.cpp
msgid "something happened"
Expand Down
14 changes: 14 additions & 0 deletions src/quick-lint-js/diag/diagnostic-metadata-generated.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6975,6 +6975,20 @@ const QLJS_CONSTINIT Diagnostic_Info all_diagnostic_infos[] = {
},
},
},

// Diag_Invalid_Operator_Directly_After_Postfix
{
.code = 721,
.severity = Diagnostic_Severity::error,
.message_formats = {
QLJS_TRANSLATABLE("invalid syntax; missing parentheses around '{0}'"),
},
.message_args = {
{
Diagnostic_Message_Arg_Info(offsetof(Diag_Invalid_Operator_Directly_After_Postfix, postfix_expression), Diagnostic_Arg_Type::source_code_span),
},
},
},
};
}

Expand Down
3 changes: 2 additions & 1 deletion src/quick-lint-js/diag/diagnostic-metadata-generated.h
Original file line number Diff line number Diff line change
Expand Up @@ -476,10 +476,11 @@ namespace quick_lint_js {
QLJS_DIAG_TYPE_NAME(Diag_Unintuitive_Bitshift_Precedence) \
QLJS_DIAG_TYPE_NAME(Diag_TypeScript_Namespace_Alias_Cannot_Use_Import_Type) \
QLJS_DIAG_TYPE_NAME(Diag_Confusing_Let_Call) \
QLJS_DIAG_TYPE_NAME(Diag_Invalid_Operator_Directly_After_Postfix) \
/* END */
// clang-format on

inline constexpr int Diag_Type_Count = 465;
inline constexpr int Diag_Type_Count = 466;

extern const Diagnostic_Info all_diagnostic_infos[Diag_Type_Count];
}
Expand Down
6 changes: 6 additions & 0 deletions src/quick-lint-js/diag/diagnostic-types-2.h
Original file line number Diff line number Diff line change
Expand Up @@ -3628,6 +3628,12 @@ struct Diag_Confusing_Let_Call {
Source_Code_Span let_function_call;
};

struct Diag_Invalid_Operator_Directly_After_Postfix {
[[qljs::diag("E0721", Diagnostic_Severity::error)]] //
[[qljs::message("invalid syntax; missing parentheses around '{0}'",
ARG(postfix_expression))]] //
Source_Code_Span postfix_expression;
};
}
QLJS_WARNING_POP

Expand Down
8 changes: 8 additions & 0 deletions src/quick-lint-js/fe/parse-expression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1898,6 +1898,14 @@ Expression* Parser::parse_expression_remainder(Parse_Visitor_Base& v,
binary_builder.replace_last(
this->make_expression<Expression::RW_Unary_Suffix>(
binary_builder.last_expression(), operator_span));
Token_Type next_type = this->peek().type;
if (next_type == Token_Type::dot ||
next_type == Token_Type::question_dot) {
this->diag_reporter_->report(
Diag_Invalid_Operator_Directly_After_Postfix{
.postfix_expression =
binary_builder.last_expression()->span()});
}
}
goto next;

Expand Down
4 changes: 3 additions & 1 deletion src/quick-lint-js/i18n/translation-table-generated.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ const Translation_Table translation_data = {
{47, 43, 47, 54, 35, 38}, //
{31, 39, 32, 33, 28, 27}, //
{34, 15, 43, 40, 37, 33}, //
{39, 51, 50, 40, 38, 39}, //
{0, 0, 0, 0, 0, 39}, //
{39, 51, 50, 40, 38, 49}, //
{57, 72, 67, 55, 0, 41}, //
{0, 0, 0, 58, 0, 50}, //
{0, 0, 0, 22, 0, 19}, //
Expand Down Expand Up @@ -2240,6 +2241,7 @@ const Translation_Table translation_data = {
u8"invalid function parameter\0"
u8"invalid hex escape sequence: {0}\0"
u8"invalid lone literal in object literal\0"
u8"invalid syntax; missing parentheses around '{0}'\0"
u8"keywords cannot contain escape sequences\0"
u8"label named 'await' not allowed in async function\0"
u8"labelled statement\0"
Expand Down
5 changes: 3 additions & 2 deletions src/quick-lint-js/i18n/translation-table-generated.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ namespace quick_lint_js {
using namespace std::literals::string_view_literals;

constexpr std::uint32_t translation_table_locale_count = 5;
constexpr std::uint16_t translation_table_mapping_table_size = 609;
constexpr std::size_t translation_table_string_table_size = 82687;
constexpr std::uint16_t translation_table_mapping_table_size = 610;
constexpr std::size_t translation_table_string_table_size = 82736;
constexpr std::size_t translation_table_locale_table_size = 35;

QLJS_CONSTEVAL std::uint16_t translation_table_const_look_up(
Expand Down Expand Up @@ -380,6 +380,7 @@ QLJS_CONSTEVAL std::uint16_t translation_table_const_look_up(
"invalid function parameter"sv,
"invalid hex escape sequence: {0}"sv,
"invalid lone literal in object literal"sv,
"invalid syntax; missing parentheses around '{0}'"sv,
"keywords cannot contain escape sequences"sv,
"label named 'await' not allowed in async function"sv,
"labelled statement"sv,
Expand Down
13 changes: 12 additions & 1 deletion src/quick-lint-js/i18n/translation-table-test-generated.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct Translated_String {
};

// clang-format off
inline const Translated_String test_translation_table[608] = {
inline const Translated_String test_translation_table[609] = {
{
"\"global-groups\" entries must be strings"_translatable,
u8"\"global-groups\" entries must be strings",
Expand Down Expand Up @@ -3922,6 +3922,17 @@ inline const Translated_String test_translation_table[608] = {
u8"ogiltigt l\u00e5neuttryck i objektliteral",
},
},
{
"invalid syntax; missing parentheses around '{0}'"_translatable,
u8"invalid syntax; missing parentheses around '{0}'",
{
u8"invalid syntax; missing parentheses around '{0}'",
u8"invalid syntax; missing parentheses around '{0}'",
u8"invalid syntax; missing parentheses around '{0}'",
u8"invalid syntax; missing parentheses around '{0}'",
u8"invalid syntax; missing parentheses around '{0}'",
},
},
{
"keywords cannot contain escape sequences"_translatable,
u8"keywords cannot contain escape sequences",
Expand Down
15 changes: 15 additions & 0 deletions test/test-parse-warning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,21 @@ TEST_F(Test_Parse_Warning, warn_on_confusing_let_use) {
test_parse_and_visit_statement(u8"let.prop({x} = y);"_sv, no_diags);
test_parse_and_visit_statement(u8"let (x = y);"_sv, no_diags);
}

TEST_F(Test_Parse_Warning, invalid_operator_directly_after_postfix) {
test_parse_and_visit_expression(
u8"x++.toString()"_sv, //
u8"^^^ Diag_Invalid_Operator_Directly_After_Postfix"_diag);
test_parse_and_visit_expression(u8"(x++).toString()"_sv, no_diags);
test_parse_and_visit_expression(
u8"x++.constructor"_sv, //
u8"^^^ Diag_Invalid_Operator_Directly_After_Postfix"_diag);
test_parse_and_visit_expression(u8"(x++).constructor"_sv, no_diags);
test_parse_and_visit_expression(
u8"x--?.constructor"_sv, //
u8"^^^ Diag_Invalid_Operator_Directly_After_Postfix"_diag);
test_parse_and_visit_expression(u8"(x--)?.constructor"_sv, no_diags);
}
}
}

Expand Down
Loading