Changeset 35657 in webkit for trunk/JavaScriptCore/kjs/JSVariableObject.h
- Timestamp:
- Aug 10, 2008, 3:06:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSVariableObject.h
r35203 r35657 126 126 inline bool JSVariableObject::symbolTablePut(const Identifier& propertyName, JSValue* value) 127 127 { 128 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this)); 129 128 130 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 129 131 if (entry.isNull()) … … 137 139 inline bool JSVariableObject::symbolTablePutWithAttributes(const Identifier& propertyName, JSValue* value, unsigned attributes) 138 140 { 141 ASSERT(!Heap::heap(value) || Heap::heap(value) == Heap::heap(this)); 142 139 143 SymbolTable::iterator iter = symbolTable().find(propertyName.ustring().rep()); 140 144 if (iter == symbolTable().end())
Note:
See TracChangeset
for help on using the changeset viewer.