diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-28 16:19:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 16:19:04 -0500 |
commit | b3b989ffdca61403cdd7ca94bd9256159864469e (patch) | |
tree | de53cd24d4ee4726fdd8f66c32ebd6016d3f6ad7 /core/lib.rs | |
parent | b0c7b54f692ecc866d4f70bfa384631523bbf924 (diff) |
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.
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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; |