mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
Bump WebKit (#15828)
Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com>
This commit is contained in:
@@ -2,7 +2,7 @@ option(WEBKIT_VERSION "The version of WebKit to use")
|
||||
option(WEBKIT_LOCAL "If a local version of WebKit should be used instead of downloading")
|
||||
|
||||
if(NOT WEBKIT_VERSION)
|
||||
set(WEBKIT_VERSION 58549ddc4d9e7164823fe9d4e86c46c003e46a19)
|
||||
set(WEBKIT_VERSION 3845bf370ff4e9a5c0b96036255142c7904be963)
|
||||
endif()
|
||||
|
||||
if(WEBKIT_LOCAL)
|
||||
|
||||
@@ -1139,8 +1139,9 @@ const JSC::GlobalObjectMethodTable GlobalObject::s_globalObjectMethodTable = {
|
||||
nullptr, // compileStreaming
|
||||
nullptr, // instantiateStreaming
|
||||
&Zig::deriveShadowRealmGlobalObject,
|
||||
nullptr, // codeForEval
|
||||
nullptr, // canCompileStrings
|
||||
&codeForEval, // codeForEval
|
||||
&canCompileStrings, // canCompileStrings
|
||||
&trustedScriptStructure, // trustedScriptStructure
|
||||
};
|
||||
|
||||
const JSC::GlobalObjectMethodTable EvalGlobalObject::s_globalObjectMethodTable = {
|
||||
@@ -1164,8 +1165,9 @@ const JSC::GlobalObjectMethodTable EvalGlobalObject::s_globalObjectMethodTable =
|
||||
nullptr, // compileStreaming
|
||||
nullptr, // instantiateStreaming
|
||||
&Zig::deriveShadowRealmGlobalObject,
|
||||
nullptr, // codeForEval
|
||||
nullptr, // canCompileStrings
|
||||
&codeForEval, // codeForEval
|
||||
&canCompileStrings, // canCompileStrings
|
||||
&trustedScriptStructure, // trustedScriptStructure
|
||||
};
|
||||
|
||||
GlobalObject::GlobalObject(JSC::VM& vm, JSC::Structure* structure, const JSC::GlobalObjectMethodTable* methodTable)
|
||||
|
||||
Reference in New Issue
Block a user