Changeset 156964 in webkit for trunk/Source/JavaScriptCore/runtime/Arguments.cpp
- Timestamp:
- Oct 5, 2013, 11:04:40 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Arguments.cpp
r156677 r156964 99 99 } 100 100 101 return JSObject::getOwnPropertySlot(thisObject, exec, Identifier (exec, String::number(i)), slot);101 return JSObject::getOwnPropertySlot(thisObject, exec, Identifier::from(exec, i), slot); 102 102 } 103 103 … … 161 161 if (!thisObject->isArgument(i)) 162 162 continue; 163 propertyNames.add(Identifier (exec, String::number(i)));163 propertyNames.add(Identifier::from(exec, i)); 164 164 } 165 165 if (mode == IncludeDontEnumProperties) { … … 177 177 178 178 PutPropertySlot slot(shouldThrow); 179 JSObject::put(thisObject, exec, Identifier (exec, String::number(i)), value, slot);179 JSObject::put(thisObject, exec, Identifier::from(exec, i), value, slot); 180 180 } 181 181
Note:
See TracChangeset
for help on using the changeset viewer.