diff options
Diffstat (limited to 'src/bun.js/bindings/NodeVMScript.h')
-rw-r--r-- | src/bun.js/bindings/NodeVMScript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bun.js/bindings/NodeVMScript.h b/src/bun.js/bindings/NodeVMScript.h index 3181e8291..68ddd4c6a 100644 --- a/src/bun.js/bindings/NodeVMScript.h +++ b/src/bun.js/bindings/NodeVMScript.h @@ -63,7 +63,6 @@ public: DECLARE_VISIT_CHILDREN; mutable WriteBarrier<JSC::DirectEvalExecutable> m_cachedDirectExecutable; - mutable WriteBarrier<JSC::JSGlobalObject> m_cachedGlobalObject; private: JSC::SourceCode m_source; @@ -79,5 +78,6 @@ private: JSC_DECLARE_HOST_FUNCTION(vmModule_createContext); JSC_DECLARE_HOST_FUNCTION(vmModule_isContext); - +JSC_DECLARE_HOST_FUNCTION(vmModuleRunInNewContext); +JSC_DECLARE_HOST_FUNCTION(vmModuleRunInThisContext); } |