Show
Ignore:
Timestamp:
08/18/08 11:14:49 (5 months ago)
Author:
odole
Message:

merge with webkit revision 35814

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/JavaScriptCore/kjs/BooleanConstructor.cpp

    r424 r440  
    2727namespace KJS { 
    2828 
     29ASSERT_CLASS_FITS_IN_CELL(BooleanConstructor); 
     30 
    2931BooleanConstructor::BooleanConstructor(ExecState* exec, FunctionPrototype* functionPrototype, BooleanPrototype* booleanPrototype) 
    30     : InternalFunction(functionPrototype, Identifier(exec, booleanPrototype->classInfo()->className)) 
     32    : InternalFunction(exec, functionPrototype, Identifier(exec, booleanPrototype->classInfo()->className)) 
    3133{ 
    3234    putDirect(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly);