Changeset 177316 in webkit for trunk/Source/JavaScriptCore/parser/Parser.h
- Timestamp:
- Dec 15, 2014, 3:24:12 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Parser.h
r177284 r177316 131 131 m_labels = std::make_unique<LabelStack>(); 132 132 133 for (auto label : *rhs.m_labels) 134 m_labels->append(ScopeLabelInfo(label.m_ident, label.m_isLoop)); 133 typedef LabelStack::const_iterator iterator; 134 iterator end = rhs.m_labels->end(); 135 for (iterator it = rhs.m_labels->begin(); it != end; ++it) 136 m_labels->append(ScopeLabelInfo(it->m_ident, it->m_isLoop)); 135 137 } 136 138 }
Note:
See TracChangeset
for help on using the changeset viewer.