Changeset 440 for trunk/JavaScriptCore/kjs/FunctionConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/FunctionConstructor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/FunctionConstructor.cpp
r424 r440 33 33 namespace KJS { 34 34 35 ASSERT_CLASS_FITS_IN_CELL(FunctionConstructor); 36 35 37 FunctionConstructor::FunctionConstructor(ExecState* exec, FunctionPrototype* functionPrototype) 36 : InternalFunction( functionPrototype, Identifier(exec, functionPrototype->classInfo()->className))38 : InternalFunction(exec, functionPrototype, Identifier(exec, functionPrototype->classInfo()->className)) 37 39 { 38 40 putDirect(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly);
