blob: 521b0da8cb0678a5198a6dbac207b5936cfbcf3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// #pragma once
// #include "root.h"
// #include <JavaScriptCore/MarkingConstraint.h>
// namespace JSC {
// class VM;
// }
// namespace Bun {
// class JSVMClientData;
// class BunGCOutputConstraint : public JSC::MarkingConstraint {
// WTF_MAKE_FAST_ALLOCATED;
// public:
// BunGCOutputConstraint(JSC::VM &, Bun::JSVMClientData &);
// ~BunGCOutputConstraint(){};
// protected:
// void executeImpl(JSC::AbstractSlotVisitor &) override;
// void executeImpl(JSC::SlotVisitor &) override;
// private:
// template <typename Visitor> void executeImplImpl(Visitor &);
// JSC::VM &m_vm;
// JSVMClientData &m_clientData;
// uint64_t m_lastExecutionVersion;
// };
// } // namespace Bun
|