summaryrefslogtreecommitdiff
path: root/core/error.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-09-15 10:24:13 -0400
committerRyan Dahl <ry@tinyclouds.org>2020-09-15 11:55:51 -0400
commit68099acbc6d816170ac60d33e4cd730d88dad5de (patch)
treec0f2eaa89d33f327e9d594d578426d2886a722bb /core/error.rs
parent28c9d90b4bbd8af50092cbf1c12a3e818e117fb0 (diff)
Don't expose ErrWithV8Handle from deno_core
Diffstat (limited to 'core/error.rs')
-rw-r--r--core/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/error.rs b/core/error.rs
index 198f7baee..bb23a10d1 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<T>.
-pub struct ErrWithV8Handle {
+pub(crate) struct ErrWithV8Handle {
err: AnyError,
handle: v8::Global<v8::Value>,
}