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

    r424 r440  
    2929namespace KJS { 
    3030 
     31ASSERT_CLASS_FITS_IN_CELL(NativeErrorConstructor); 
     32 
    3133const ClassInfo NativeErrorConstructor::info = { "Function", &InternalFunction::info, 0, 0 }; 
    3234 
    3335NativeErrorConstructor::NativeErrorConstructor(ExecState* exec, FunctionPrototype* functionPrototype, NativeErrorPrototype* nativeErrorPrototype) 
    34     : InternalFunction(functionPrototype, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name)->getString())) 
     36    : InternalFunction(exec, functionPrototype, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name)->getString())) 
    3537    , m_proto(nativeErrorPrototype) 
    3638{