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

enhance(errors): Integrate miette for enhanced diagnostic reporting #10241

Open
wants to merge 24 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
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 Mar 21, 2025
399ad97
refactor(errors): Simplify error handling and remove unused components
GiveMe-A-Name Mar 24, 2025
16803fb
enhance(errors): Introduce error handling with diagnostic codes
GiveMe-A-Name Mar 24, 2025
caa9486
refactor(errors): Simplify error emitters in `swc_error_reporters`
GiveMe-A-Name Mar 24, 2025
873aac7
refactor(errors): Enhance diagnostic handling in `swc_error_reporters`
GiveMe-A-Name Mar 26, 2025
afd9cc7
feat(errors): Enhance diagnostic reporting with pretty string output
GiveMe-A-Name Mar 26, 2025
5ef3f4e
docs(errors): Update documentation for `ThreadSafetyDiagnostics`
GiveMe-A-Name Mar 26, 2025
d8f35b4
refactor(errors): Simplify diagnostic handling and improve pretty str…
GiveMe-A-Name Mar 26, 2025
c962f90
fix: update snapshot and test
GiveMe-A-Name Mar 28, 2025
1af7bb9
fix: update binding code
GiveMe-A-Name Mar 28, 2025
fc539a7
refactor(errors): Update `to_pretty_source_code` function signature f…
GiveMe-A-Name Mar 28, 2025
b380eef
fix(errors): Improve error message formatting in `ToDiagnostic` imple…
GiveMe-A-Name Mar 28, 2025
658f9f6
fix: add comments for WrapperDiagnostics
GiveMe-A-Name Mar 28, 2025
e8e0366
fix: change DiagnosticBuilder reference to mutable in emit function
GiveMe-A-Name Mar 31, 2025
07ce751
chore: add changeset
GiveMe-A-Name Mar 31, 2025
e6ac502
refactor(handler): remove commented-out try_with_json_handler function
GiveMe-A-Name Apr 1, 2025
15292bb
feat(errors): add custom ParseSyntaxError type and integrate with err…
GiveMe-A-Name Apr 1, 2025
32da223
refactor(tests): update error test to use arrow function syntax
GiveMe-A-Name Apr 1, 2025
7a61351
fix: update tests snapshot
GiveMe-A-Name Apr 1, 2025
8920cc6
refactor(errors): improve documentation for ParseSyntaxError and upda…
GiveMe-A-Name Apr 2, 2025
f3cf3cd
Update crates/swc_common/src/errors/diagnostic.rs
GiveMe-A-Name Apr 2, 2025
5704dbe
refactor(errors): improve documentation for ParseSyntaxError and upda…
GiveMe-A-Name Apr 2, 2025
fc37d06
refactor(errors): remove unused dependencies and clean up imports
GiveMe-A-Name Apr 2, 2025
250fcf2
refactor(errors): reorganize imports and enhance diagnostic utilities
GiveMe-A-Name Apr 2, 2025
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
6 changes: 6 additions & 0 deletions .changeset/sweet-days-notice.md
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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 26 additions & 24 deletions bindings/binding_core_node/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,32 +67,34 @@ pub fn try_with<F, Ret>(
where
F: FnOnce(&Handler) -> Result<Ret, Error>,
{
GLOBALS.set(&Default::default(), || {
try_with_handler(
cm,
swc_core::base::HandlerOpts {
skip_filename,
..Default::default()
},
|handler| {
//
let result = catch_unwind(AssertUnwindSafe(|| op(handler)));
GLOBALS
.set(&Default::default(), || {
try_with_handler(
cm,
swc_core::base::HandlerOpts {
skip_filename,
..Default::default()
},
|handler| {
//
let result = catch_unwind(AssertUnwindSafe(|| op(handler)));

let p = match result {
Ok(v) => return v,
Err(v) => v,
};
let p = match result {
Ok(v) => return v,
Err(v) => v,
};

if let Some(s) = p.downcast_ref::<String>() {
Err(anyhow!("failed to handle: {}", s))
} else if let Some(s) = p.downcast_ref::<&str>() {
Err(anyhow!("failed to handle: {}", s))
} else {
Err(anyhow!("failed to handle with unknown panic message"))
}
},
)
})
if let Some(s) = p.downcast_ref::<String>() {
Err(anyhow!("failed to handle: {}", s))
} else if let Some(s) = p.downcast_ref::<&str>() {
Err(anyhow!("failed to handle: {}", s))
} else {
Err(anyhow!("failed to handle with unknown panic message"))
}
},
)
})
.map_err(|e| e.to_pretty_error())
}

// This was originally under swc_nodejs_common, but this is not a public
Expand Down
5 changes: 1 addition & 4 deletions bindings/binding_core_wasm/__tests__/error.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
const swc = require("../pkg");

it("properly reports error", function () {
expect(() => {
swc.transformSync("Foo {}", {});
}).toThrow("Syntax Error");
it("properly reports error", () => {
Copy link
Member

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 text Syntax Error

Copy link
Contributor Author

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.

Copy link
Member

@kdy1 kdy1 Apr 2, 2025

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

Copy link
Contributor Author

@GiveMe-A-Name GiveMe-A-Name Apr 2, 2025

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.

Copy link
Member

Choose a reason for hiding this comment

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

Copy link
Contributor Author

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 and Display trait to control the print formatting.
I found swc using format!("{}", err) or format!("{:?}", err) to control formatting before this PR.

Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Member

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

Copy link
Contributor Author

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


expect(() => {
swc.transformSync("Foo {}", {});
Expand Down
1 change: 1 addition & 0 deletions bindings/binding_html_node/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ where
}
},
)
.map_err(|e| e.to_pretty_error())
}
50 changes: 26 additions & 24 deletions bindings/binding_minifier_node/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,32 +60,34 @@ pub fn try_with<F, Ret>(cm: Lrc<SourceMap>, skip_filename: bool, op: F) -> Resul
where
F: FnOnce(&Handler) -> Result<Ret, Error>,
{
GLOBALS.set(&Default::default(), || {
try_with_handler(
cm,
HandlerOpts {
skip_filename,
..Default::default()
},
|handler| {
//
let result = catch_unwind(AssertUnwindSafe(|| op(handler)));
GLOBALS
.set(&Default::default(), || {
try_with_handler(
cm,
HandlerOpts {
skip_filename,
..Default::default()
},
|handler| {
//
let result = catch_unwind(AssertUnwindSafe(|| op(handler)));

let p = match result {
Ok(v) => return v,
Err(v) => v,
};
let p = match result {
Ok(v) => return v,
Err(v) => v,
};

if let Some(s) = p.downcast_ref::<String>() {
Err(anyhow!("failed to handle: {}", s))
} else if let Some(s) = p.downcast_ref::<&str>() {
Err(anyhow!("failed to handle: {}", s))
} else {
Err(anyhow!("failed to handle with unknown panic message"))
}
},
)
})
if let Some(s) = p.downcast_ref::<String>() {
Err(anyhow!("failed to handle: {}", s))
} else if let Some(s) = p.downcast_ref::<&str>() {
Err(anyhow!("failed to handle: {}", s))
} else {
Err(anyhow!("failed to handle with unknown panic message"))
}
},
)
})
.map_err(|e| e.to_pretty_error())
}

// This was originally under swc_nodejs_common, but this is not a public
Expand Down
13 changes: 4 additions & 9 deletions bindings/binding_typescript_wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use swc_common::{
sync::Lrc,
SourceMap, Span, GLOBALS,
};
use swc_error_reporters::{to_miette_source_code, to_miette_span, PrettyEmitterConfig};
use swc_error_reporters::{convert_span, to_pretty_source_code};
use swc_fast_ts_strip::{Options, TransformOutput};
use wasm_bindgen::prelude::*;
use wasm_bindgen_futures::{future_to_promise, js_sys::Promise};
Expand Down Expand Up @@ -122,20 +122,15 @@ where
}

impl Emitter for JsonErrorWriter {
fn emit(&mut self, db: &DiagnosticBuilder) {
fn emit(&mut self, db: &mut DiagnosticBuilder) {
let d = &**db;

let snippet = d.span.primary_span().and_then(|span| {
let mut snippet = String::new();
match self.reporter.render_report(
&mut snippet,
&Snippet {
source_code: &to_miette_source_code(
&self.cm,
&PrettyEmitterConfig {
skip_filename: true,
},
),
source_code: &to_pretty_source_code(&self.cm, true),
span,
},
) {
Expand Down Expand Up @@ -246,7 +241,7 @@ impl miette::Diagnostic for Snippet<'_> {
fn labels(&self) -> Option<Box<dyn Iterator<Item = miette::LabeledSpan> + '_>> {
Some(Box::new(once(LabeledSpan::new_with_span(
None,
to_miette_span(self.span),
convert_span(self.span),
))))
}
}
Expand Down
8 changes: 5 additions & 3 deletions crates/binding_macros/src/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@ pub fn try_with_handler_globals<F, Ret>(
where
F: FnOnce(&Handler) -> Result<Ret, Error>,
{
GLOBALS.set(&Default::default(), || {
swc::try_with_handler(cm, config, op)
})
GLOBALS
.set(&Default::default(), || {
swc::try_with_handler(cm, config, op)
})
.map_err(|e| e.to_pretty_error())
}

/// Get global sourcemap
Expand Down
10 changes: 6 additions & 4 deletions crates/dbg-swc/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{env, path::PathBuf, str::FromStr, sync::Arc};

use anyhow::{bail, Result};
use anyhow::{bail, Error, Result};
use clap::{StructOpt, Subcommand};
use es::EsCommand;
use swc_common::{
Expand Down Expand Up @@ -51,7 +51,7 @@ fn init() -> Result<()> {
Ok(())
}

fn main() -> Result<()> {
fn main() -> Result<(), Error> {
init()?;

let cm = Arc::new(SourceMap::default());
Expand Down Expand Up @@ -104,7 +104,8 @@ fn main() -> Result<()> {
})
})
},
);
)
.map_err(|e| e.to_pretty_error());
}

let args = AppArgs::parse();
Expand All @@ -118,9 +119,10 @@ fn main() -> Result<()> {
|handler| {
GLOBALS.set(&Globals::default(), || {
HANDLER.set(handler, || match args.cmd {
Cmd::Es(cmd) => cmd.run(cm),
Cmd::Es(cmd) => cmd.run(cm.clone()),
})
})
},
)
.map_err(|e| e.to_pretty_error())
}
6 changes: 3 additions & 3 deletions crates/swc/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)]

use serde::{Deserialize, Serialize};
use swc_common::errors::HANDLER;
use swc_common::errors::{DiagnosticId, HANDLER};
use swc_ecma_ast::Pass;
#[cfg(feature = "plugin")]
use swc_ecma_ast::*;
Expand Down Expand Up @@ -170,7 +170,7 @@ impl Fold for RustPlugins {
Ok(program) => program.expect_module(),
Err(err) => {
HANDLER.with(|handler| {
handler.err(&err.to_string());
handler.err_with_code(&err.to_string(), DiagnosticId::Error("plugin".into()));
});
Module::default()
}
Expand All @@ -183,7 +183,7 @@ impl Fold for RustPlugins {
Ok(program) => program.expect_script(),
Err(err) => {
HANDLER.with(|handler| {
handler.err(&err.to_string());
handler.err_with_code(&err.to_string(), DiagnosticId::Error("plugin".into()));
});
Script::default()
}
Expand Down
1 change: 1 addition & 0 deletions crates/swc/tests/error_msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ fn fixture(input: PathBuf) {
Ok(())
},
)
.map_err(|e| e.to_pretty_error())
.expect_err("should fail")
});

Expand Down
Loading
Loading