Changeset 113557 in webkit for trunk/Source/JavaScriptCore/bytecode
- Timestamp:
- Apr 9, 2012, 12:48:08 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/StructureSet.h
r105581 r113557 28 28 29 29 #include "PredictedType.h" 30 #include "Structure.h" 30 31 #include <stdio.h> 31 32 #include <wtf/Vector.h> 32 33 33 34 namespace JSC { 34 35 class Structure;36 35 37 36 namespace DFG { … … 108 107 size_t size() const { return m_structures.size(); } 109 108 109 bool allAreUsingInlinePropertyStorage() const 110 { 111 for (size_t i = 0; i < m_structures.size(); ++i) { 112 if (!m_structures[i]->isUsingInlineStorage()) 113 return false; 114 } 115 return true; 116 } 117 110 118 Structure* at(size_t i) const { return m_structures.at(i); } 111 119
Note:
See TracChangeset
for help on using the changeset viewer.