Skip to content

feat(parser): add TS1054 code to diagnostic#18541

Merged
graphite-app[bot] merged 1 commit intomainfrom
c/01-25-feat_semantic_add_ts1054_code_to_diagnostic
Jan 25, 2026
Merged

feat(parser): add TS1054 code to diagnostic#18541
graphite-app[bot] merged 1 commit intomainfrom
c/01-25-feat_semantic_add_ts1054_code_to_diagnostic

Conversation

@camc314
Copy link
Contributor

@camc314 camc314 commented Jan 25, 2026

Copy link
Contributor Author

camc314 commented Jan 25, 2026


How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • 0-merge - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This stack of pull requests is managed by Graphite. Learn more about stacking.

@github-actions github-actions bot added A-parser Area - Parser C-enhancement Category - New feature or request labels Jan 25, 2026
@camc314 camc314 marked this pull request as ready for review January 25, 2026 18:32
Copilot AI review requested due to automatic review settings January 25, 2026 18:32
@camc314 camc314 changed the title feat(semantic): add TS1054 code to diagnostic feat(parser): add TS1054 code to diagnostic Jan 25, 2026
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR adds the TypeScript error code 1054 to the diagnostic message for getters with formal parameters, aligning it with TypeScript's official error codes and making it consistent with other accessor-related diagnostics in the codebase.

Changes:

  • Updated getter_parameters diagnostic to use ts_error function with code "1054" instead of plain OxcDiagnostic::error
  • Updated snapshot tests to reflect the new error message format with the TS(1054) prefix

Reviewed changes

Copilot reviewed 1 out of 4 changed files in this pull request and generated no comments.

File Description
crates/oxc_parser/src/diagnostics.rs Changed getter_parameters function to use ts_error("1054", ...) instead of OxcDiagnostic::error(...), making it consistent with other accessor diagnostics
tasks/coverage/snapshots/parser_typescript.snap Updated 4 snapshot entries to include "TS(1054):" prefix in the error message
tasks/coverage/snapshots/parser_test262.snap Updated 3 snapshot entries to include "TS(1054):" prefix in the error message
tasks/coverage/snapshots/parser_babel.snap Updated 5 snapshot entries to include "TS(1054):" prefix in the error message

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@graphite-app graphite-app bot force-pushed the c/01-25-style_semantic_reorder_diagnostic_functions branch from b5c5981 to 232c7f8 Compare January 25, 2026 18:39
@graphite-app graphite-app bot force-pushed the c/01-25-feat_semantic_add_ts1054_code_to_diagnostic branch from 92cd536 to 850d389 Compare January 25, 2026 18:40
@graphite-app graphite-app bot force-pushed the c/01-25-style_semantic_reorder_diagnostic_functions branch from 232c7f8 to d7f0091 Compare January 25, 2026 18:45
@graphite-app graphite-app bot force-pushed the c/01-25-feat_semantic_add_ts1054_code_to_diagnostic branch from 850d389 to 0b31fea Compare January 25, 2026 18:45
@camc314 camc314 force-pushed the c/01-25-feat_semantic_add_ts1054_code_to_diagnostic branch from 0b31fea to ad9924c Compare January 25, 2026 19:32
@camc314 camc314 force-pushed the c/01-25-style_semantic_reorder_diagnostic_functions branch from d7f0091 to e1ac5cc Compare January 25, 2026 19:32
@graphite-app
Copy link
Contributor

graphite-app bot commented Jan 25, 2026

Merge activity

@graphite-app graphite-app bot force-pushed the c/01-25-style_semantic_reorder_diagnostic_functions branch from e1ac5cc to 823a73c Compare January 25, 2026 19:42
@graphite-app graphite-app bot force-pushed the c/01-25-feat_semantic_add_ts1054_code_to_diagnostic branch from ad9924c to 1117c44 Compare January 25, 2026 19:43
Base automatically changed from c/01-25-style_semantic_reorder_diagnostic_functions to main January 25, 2026 19:49
@graphite-app graphite-app bot merged commit 1117c44 into main Jan 25, 2026
23 checks passed
@graphite-app graphite-app bot deleted the c/01-25-feat_semantic_add_ts1054_code_to_diagnostic branch January 25, 2026 19:53
camc314 added a commit that referenced this pull request Jan 26, 2026
overlookmotel pushed a commit that referenced this pull request Jan 26, 2026
### 💥 BREAKING CHANGES

