Changeset 440 for trunk/JavaScriptCore/kjs/RegExpConstructor.cpp
- Timestamp:
- 08/18/08 11:14:49 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/RegExpConstructor.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/RegExpConstructor.cpp
r424 r440 33 33 34 34 namespace KJS { 35 36 ASSERT_CLASS_FITS_IN_CELL(RegExpConstructor); 35 37 36 38 const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable }; … … 77 79 78 80 RegExpConstructor::RegExpConstructor(ExecState* exec, FunctionPrototype* functionPrototype, RegExpPrototype* regExpPrototype) 79 : InternalFunction( functionPrototype, Identifier(exec, "RegExp"))81 : InternalFunction(exec, functionPrototype, Identifier(exec, "RegExp")) 80 82 , d(new RegExpConstructorPrivate) 81 83 {
