Ignore:
Timestamp:
Nov 16, 2011, 3:37:15 PM (14 years ago)
Author:
[email protected]
Message:

Rolled back in r100375 and r100385 with 32-bit build fixed.

  • dfg/DFGOperations.cpp:
  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/ArgList.cpp:

(JSC::ArgList::getSlice):

  • runtime/ArgList.h:
  • runtime/JSArray.cpp:

(JSC::JSArray::finishCreation):

  • runtime/JSArray.h:

(JSC::JSArray::create):

  • runtime/JSGlobalObject.h:

(JSC::constructArray):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h

    r100412 r100516  
    474474    }
    475475
     476    inline JSArray* constructArray(ExecState* exec, const JSValue* values, size_t length)
     477    {
     478        return JSArray::create(exec->globalData(), exec->lexicalGlobalObject()->arrayStructure(), values, length);
     479    }
     480
    476481    class DynamicGlobalObjectScope {
    477482        WTF_MAKE_NONCOPYABLE(DynamicGlobalObjectScope);
Note: See TracChangeset for help on using the changeset viewer.