- 22dec6a semantic: [**BREAKING**] Remove
`Scoping::scope_build_child_ids` and all related APIs (#18362) (Dunqing)
- 30a4899 oxc: [**BREAKING**] Remove
`CompilerInterface::semantic_child_scope_ids` (#18361) (Dunqing)
- 777fc40 ast: [**BREAKING**] Add `Ident` type (#18354) (Boshen)
- af0ca46 span: [**BREAKING**] Use `ModuleKind::CommonJS` for
`SourceType::cjs()` (#18276) (sapphi-red)

### 🚀 Features

- 0a02026 semantic: Add TS1499 code to diagnostic (#18557) (camc314)
- 8b4618f parser: Add TS1500 code to diagnostic (#18547) (camc314)
- 866b6b3 parser: Add TS1048 code to diagnostic (#18546) (camc314)
- 1117c44 parser: Add TS1054 code to diagnostic (#18541) (camc314)
- e4fcdde semantic: Add TS1053 code to diagnostic (#18539) (camc314)
- bcbf396 semantic: Add TS1052 code to diagnostic (#18538) (camc314)
- 8155edf semantic: Add TS1049 code to diagnostic (#18535) (camc314)
- 51d3b3f parser: Add TS1502 code to diagnostic (#18534) (camc314)
- 00854e8 semantic: Add TS2337 error code to super call diagnostic
(#18531) (camc314)
- 993fd2b parser: Parse unambiguous await with better error messages
(#18480) (Boshen)
- 8db0e78 linter/plugins: Handle BOMs (#18376) (overlookmotel)
- 6ac09e2 linter/plugins: Support source text not being at start of
buffer (#18375) (overlookmotel)
- 2ef5647 ast: Add escape_raw parameter to template_element builders
(#18121) (Boshen)

### 🐛 Bug Fixes

- 74d0998 semantic: Update error msg for multiple `default` cases in
switch stmt (#18526) (camc314)
- c205b0d ast: Remove `ThisExpression` from `TSModuleReference` (#18489)
(Boshen)
- aed3669 parser: Parse HTML-like comments in unambiguous mode (#18442)
(Boshen)
- c4132fb parser: Validate accessor parameters in interface method
signatures (#18391) (Boshen)
- b0cd74d semantic: Allow `var` and `function` with same name in static
blocks (#18358) (Boshen)
- 6037995 semantic: Allow `new.target` in class field initializers
(#18349) (Boshen)
- 9a15c6a semantic: Do not rely on spans for node comparison in
`Function::bind` (#18296) (overlookmotel)

### ⚡ Performance

- 6b600c4 semantic: Skip parent lookup for function declarations in
`Function::bind` (#18293) (overlookmotel)
- c27ad2d semantic: Move check for function declaration out of
`is_function_part_of_if_statement` (#18292) (overlookmotel)
- 63eb89e semantic: Skip checking redeclarations for function
expressions (#18291) (overlookmotel)
- 7c12743 semantic: Skip checking unresolved exports in CommonJS files
(#18250) (overlookmotel)
- 2349031 allocator: Increase initial chunk size from 512B to 16KB
(#18234) (Boshen)

### 📚 Documentation

- 8ccd853 npm: Update package homepage URLs and add keywords (#18509)
(Boshen)
- 9b3165f napi/parser: Clarify when to use `parseAsync` vs `parseSync`
(#18486) (Boshen)
- 1b59f63 napi/parser: Correct typo in README (#18251) (overlookmotel)
- 00ff75f mangler: Fix `top_level` option in example (#18233)
(overlookmotel)
- 2ddc073 semantic: Fix typo in comment (#18238) (overlookmotel)

Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-parser Area - Parser C-enhancement Category - New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants