Changeset 291577 in webkit for trunk/Source/JavaScriptCore/parser/Parser.h
- Timestamp:
- Mar 21, 2022, 12:57:19 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Parser.h
r288473 r291577 664 664 } 665 665 666 void markLastUsedVariablesSetAsCaptured() 667 { 668 for (UniquedStringImpl* impl : m_usedVariables.last()) 669 m_closedVariableCandidates.add(impl); 666 void markLastUsedVariablesSetAsCaptured(unsigned from) 667 { 668 for (unsigned index = from; index < m_usedVariables.size(); ++index) { 669 for (UniquedStringImpl* impl : m_usedVariables[index]) 670 m_closedVariableCandidates.add(impl); 671 } 670 672 } 671 673
Note:
See TracChangeset
for help on using the changeset viewer.