Changeset 2760 in webkit for trunk/JavaScriptCore/kjs/string_object.cpp
- Timestamp:
- Nov 19, 2002, 2:02:26 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.cpp
r2749 r2760 50 50 } 51 51 52 Value StringInstanceImp::get(ExecState *exec, const UString&propertyName) const52 Value StringInstanceImp::get(ExecState *exec, const Identifier &propertyName) const 53 53 { 54 54 if (propertyName == lengthPropertyName) … … 57 57 } 58 58 59 void StringInstanceImp::put(ExecState *exec, const UString&propertyName, const Value &value, int attr)59 void StringInstanceImp::put(ExecState *exec, const Identifier &propertyName, const Value &value, int attr) 60 60 { 61 61 if (propertyName == lengthPropertyName) … … 64 64 } 65 65 66 bool StringInstanceImp::hasProperty(ExecState *exec, const UString&propertyName) const66 bool StringInstanceImp::hasProperty(ExecState *exec, const Identifier &propertyName) const 67 67 { 68 68 if (propertyName == lengthPropertyName) … … 71 71 } 72 72 73 bool StringInstanceImp::deleteProperty(ExecState *exec, const UString&propertyName)73 bool StringInstanceImp::deleteProperty(ExecState *exec, const Identifier &propertyName) 74 74 { 75 75 if (propertyName == lengthPropertyName) … … 128 128 } 129 129 130 Value StringPrototypeImp::get(ExecState *exec, const UString&propertyName) const130 Value StringPrototypeImp::get(ExecState *exec, const Identifier &propertyName) const 131 131 { 132 132 return lookupGetFunction<StringProtoFuncImp, StringInstanceImp>( exec, propertyName, &stringTable, this );
Note:
See TracChangeset
for help on using the changeset viewer.