diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-09-22 18:01:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 19:01:30 +0200 |
commit | a43984c9cfcea852ca18e1c575f9acdb8f023a5a (patch) | |
tree | 1d28894341a411583bb8e74becca81382ecd754b /cli/source_maps.rs | |
parent | a33315aaa70884c10968669c31adf3c6bb142e72 (diff) |
refactor(cli/fmt_errors): Color stack traces in Rust (#7628)
Diffstat (limited to 'cli/source_maps.rs')
-rw-r--r-- | cli/source_maps.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/source_maps.rs b/cli/source_maps.rs index 70b9faac6..1e7a14a0e 100644 --- a/cli/source_maps.rs +++ b/cli/source_maps.rs @@ -78,7 +78,6 @@ pub fn apply_source_map<G: SourceMapGetter>( start_column, end_column, frames: js_error.frames.clone(), - formatted_frames: js_error.formatted_frames.clone(), } } @@ -205,7 +204,6 @@ mod tests { start_column: Some(16), end_column: None, frames: vec![], - formatted_frames: vec![], }; let getter = MockSourceMapGetter {}; let actual = apply_source_map(&e, &getter); |