diff --git a/cli/errors.rs b/cli/errors.rs index 30cae156a8..2587017bd1 100644 --- a/cli/errors.rs +++ b/cli/errors.rs @@ -11,7 +11,6 @@ use crate::ast::DiagnosticBuffer; use crate::import_map::ImportMapError; -use deno_core::error::get_custom_error_class; use deno_core::error::AnyError; use deno_core::ModuleResolutionError; use rustyline::error::ReadlineError; @@ -171,7 +170,7 @@ fn get_nix_error_class(error: &nix::Error) -> &'static str { } pub(crate) fn get_error_class_name(e: &AnyError) -> &'static str { - get_custom_error_class(e) + deno_core::error::get_custom_error_class(e) .or_else(|| { e.downcast_ref::() .map(get_dlopen_error_class) diff --git a/core/error.rs b/core/error.rs index 198f7baee4..bb23a10d11 100644 --- a/core/error.rs +++ b/core/error.rs @@ -381,7 +381,7 @@ pub(crate) fn attach_handle_to_error( // TODO(piscisaureus): rusty_v8 should implement the Error trait on // values of type v8::Global. -pub struct ErrWithV8Handle { +pub(crate) struct ErrWithV8Handle { err: AnyError, handle: v8::Global, }