diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2021-09-07 10:39:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-07 10:39:32 -0400 |
| commit | 2c2e3ec1ca47803f791ea72ea6247d8eedf87ec8 (patch) | |
| tree | 9ba3ddfde58f4a4feaf98fc230ec18861891c9be /cli/errors.rs | |
| parent | a5bcf7033e66a828dc88a313f4cca11f116c3f83 (diff) | |
refactor(lsp): use deno_ast and cache swc ASTs (#11780)
Diffstat (limited to 'cli/errors.rs')
| -rw-r--r-- | cli/errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/errors.rs b/cli/errors.rs index 0b2644b57..7be406fe7 100644 --- a/cli/errors.rs +++ b/cli/errors.rs @@ -9,8 +9,8 @@ //! Diagnostics are compile-time type errors, whereas JsErrors are runtime //! exceptions. -use crate::ast::Diagnostic; use crate::import_map::ImportMapError; +use deno_ast::Diagnostic; use deno_core::error::AnyError; fn get_import_map_error_class(_: &ImportMapError) -> &'static str { |
