summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorDarshan Sen <raisinten@gmail.com>2022-09-17 15:25:19 +0530
committerGitHub <noreply@github.com>2022-09-17 11:55:19 +0200
commite7934432ced9674d23d31a4b6973398bd8c8d090 (patch)
treef2f64ecb16b85b6ecf4ee770e64ed5b5221e4eb0 /core/runtime.rs
parent513e934fa719634e1629705303193d846bb7b63c (diff)
chore: upgrade rusty_v8 to v0.50.0 (#15762)
Signed-off-by: Darshan Sen <raisinten@gmail.com> Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'core/runtime.rs')
-rw-r--r--core/runtime.rs2
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);