Changeset 59895 in webkit for trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
- Timestamp:
- May 20, 2010, 7:01:25 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r59860 r59895 1032 1032 return false; 1033 1033 } 1034 stackDepth = depth ;1034 stackDepth = depth + m_codeBlock->needsFullScopeChain(); 1035 1035 index = entry.getIndex(); 1036 1036 if (++iter == end) … … 1044 1044 } 1045 1045 // Can't locate the property but we're able to avoid a few lookups. 1046 stackDepth = depth ;1046 stackDepth = depth + m_codeBlock->needsFullScopeChain(); 1047 1047 index = missingSymbolMarker(); 1048 1048 JSObject* scope = *iter;
Note:
See TracChangeset
for help on using the changeset viewer.