Changeset 29817 in webkit for trunk/JavaScriptCore/kjs/array_object.cpp
- Timestamp:
- Jan 27, 2008, 12:54:25 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/array_object.cpp
r29508 r29817 1 1 /* 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 * Copyright (C) 2003, 2007 Apple Inc. All rights reserved.3 * Copyright (C) 2003, 2007, 2008 Apple Inc. All rights reserved. 4 4 * Copyright (C) 2003 Peter Kelly ([email protected]) 5 5 * Copyright (C) 2006 Alexey Proskuryakov ([email protected]) … … 721 721 // ------------------------------ ArrayObjectImp ------------------------------- 722 722 723 ArrayObjectImp::ArrayObjectImp(ExecState* exec, 724 FunctionPrototype* funcProto, 725 ArrayPrototype* arrayProto) 726 : InternalFunctionImp(funcProto) 723 ArrayObjectImp::ArrayObjectImp(ExecState* exec, FunctionPrototype* funcProto, ArrayPrototype* arrayProto) 724 : InternalFunctionImp(funcProto, arrayProto->classInfo()->className) 727 725 { 728 726 // ECMA 15.4.3.1 Array.prototype
Note:
See TracChangeset
for help on using the changeset viewer.