Changeset 47519 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Aug 19, 2009, 12:54:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r47412 r47519 837 837 BatchedTransitionOptimizer optimizer(variableObject); 838 838 839 const DeclarationStacks::VarStack& varStack = static_cast<EvalExecutable*>(codeBlock->ownerExecutable())->varStack(); 840 DeclarationStacks::VarStack::const_iterator varStackEnd = varStack.end(); 841 for (DeclarationStacks::VarStack::const_iterator it = varStack.begin(); it != varStackEnd; ++it) { 842 const Identifier& ident = (*it).first; 839 unsigned numVariables = codeBlock->numVariables(); 840 for (unsigned i = 0; i < numVariables; ++i) { 841 const Identifier& ident = codeBlock->variable(i); 843 842 if (!variableObject->hasProperty(callFrame, ident)) { 844 843 PutPropertySlot slot;
Note:
See TracChangeset
for help on using the changeset viewer.