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

    r424 r440  
    3333 
    3434namespace KJS { 
     35 
     36ASSERT_CLASS_FITS_IN_CELL(RegExpConstructor); 
    3537 
    3638const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable }; 
     
    7779 
    7880RegExpConstructor::RegExpConstructor(ExecState* exec, FunctionPrototype* functionPrototype, RegExpPrototype* regExpPrototype) 
    79     : InternalFunction(functionPrototype, Identifier(exec, "RegExp")) 
     81    : InternalFunction(exec, functionPrototype, Identifier(exec, "RegExp")) 
    8082    , d(new RegExpConstructorPrivate) 
    8183{