Changeset 34510 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.h
- Timestamp:
- Jun 12, 2008, 2:03:41 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.h
r34500 r34510 174 174 ALWAYS_INLINE bool leftHandSideNeedsCopy(bool rightHasAssignments) 175 175 { 176 return m_code Block->needsFullScopeChain || rightHasAssignments;176 return m_codeType != FunctionCode || m_codeBlock->needsFullScopeChain || rightHasAssignments; 177 177 } 178 178
Note:
See TracChangeset
for help on using the changeset viewer.