Changeset 169740 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Jun 9, 2014, 8:01:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r169703 r169740 87 87 for (auto iter = table->begin(vm); iter != table->end(vm); ++iter) { 88 88 if ((!(iter->attributes() & DontEnum) || (mode == IncludeDontEnumProperties)) && !((iter->attributes() & BuiltinOrFunction) && didReify)) 89 propertyNames.add( iter.key());89 propertyNames.add(Identifier(&vm, iter.key())); 90 90 } 91 91 }
Note:
See TracChangeset
for help on using the changeset viewer.