From b3b989ffdca61403cdd7ca94bd9256159864469e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 28 Feb 2019 16:19:04 -0500 Subject: Use deno_core::JSError in deno (#1855) src/js_errors.rs takes care of source maps and color while core/js_errors.rs is just the basic struct. --- core/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/lib.rs') diff --git a/core/lib.rs b/core/lib.rs index d13339ee5..6416704e2 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -7,7 +7,7 @@ mod js_errors; mod libdeno; mod shared; -pub use crate::js_errors::JSError; +pub use crate::js_errors::*; pub use crate::libdeno::deno_buf; pub use crate::shared::*; use futures::Async; -- cgit v1.2.3