Changeset 2881 in webkit for trunk/JavaScriptCore/kjs/property_map.cpp
- Timestamp:
- Nov 26, 2002, 1:31:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/property_map.cpp
r2874 r2881 67 67 Identifier key; 68 68 Value value; 69 int attributes; 69 70 }; 70 71 … … 474 475 prop->key = Identifier(_table->entries[i].key); 475 476 prop->value = Value(_table->entries[i].value); 477 prop->attributes = _table->entries[i].attributes; 476 478 ++prop; 477 479 } … … 483 485 { 484 486 for (int i = 0; i != p._count; ++i){ 485 put(p._properties[i].key, p._properties[i].value.imp(), 0);487 put(p._properties[i].key, p._properties[i].value.imp(), p._properties[i].attributes); 486 488 } 487 489 }
Note:
See TracChangeset
for help on using the changeset viewer.