mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 15:04:33 -05:00
Rolling to V8 10.4.132.16 (#1012)
This commit is contained in:
parent
53299dceb4
commit
d2db387448
3 changed files with 6 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
|||
# Rusty V8 Binding
|
||||
|
||||
V8 Version: 10.4.132.8
|
||||
V8 Version: 10.4.132.19
|
||||
|
||||
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=main)](https://github.com/denoland/rusty_v8/actions)
|
||||
[![crates](https://img.shields.io/crates/v/v8.svg)](https://crates.io/crates/v8)
|
||||
|
|
|
@ -5699,10 +5699,9 @@ fn wasm_streaming_callback() {
|
|||
|
||||
ws.finish();
|
||||
assert!(!scope.has_pending_background_tasks());
|
||||
assert!(global.get(scope, name).unwrap().is_null());
|
||||
|
||||
scope.perform_microtask_checkpoint();
|
||||
|
||||
// We did not set wasm resolve callback so V8 uses the default one that
|
||||
// runs microtasks automatically.
|
||||
let result = global.get(scope, name).unwrap();
|
||||
assert!(result.is_wasm_module_object());
|
||||
|
||||
|
@ -5724,9 +5723,8 @@ fn wasm_streaming_callback() {
|
|||
|
||||
let exception = v8::Object::new(scope).into(); // Can be anything.
|
||||
ws.abort(Some(exception));
|
||||
assert!(global.get(scope, name).unwrap().is_null());
|
||||
|
||||
scope.perform_microtask_checkpoint();
|
||||
// We did not set wasm resolve callback so V8 uses the default one that
|
||||
// runs microtasks automatically.
|
||||
assert!(global.get(scope, name).unwrap().strict_equals(exception));
|
||||
}
|
||||
|
||||
|
|
2
v8
2
v8
|
@ -1 +1 @@
|
|||
Subproject commit 2b15c6e79897bc48e608284424385dfad0c0199d
|
||||
Subproject commit ea155d70c9a37c0d161b54de2e5cbf477205e138
|
Loading…
Reference in a new issue