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/FunctionConstructor.cpp

    r424 r440  
    3333namespace KJS { 
    3434 
     35ASSERT_CLASS_FITS_IN_CELL(FunctionConstructor); 
     36 
    3537FunctionConstructor::FunctionConstructor(ExecState* exec, FunctionPrototype* functionPrototype) 
    36     : InternalFunction(functionPrototype, Identifier(exec, functionPrototype->classInfo()->className)) 
     38    : InternalFunction(exec, functionPrototype, Identifier(exec, functionPrototype->classInfo()->className)) 
    3739{ 
    3840    putDirect(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly);