diff options
author | Moritz Gunz <moritz.gunz@gmail.com> | 2020-08-14 19:39:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 13:39:51 -0400 |
commit | a17ea9150d08312ecd2779324fff09ee7cd99037 (patch) | |
tree | cbf2ee56816840dd23da2094ce038ae6e30bd6b1 | |
parent | fbee85b1ae497202b97f8de0ca48a4ea69751985 (diff) |
Add missing export of HeapLimits (#7047)
Currently this blocks using the ::with_heap_limits constructor of CoreIsolate, because you cannot access the struct.
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index e31cc3222..810025431 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -27,6 +27,7 @@ pub use rusty_v8 as v8; pub use crate::core_isolate::js_check; pub use crate::core_isolate::CoreIsolate; pub use crate::core_isolate::CoreIsolateState; +pub use crate::core_isolate::HeapLimits; pub use crate::core_isolate::Script; pub use crate::core_isolate::Snapshot; pub use crate::core_isolate::StartupData; |