diff options
author | 2023-07-19 17:20:00 -0700 | |
---|---|---|
committer | 2023-07-19 17:20:00 -0700 | |
commit | 9b6dc49575df5fb953918c284505f24741138130 (patch) | |
tree | 3a052876fa8c6524e0c8d18479aabe38e2d5a52a /src/bun.js/bindings/ZigLazyStaticFunctions.h | |
parent | 723e9d1ea7c7fdb424ecedd0fb023524366322c4 (diff) | |
download | bun-9b6dc49575df5fb953918c284505f24741138130.tar.gz bun-9b6dc49575df5fb953918c284505f24741138130.tar.zst bun-9b6dc49575df5fb953918c284505f24741138130.zip |
Implement `AsyncLocalStorage` (#3089)
* work to get async local storage working.
* a
* a
* everything but queueMicrotask
* sdfghj
* .
* finish
* tests
* test
* ok
* done
* im so stupid
* Upgrade WebKit
* refactor
* refactor
* changes requested
* oops
* cool
* fix runInAsyncScope
Diffstat (limited to 'src/bun.js/bindings/ZigLazyStaticFunctions.h')
-rw-r--r-- | src/bun.js/bindings/ZigLazyStaticFunctions.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/bun.js/bindings/ZigLazyStaticFunctions.h b/src/bun.js/bindings/ZigLazyStaticFunctions.h index 9f7211cd2..38033b52d 100644 --- a/src/bun.js/bindings/ZigLazyStaticFunctions.h +++ b/src/bun.js/bindings/ZigLazyStaticFunctions.h @@ -3,21 +3,19 @@ #include "root.h" namespace Zig { - class GlobalObject; - class JSFFIFunction; - - class LazyStaticFunctions { - public: +class GlobalObject; +class JSFFIFunction; +class LazyStaticFunctions { +public: void init(Zig::GlobalObject* globalObject); template<typename Visitor> void visit(Visitor& visitor); + /* -- BEGIN FUNCTION DEFINITIONS -- */ - /* -- BEGIN FUNCTION DEFINITIONS -- */ - - /* -- END FUNCTION DEFINITIONS-- */ - }; + /* -- END FUNCTION DEFINITIONS-- */ +}; } // namespace Zig |