diff options
author | 2023-08-03 19:52:04 -0700 | |
---|---|---|
committer | 2023-09-06 04:18:43 -0700 | |
commit | beabf5ab27b0ec6531e0c650a36d76a778536b77 (patch) | |
tree | 99032030c60c240d9814f09d02fa06af8df1495c /src/bun.js/bindings/ZigGlobalObject.h | |
parent | daaac7792cc348030d64a33087f1a41b3a3822cf (diff) | |
download | bun-beabf5ab27b0ec6531e0c650a36d76a778536b77.tar.gz bun-beabf5ab27b0ec6531e0c650a36d76a778536b77.tar.zst bun-beabf5ab27b0ec6531e0c650a36d76a778536b77.zip |
remove native events from streams
Diffstat (limited to 'src/bun.js/bindings/ZigGlobalObject.h')
-rw-r--r-- | src/bun.js/bindings/ZigGlobalObject.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/bun.js/bindings/ZigGlobalObject.h b/src/bun.js/bindings/ZigGlobalObject.h index e622016de..f10a43479 100644 --- a/src/bun.js/bindings/ZigGlobalObject.h +++ b/src/bun.js/bindings/ZigGlobalObject.h @@ -238,10 +238,6 @@ public: JSC::JSObject* JSStringDecoder() { return m_JSStringDecoderClassStructure.constructorInitializedOnMainThread(this); } JSC::JSValue JSStringDecoderPrototype() { return m_JSStringDecoderClassStructure.prototypeInitializedOnMainThread(this); } - JSC::Structure* JSReadableStateStructure() { return m_JSReadableStateClassStructure.getInitializedOnMainThread(this); } - JSC::JSObject* JSReadableState() { return m_JSReadableStateClassStructure.constructorInitializedOnMainThread(this); } - JSC::JSValue JSReadableStatePrototype() { return m_JSReadableStateClassStructure.prototypeInitializedOnMainThread(this); } - JSC::Structure* NodeVMScriptStructure() { return m_NodeVMScriptClassStructure.getInitializedOnMainThread(this); } JSC::JSObject* NodeVMScript() { return m_NodeVMScriptClassStructure.constructorInitializedOnMainThread(this); } JSC::JSValue NodeVMScriptPrototype() { return m_NodeVMScriptClassStructure.prototypeInitializedOnMainThread(this); } @@ -261,8 +257,6 @@ public: JSC::JSFunction* utilInspectStylizeColorFunction() { return m_utilInspectStylizeColorFunction.getInitializedOnMainThread(this); } JSC::JSFunction* utilInspectStylizeNoColorFunction() { return m_utilInspectStylizeNoColorFunction.getInitializedOnMainThread(this); } - JSC::JSFunction* emitReadableNextTickFunction() { return m_emitReadableNextTickFunction.getInitializedOnMainThread(this); } - JSObject* requireFunctionUnbound() { return m_requireFunctionUnbound.getInitializedOnMainThread(this); } JSObject* requireResolveFunctionUnbound() { return m_requireResolveFunctionUnbound.getInitializedOnMainThread(this); } Bun::InternalModuleRegistry* internalModuleRegistry() { return m_internalModuleRegistry.getInitializedOnMainThread(this); } @@ -502,7 +496,6 @@ private: LazyClassStructure m_JSFileSinkClassStructure; LazyClassStructure m_JSHTTPResponseSinkClassStructure; LazyClassStructure m_JSHTTPSResponseSinkClassStructure; - LazyClassStructure m_JSReadableStateClassStructure; LazyClassStructure m_JSStringDecoderClassStructure; LazyClassStructure m_NapiClassStructure; LazyClassStructure m_callSiteStructure; @@ -526,7 +519,7 @@ private: LazyProperty<JSGlobalObject, JSFunction> m_utilInspectFunction; LazyProperty<JSGlobalObject, JSFunction> m_utilInspectStylizeColorFunction; LazyProperty<JSGlobalObject, JSFunction> m_utilInspectStylizeNoColorFunction; - LazyProperty<JSGlobalObject, JSFunction> m_emitReadableNextTickFunction; + LazyProperty<JSGlobalObject, JSMap> m_lazyReadableStreamPrototypeMap; LazyProperty<JSGlobalObject, JSMap> m_requireMap; LazyProperty<JSGlobalObject, Structure> m_encodeIntoObjectStructure; |