Changeset 440 for trunk/JavaScriptCore/kjs/NumberConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/NumberConstructor.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/NumberConstructor.cpp
r424 r440 29 29 namespace KJS { 30 30 31 ASSERT_CLASS_FITS_IN_CELL(NumberConstructor); 32 31 33 const ClassInfo NumberConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::numberTable }; 32 34 … … 41 43 */ 42 44 NumberConstructor::NumberConstructor(ExecState* exec, FunctionPrototype* functionPrototype, NumberPrototype* numberPrototype) 43 : InternalFunction( functionPrototype, Identifier(exec, numberPrototype->info.className))45 : InternalFunction(exec, functionPrototype, Identifier(exec, numberPrototype->info.className)) 44 46 { 45 47 // Number.Prototype
