diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2020-10-17 11:56:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-17 11:56:15 +0200 |
commit | 46b892ad37df9ba9bed77fb923a1cfe284b208dc (patch) | |
tree | 4cb3961e9fca85365112bae038e20df3f2c7340b /core/lib.rs | |
parent | 943b0980c7ff97cb6096291efa5e3d5dbfe10805 (diff) |
refactor(core): more control over isolate creation (#8000)
Make JSRuntime::new() accept a custom v8::CreateParams object to tune
the v8::Isolate it creates.
Subsumes the functionality of HeapLimits, which I therefore removed.
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/lib.rs b/core/lib.rs index e03ce2a7d..48968fa97 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -48,7 +48,6 @@ pub use crate::ops::OpState; pub use crate::ops::OpTable; pub use crate::resources::ResourceTable; pub use crate::runtime::GetErrorClassFn; -pub use crate::runtime::HeapLimits; pub use crate::runtime::JsRuntime; pub use crate::runtime::RuntimeOptions; pub use crate::runtime::Snapshot; |