Changeset 440 for trunk/JavaScriptCore/kjs/NativeErrorConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/NativeErrorConstructor.cpp
r424 r440 29 29 namespace KJS { 30 30 31 ASSERT_CLASS_FITS_IN_CELL(NativeErrorConstructor); 32 31 33 const ClassInfo NativeErrorConstructor::info = { "Function", &InternalFunction::info, 0, 0 }; 32 34 33 35 NativeErrorConstructor::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())) 35 37 , m_proto(nativeErrorPrototype) 36 38 {
