Changeset 440 for trunk/JavaScriptCore/kjs/BooleanConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/BooleanConstructor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/BooleanConstructor.cpp
r424 r440 27 27 namespace KJS { 28 28 29 ASSERT_CLASS_FITS_IN_CELL(BooleanConstructor); 30 29 31 BooleanConstructor::BooleanConstructor(ExecState* exec, FunctionPrototype* functionPrototype, BooleanPrototype* booleanPrototype) 30 : InternalFunction( functionPrototype, Identifier(exec, booleanPrototype->classInfo()->className))32 : InternalFunction(exec, functionPrototype, Identifier(exec, booleanPrototype->classInfo()->className)) 31 33 { 32 34 putDirect(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly);
