summaryrefslogtreecommitdiff
path: root/ext/flash/lib.rs
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2023-03-17 03:32:09 +0530
committerGitHub <noreply@github.com>2023-03-16 22:02:09 +0000
commit5a1d3ea6148dc40fad3dad5660118dd1882c97eb (patch)
tree4cdc504a7f02422849a9411b6383349d52015d13 /ext/flash/lib.rs
parent1300d6178e8863a220fa301e9fde8be3580d9b66 (diff)
chore: bump rusty_v8 to 0.65.0 (#18231)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/flash/lib.rs')
-rw-r--r--ext/flash/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/flash/lib.rs b/ext/flash/lib.rs
index 41287d003..77b8b6791 100644
--- a/ext/flash/lib.rs
+++ b/ext/flash/lib.rs
@@ -551,7 +551,7 @@ fn op_flash_make_request<'scope>(
)
.data(v8::External::new(scope, ctx as *mut _).into());
- let func = builder.build_fast(scope, &NextRequestFast, None);
+ let func = builder.build_fast(scope, &NextRequestFast, None, None, None);
let func: v8::Local<v8::Value> = func.get_function(scope).unwrap().into();
let key = v8::String::new(scope, "nextRequest").unwrap();
@@ -574,7 +574,7 @@ fn op_flash_make_request<'scope>(
)
.data(v8::External::new(scope, ctx as *mut _).into());
- let func = builder.build_fast(scope, &GetMethodFast, None);
+ let func = builder.build_fast(scope, &GetMethodFast, None, None, None);
let func: v8::Local<v8::Value> = func.get_function(scope).unwrap().into();
let key = v8::String::new(scope, "getMethod").unwrap();
@@ -612,7 +612,7 @@ fn op_flash_make_request<'scope>(
)
.data(v8::External::new(scope, ctx as *mut _).into());
- let func = builder.build_fast(scope, &RespondFast, None);
+ let func = builder.build_fast(scope, &RespondFast, None, None, None);
let func: v8::Local<v8::Value> = func.get_function(scope).unwrap().into();
let key = v8::String::new(scope, "respond").unwrap();