Changeset 29428 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Jan 11, 2008, 11:19:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r29425 r29428 4327 4327 for (size_t i = 0; i < size; ++i) { 4328 4328 const Identifier& ident = m_varStack[i].first; 4329 if (variableObject-> getDirect(ident)) {4329 if (variableObject->hasProperty(exec, ident)) { 4330 4330 m_varIndexes[i] = missingSymbolMarker(); // Signal not to initialize this declaration. 4331 4331 continue; … … 4475 4475 Identifier& ident = m_varStack[i].first; 4476 4476 bool isConstant = m_varStack[i].second & DeclarationStacks::IsConstant; 4477 if (variableObject->has OwnProperty(exec, ident))4477 if (variableObject->hasProperty(exec, ident)) 4478 4478 continue; 4479 4479 int attributes = minAttributes;
Note:
See TracChangeset
for help on using the changeset viewer.