namespace JSC {
-class BlockAllocator;
class CodeBlock;
class Heap;
class JSCell;
WTF_MAKE_NONCOPYABLE(CodeBlockSet);
public:
- CodeBlockSet(BlockAllocator&);
+ CodeBlockSet();
~CodeBlockSet();
// Add a CodeBlock. This is only called by CodeBlock constructors.
// and all, but that seemed like overkill.
HashSet<CodeBlock*> m_oldCodeBlocks;
HashSet<CodeBlock*> m_newCodeBlocks;
- GCSegmentedArray<CodeBlock*> m_currentlyExecuting;
+ Vector<CodeBlock*> m_currentlyExecuting;
};
} // namespace JSC