Changeset 33979 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- May 21, 2008, 6:20:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r33038 r33979 675 675 if (!e) 676 676 continue; 677 if (strictEqual( exec,searchElement, e))677 if (strictEqual(searchElement, e)) 678 678 return jsNumber(index); 679 679 } … … 704 704 if (!e) 705 705 continue; 706 if (strictEqual( exec,searchElement, e))706 if (strictEqual(searchElement, e)) 707 707 return jsNumber(index); 708 708 } … … 723 723 } 724 724 725 bool ArrayObjectImp::implementsConstruct() const 726 { 727 return true;725 ConstructType ArrayObjectImp::getConstructData(ConstructData&) 726 { 727 return ConstructTypeNative; 728 728 } 729 729
Note:
See TracChangeset
for help on using the changeset viewer.