Changeset 9441 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Jun 20, 2005, 2:59:39 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r9390 r9441 238 238 } 239 239 240 bool FunctionImp::has Property(ExecState *exec, const Identifier &propertyName) const240 bool FunctionImp::hasOwnProperty(ExecState *exec, const Identifier &propertyName) const 241 241 { 242 242 if (propertyName == argumentsPropertyName || propertyName == lengthPropertyName) 243 243 return true; 244 return InternalFunctionImp::has Property(exec, propertyName);244 return InternalFunctionImp::hasOwnProperty(exec, propertyName); 245 245 } 246 246 … … 358 358 } 359 359 360 bool ActivationImp::has Property(ExecState *exec, const Identifier &propertyName) const360 bool ActivationImp::hasOwnProperty(ExecState *exec, const Identifier &propertyName) const 361 361 { 362 362 if (propertyName == argumentsPropertyName) 363 363 return true; 364 return ObjectImp::has Property(exec, propertyName);364 return ObjectImp::hasOwnProperty(exec, propertyName); 365 365 } 366 366
Note:
See TracChangeset
for help on using the changeset viewer.