Changeset 34610 in webkit for trunk/JavaScriptCore/kjs/JSVariableObject.h
- Timestamp:
- Jun 16, 2008, 7:49:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSVariableObject.h
r34581 r34610 101 101 { 102 102 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 103 if (!entry.is Empty()) {103 if (!entry.isNull()) { 104 104 slot.setValueSlot(&valueAt(entry.getIndex())); 105 105 return true; … … 111 111 { 112 112 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 113 if (!entry.is Empty()) {113 if (!entry.isNull()) { 114 114 slot.setValueSlot(&valueAt(entry.getIndex())); 115 115 slotIsWriteable = !entry.isReadOnly(); … … 122 122 { 123 123 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 124 if (entry.is Empty())124 if (entry.isNull()) 125 125 return false; 126 126 if (entry.isReadOnly()) … … 136 136 return false; 137 137 SymbolTableEntry& entry = iter->second; 138 ASSERT(!entry.is Empty());138 ASSERT(!entry.isNull()); 139 139 entry.setAttributes(attributes); 140 140 valueAt(entry.getIndex()) = value;
Note:
See TracChangeset
for help on using the changeset viewer.