Changeset 34555 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Jun 14, 2008, 10:24:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r34541 r34555 344 344 } 345 345 346 bool CodeGenerator::isLocal(const Identifier& ident) 347 { 348 if (ident == m_propertyNames->thisIdentifier) 349 return true; 350 351 return shouldOptimizeLocals() && symbolTable().contains(ident.ustring().rep()); 352 } 353 346 354 bool CodeGenerator::isLocalConstant(const Identifier& ident) 347 355 {
Note:
See TracChangeset
for help on using the changeset viewer.