diff options
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 2c16ddeb8..c88f91d91 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -726,7 +726,7 @@ impl JsRuntime { { let scope = &mut self.handle_scope(); let o = Self::grab_global::<v8::Object>(scope, "Deno.core.ops").unwrap(); - let names = o.get_own_property_names(scope).unwrap(); + let names = o.get_own_property_names(scope, Default::default()).unwrap(); for i in 0..names.length() { let key = names.get_index(scope, i).unwrap(); o.delete(scope, key); |