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:
Jarred Sumner
2022-08-27 23:46:05 -07:00
committed by GitHub
parent 8b3afa5831
commit af5c4dedca
67 changed files with 1208 additions and 1081 deletions

View File

@@ -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;
}