Changeset 440 for trunk/JavaScriptCore/kjs/ObjectConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/ObjectConstructor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/ObjectConstructor.cpp
r424 r440 28 28 namespace KJS { 29 29 30 ASSERT_CLASS_FITS_IN_CELL(ObjectConstructor); 31 30 32 ObjectConstructor::ObjectConstructor(ExecState* exec, ObjectPrototype* objectPrototype, FunctionPrototype* functionPrototype) 31 : InternalFunction( functionPrototype, Identifier(exec, "Object"))33 : InternalFunction(exec, functionPrototype, Identifier(exec, "Object")) 32 34 { 33 35 // ECMA 15.2.3.1
