-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
enhance(errors): Integrate miette for enhanced diagnostic reporting #10241
Open
GiveMe-A-Name
wants to merge
24
commits into
swc-project:dev
Choose a base branch
from
GiveMe-A-Name:enhance/improve-error-recovery
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+889
−830
Open
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
f014457
enhance(errors): Integrate miette for enhanced diagnostic reporting
GiveMe-A-Name 399ad97
refactor(errors): Simplify error handling and remove unused components
GiveMe-A-Name 16803fb
enhance(errors): Introduce error handling with diagnostic codes
GiveMe-A-Name caa9486
refactor(errors): Simplify error emitters in `swc_error_reporters`
GiveMe-A-Name 873aac7
refactor(errors): Enhance diagnostic handling in `swc_error_reporters`
GiveMe-A-Name afd9cc7
feat(errors): Enhance diagnostic reporting with pretty string output
GiveMe-A-Name 5ef3f4e
docs(errors): Update documentation for `ThreadSafetyDiagnostics`
GiveMe-A-Name d8f35b4
refactor(errors): Simplify diagnostic handling and improve pretty str…
GiveMe-A-Name c962f90
fix: update snapshot and test
GiveMe-A-Name 1af7bb9
fix: update binding code
GiveMe-A-Name fc539a7
refactor(errors): Update `to_pretty_source_code` function signature f…
GiveMe-A-Name b380eef
fix(errors): Improve error message formatting in `ToDiagnostic` imple…
GiveMe-A-Name 658f9f6
fix: add comments for WrapperDiagnostics
GiveMe-A-Name e8e0366
fix: change DiagnosticBuilder reference to mutable in emit function
GiveMe-A-Name 07ce751
chore: add changeset
GiveMe-A-Name e6ac502
refactor(handler): remove commented-out try_with_json_handler function
GiveMe-A-Name 15292bb
feat(errors): add custom ParseSyntaxError type and integrate with err…
GiveMe-A-Name 32da223
refactor(tests): update error test to use arrow function syntax
GiveMe-A-Name 7a61351
fix: update tests snapshot
GiveMe-A-Name 8920cc6
refactor(errors): improve documentation for ParseSyntaxError and upda…
GiveMe-A-Name f3cf3cd
Update crates/swc_common/src/errors/diagnostic.rs
GiveMe-A-Name 5704dbe
refactor(errors): improve documentation for ParseSyntaxError and upda…
GiveMe-A-Name fc37d06
refactor(errors): remove unused dependencies and clean up imports
GiveMe-A-Name 250fcf2
refactor(errors): reorganize imports and enhance diagnostic utilities
GiveMe-A-Name File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
swc_error_reporters: major | ||
swc_common: minor | ||
--- | ||
|
||
enhance(errors_report): integrate miette for enhanced diagnostic reporting |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,5 @@ where | |
} | ||
}, | ||
) | ||
.map_err(|e| e.to_pretty_error()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert this. The
SyntaxError
type includes the textSyntax Error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, i should add
Syntax Error
text in js side@swc/core
package.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be exact, we should throw the JS SyntaxError type instead of adding text
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found it's hard to do it, js side just receive a error from napi. But js doesn't known what kind of error it is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
napi
has an API to throw syntax errors.https://docs.rs/napi/latest/napi/struct.Env.html#method.throw_syntax_error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a idea that we maintain syntax error in
try_with_handler
, we only need find a ways to control print formatting way.For example: continue using
Debug
trait andDisplay
trait to control the print formatting.I found swc using
format!("{}", err)
orformat!("{:?}", err)
to control formatting before this PR.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you mean we should include Syntax Error text from diagnostics from the swc crate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.Stay the same as before. If we need report syntax Error in js not rust, maybe we need have other PR.
And another reason is Syntax Error emit by js side the mainly aim is to resolve the print formatting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SyntaxError should be thrown from Rust code using napi
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, i will update it later