summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2021-03-10 15:16:43 -0500
committerGitHub <noreply@github.com>2021-03-10 15:16:43 -0500
commit2f9d7c02dc87cfc57a6d37dc27bb0680b9ac7128 (patch)
tree243fea304edd8eadaa04e64347efa89c0cf74a79 /core/runtime.rs
parent3ab48864fe4f1122d766aceefd4882c4cc526451 (diff)
upgrade: rusty_v8 0.21.0 (#9725)
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 109732f0a..f6d0ab5a6 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -683,7 +683,7 @@ impl JsRuntime {
let source_str = v8::String::new(scope, source).unwrap();
let origin = bindings::module_origin(scope, name_str);
- let source = v8::script_compiler::Source::new(source_str, &origin);
+ let source = v8::script_compiler::Source::new(source_str, Some(&origin));
let tc_scope = &mut v8::TryCatch::new(scope);