Changeset 440 for trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/ArrayConstructor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
r424 r440 32 32 namespace KJS { 33 33 34 ASSERT_CLASS_FITS_IN_CELL(ArrayConstructor); 35 34 36 ArrayConstructor::ArrayConstructor(ExecState* exec, FunctionPrototype* functionPrototype, ArrayPrototype* arrayPrototype) 35 : InternalFunction( functionPrototype, Identifier(exec, arrayPrototype->classInfo()->className))37 : InternalFunction(exec, functionPrototype, Identifier(exec, arrayPrototype->classInfo()->className)) 36 38 { 37 39 // ECMA 15.4.3.1 Array.prototype
