diff options
-rw-r--r-- | src/bun.js/bindings/ZigGlobalObject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bun.js/bindings/ZigGlobalObject.h b/src/bun.js/bindings/ZigGlobalObject.h index 8e5aa37c3..5ba155c99 100644 --- a/src/bun.js/bindings/ZigGlobalObject.h +++ b/src/bun.js/bindings/ZigGlobalObject.h @@ -460,6 +460,7 @@ public: LazyProperty<JSGlobalObject, JSObject> m_processEnvObject; JSObject* cryptoObject() { return m_cryptoObject.getInitializedOnMainThread(this); } + JSObject* JSDOMFileConstructor() { return m_JSDOMFileConstructor.getInitializedOnMainThread(this); } #include "ZigGeneratedClasses+lazyStructureHeader.h" @@ -550,6 +551,8 @@ private: LazyProperty<JSGlobalObject, JSC::Structure> m_importMetaObjectStructure; LazyProperty<JSGlobalObject, JSC::Structure> m_asyncBoundFunctionStructure; + LazyProperty<JSGlobalObject, JSC::JSObject> m_JSDOMFileConstructor; + DOMGuardedObjectSet m_guardedObjects WTF_GUARDED_BY_LOCK(m_gcLock); void* m_bunVM; |