diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-07 12:45:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-07 12:45:44 +0100 |
| commit | ad9fd589d4131e847721323a730ba91161f1b95b (patch) | |
| tree | 629af315e9b91c62ff6bdba86e775f0b17fa69ea /core/lib.rs | |
| parent | 8bf383710fc32efdbf2996abf5130bbd9aecacd1 (diff) | |
core: factor out EsIsolate from Isolate (#3613)
Diffstat (limited to 'core/lib.rs')
| -rw-r--r-- | core/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 8379b2b91..91f91a1c9 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -13,6 +13,7 @@ extern crate lazy_static; mod any_error; mod bindings; +mod es_isolate; mod flags; mod isolate; mod js_errors; @@ -26,6 +27,7 @@ mod shared_queue; use rusty_v8 as v8; pub use crate::any_error::*; +pub use crate::es_isolate::*; pub use crate::flags::v8_set_flags; pub use crate::isolate::*; pub use crate::js_errors::*; |
