chore: upgrade webkit (#7720)

* update

* alwaysInline

* update webkit commit

* update webkit tag

* remove webkit_url

* check for exception and update webkit commit

* update webkit tag
This commit is contained in:
Dylan Conway
2023-12-18 20:54:04 -08:00
committed by GitHub
parent dc19541719
commit b88324db31
22 changed files with 43 additions and 48 deletions

View File

@@ -74,11 +74,10 @@ static JSC::SyntheticSourceProvider::SyntheticSourceGenerator generateInternalMo
GlobalObject* globalObject = jsCast<GlobalObject*>(lexicalGlobalObject);
auto throwScope = DECLARE_THROW_SCOPE(vm);
auto* object = jsCast<JSObject*>(globalObject->internalModuleRegistry()->requireId(globalObject, vm, moduleId));
if (!object) {
return;
}
JSValue requireResult = globalObject->internalModuleRegistry()->requireId(globalObject, vm, moduleId);
RETURN_IF_EXCEPTION(throwScope, void());
auto* object = requireResult.getObject();
ASSERT(object);
JSC::EnsureStillAliveScope stillAlive(object);