Changeset 163765 in webkit for trunk/Source/JavaScriptCore/dfg/DFGGraph.h
- Timestamp:
- Feb 9, 2014, 11:21:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGGraph.h
r163223 r163765 41 41 #include "DFGNodeAllocator.h" 42 42 #include "DFGPlan.h" 43 #include "DFGScannable.h" 43 44 #include "DFGVariadicFunction.h" 44 45 #include "InlineCallFrameSet.h" … … 79 80 // The order may be significant for nodes with side-effects (property accesses, value conversions). 80 81 // Nodes that are 'dead' remain in the vector with refCount 0. 81 class Graph {82 class Graph : public virtual Scannable { 82 83 public: 83 84 Graph(VM&, Plan&, LongLivedState&); … … 799 800 JSArrayBufferView* tryGetFoldableView(Node*, ArrayMode); 800 801 JSArrayBufferView* tryGetFoldableViewForChild1(Node*); 802 803 virtual void visitChildren(SlotVisitor&) override; 801 804 802 805 VM& m_vm;
Note:
See TracChangeset
for help on using the changeset viewer.