Changeset 34610 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Jun 16, 2008, 7:49:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r34607 r34610 327 327 328 328 SymbolTableEntry entry = symbolTable().get(ident.ustring().rep()); 329 if (entry.is Empty())329 if (entry.isNull()) 330 330 return 0; 331 331 … … 339 339 340 340 SymbolTableEntry entry = symbolTable().get(ident.ustring().rep()); 341 ASSERT(!entry.is Empty());341 ASSERT(!entry.isNull()); 342 342 343 343 return &m_locals[localsIndex(entry.getIndex())]; … … 609 609 610 610 // Found the property 611 if (!entry.is Empty()) {611 if (!entry.isNull()) { 612 612 stackDepth = depth; 613 613 index = entry.getIndex();
Note:
See TracChangeset
for help on using the changeset viewer.