Changeset 34361 in webkit for trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
- Timestamp:
- Jun 4, 2008, 11:10:15 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackObjectFunctions.h
r34355 r34361 345 345 StaticValueEntry* entry = it->second; 346 346 if (entry->getProperty && !(entry->attributes & kJSPropertyAttributeDontEnum)) 347 propertyNames.add( name);347 propertyNames.add(Identifier(name)); 348 348 } 349 349 } … … 356 356 StaticFunctionEntry* entry = it->second; 357 357 if (!(entry->attributes & kJSPropertyAttributeDontEnum)) 358 propertyNames.add( name);358 propertyNames.add(Identifier(name)); 359 359 } 360 360 }
Note:
See TracChangeset
for help on using the changeset viewer.