Changeset 90529 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Jul 6, 2011, 8:42:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r90423 r90529 1566 1566 for (size_t size = m_methodCallLinkInfos.size(), i = 0; i < size; ++i) { 1567 1567 if (m_methodCallLinkInfos[i].cachedStructure) { 1568 // Both members must be filled at the same time 1568 // These members must be filled at the same time, and only after 1569 // the MethodCallLinkInfo is set as seen. 1570 ASSERT(m_methodCallLinkInfos[i].seenOnce()); 1569 1571 visitor.append(&m_methodCallLinkInfos[i].cachedStructure); 1570 1572 ASSERT(!!m_methodCallLinkInfos[i].cachedPrototypeStructure);
Note:
See TracChangeset
for help on using the changeset viewer.