Changeset 9582 in webkit for trunk/JavaScriptCore/bindings/runtime_array.cpp
- Timestamp:
- Jul 3, 2005, 3:47:58 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bindings/runtime_array.cpp
r9455 r9582 97 97 98 98 99 bool RuntimeArrayImp::has Property(ExecState *exec, const Identifier &propertyName) const99 bool RuntimeArrayImp::hasOwnProperty(ExecState *exec, const Identifier &propertyName) const 100 100 { 101 101 if (propertyName == lengthPropertyName) … … 110 110 } 111 111 112 return ObjectImp::has Property(exec, propertyName);112 return ObjectImp::hasOwnProperty(exec, propertyName); 113 113 } 114 114 115 bool RuntimeArrayImp::has Property(ExecState *exec, unsigned index) const115 bool RuntimeArrayImp::hasOwnProperty(ExecState *exec, unsigned index) const 116 116 { 117 117 if (index >= getLength())
Note:
See TracChangeset
for help on using the changeset viewer.