mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
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>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user