Ignore:
Timestamp:
Jul 5, 2008, 10:26:58 PM (17 years ago)
Author:
[email protected]
Message:

2008-07-05 Sam Weinig <[email protected]>

Reviewed by Cameron Zwarich.

First step in broad cleanup effort.

[ File list elided ]

File:
1 edited

Legend:

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

    r34876 r35022  
    3232namespace KJS {
    3333
    34 ArrayConstructor::ArrayConstructor(ExecState* exec, FunctionPrototype* funcProto, ArrayPrototype* arrayProto)
    35     : InternalFunction(funcProto, Identifier(exec, arrayProto->classInfo()->className))
     34ArrayConstructor::ArrayConstructor(ExecState* exec, FunctionPrototype* functionPrototype, ArrayPrototype* arrayPrototype)
     35    : InternalFunction(functionPrototype, Identifier(exec, arrayPrototype->classInfo()->className))
    3636{
    3737    // ECMA 15.4.3.1 Array.prototype
    38     putDirect(exec->propertyNames().prototype, arrayProto, DontEnum|DontDelete|ReadOnly);
     38    putDirect(exec->propertyNames().prototype, arrayPrototype, DontEnum | DontDelete | ReadOnly);
    3939
    4040    // no. of arguments for constructor
     
    8181}
    8282
    83 }
     83} // namespace KJS
Note: See TracChangeset for help on using the changeset viewer.