Changeset 35807 in webkit for trunk/JavaScriptCore/kjs/ObjectConstructor.cpp
- Timestamp:
- Aug 17, 2008, 1:23:49 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/ObjectConstructor.cpp
r35411 r35807 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
Note:
See TracChangeset
for help on using the changeset viewer.