Changeset 39660 in webkit for trunk/JavaScriptCore/interpreter/Interpreter.cpp
- Timestamp:
- Jan 6, 2009, 12:33:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/interpreter/Interpreter.cpp
r39631 r39660 851 851 // Now unwind the scope chain within the exception handler's call frame. 852 852 853 ScopeChain sc(callFrame->scopeChain()); 853 ScopeChainNode* scopeChain = callFrame->scopeChain(); 854 ScopeChain sc(scopeChain); 854 855 int scopeDelta = depth(codeBlock, sc) - handler->scopeDepth; 855 856 ASSERT(scopeDelta >= 0); 856 857 while (scopeDelta--) 857 sc .pop();858 callFrame->setScopeChain(sc .node());858 scopeChain = scopeChain->pop(); 859 callFrame->setScopeChain(scopeChain); 859 860 860 861 return handler;
Note:
See TracChangeset
for help on using the changeset viewer.