1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00

Add missing export of HeapLimits (#7047)

Currently this blocks using the ::with_heap_limits constructor of CoreIsolate, because you cannot access the struct.
This commit is contained in:
Moritz Gunz 2020-08-14 19:39:51 +02:00 committed by GitHub
parent fbee85b1ae
commit a17ea9150d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;