Changeset 35807 in webkit for trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
- Timestamp:
- Aug 17, 2008, 1:23:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ArrayConstructor.cpp
r35411 r35807 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
Note:
See TracChangeset
for help on using the changeset viewer.