Ignore:
Timestamp:
May 21, 2008, 6:20:45 PM (17 years ago)
Author:
[email protected]
Message:

Merge squirrelfish branch into trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/array_object.cpp

    r33038 r33979  
    675675        if (!e)
    676676            continue;
    677         if (strictEqual(exec, searchElement, e))
     677        if (strictEqual(searchElement, e))
    678678            return jsNumber(index);
    679679    }
     
    704704        if (!e)
    705705            continue;
    706         if (strictEqual(exec, searchElement, e))
     706        if (strictEqual(searchElement, e))
    707707            return jsNumber(index);
    708708    }
     
    723723}
    724724
    725 bool ArrayObjectImp::implementsConstruct() const
    726 {
    727     return true;
     725ConstructType ArrayObjectImp::getConstructData(ConstructData&)
     726{
     727    return ConstructTypeNative;
    728728}
    729729
Note: See TracChangeset for help on using the changeset viewer.