diff options
author | 2022-08-27 23:46:05 -0700 | |
---|---|---|
committer | 2022-08-27 23:46:05 -0700 | |
commit | af5c4dedca550a856486ec8bbc9f6da76396496e (patch) | |
tree | 618a42aed0eb46e9a726fc58731358b3bb7cbc27 /src/bun.js/bindings/Process.cpp | |
parent | 8b3afa5831b7ac5fcabb47138c67d60e86247cd3 (diff) | |
download | bun-af5c4dedca550a856486ec8bbc9f6da76396496e.tar.gz bun-af5c4dedca550a856486ec8bbc9f6da76396496e.tar.zst bun-af5c4dedca550a856486ec8bbc9f6da76396496e.zip |
Update WebKit (#1165)
* Update WebKit
* Fix `DataView` and non-8 bit sized typed arrays with TextDecoder
* New WebKit
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/bindings/Process.cpp')
-rw-r--r-- | src/bun.js/bindings/Process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bun.js/bindings/Process.cpp b/src/bun.js/bindings/Process.cpp index f09e31195..f1900da9a 100644 --- a/src/bun.js/bindings/Process.cpp +++ b/src/bun.js/bindings/Process.cpp @@ -60,8 +60,8 @@ static JSC_DEFINE_HOST_FUNCTION(Process_functionNextTick, case 1: { // This is a JSC builtin function - globalObject->queueMicrotask(JSC::createJSMicrotask(vm, job, JSC::JSValue {}, JSC::JSValue {}, - JSC::JSValue {}, JSC::JSValue {})); + globalObject->queueMicrotask(job, JSC::JSValue {}, JSC::JSValue {}, + JSC::JSValue {}, JSC::JSValue {}); break; } @@ -74,7 +74,7 @@ static JSC_DEFINE_HOST_FUNCTION(Process_functionNextTick, JSC::JSValue argument2 = argCount > 3 ? callFrame->uncheckedArgument(3) : JSC::JSValue {}; JSC::JSValue argument3 = argCount > 4 ? callFrame->uncheckedArgument(4) : JSC::JSValue {}; globalObject->queueMicrotask( - JSC::createJSMicrotask(vm, job, argument0, argument1, argument2, argument3)); + job, argument0, argument1, argument2, argument3); break; } |