Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r2753 r2760 66 66 } 67 67 68 Value ArrayInstanceImp::get(ExecState *exec, const UString&propertyName) const68 Value ArrayInstanceImp::get(ExecState *exec, const Identifier &propertyName) const 69 69 { 70 70 if (propertyName == lengthPropertyName) … … 92 92 93 93 // Special implementation of [[Put]] - see ECMA 15.4.5.1 94 void ArrayInstanceImp::put(ExecState *exec, const UString&propertyName, const Value &value, int attr)94 void ArrayInstanceImp::put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr) 95 95 { 96 96 if (propertyName == lengthPropertyName) { … … 118 118 } 119 119 120 bool ArrayInstanceImp::hasProperty(ExecState *exec, const UString&propertyName) const120 bool ArrayInstanceImp::hasProperty(ExecState *exec, const Identifier &propertyName) const 121 121 { 122 122 if (propertyName == lengthPropertyName) … … 143 143 } 144 144 145 bool ArrayInstanceImp::deleteProperty(ExecState *exec, const UString&propertyName)145 bool ArrayInstanceImp::deleteProperty(ExecState *exec, const Identifier &propertyName) 146 146 { 147 147 if (propertyName == lengthPropertyName) … … 294 294 } 295 295 296 Value ArrayPrototypeImp::get(ExecState *exec, const UString&propertyName) const296 Value ArrayPrototypeImp::get(ExecState *exec, const Identifier &propertyName) const 297 297 { 298 298 //fprintf( stderr, "ArrayPrototypeImp::get(%s)\n", propertyName.ascii() );
Note:
See TracChangeset
for help on using the changeset viewer.