Changeset 34582 in webkit for trunk/JavaScriptCore/kjs/RegExpObject.cpp
- Timestamp:
- Jun 15, 2008, 9:17:44 PM (17 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/RegExpObject.cpp
r34581 r34582 20 20 21 21 #include "config.h" 22 #include " regexp_object.h"23 #include " regexp_object.lut.h"24 25 #include " array_instance.h"26 #include " array_object.h"22 #include "RegExpObject.h" 23 #include "RegExpObject.lut.h" 24 25 #include "JSArray.h" 26 #include "ArrayPrototype.h" 27 27 #include "error_object.h" 28 28 #include "JSString.h" … … 125 125 const ClassInfo RegExpObject::info = { "RegExp", 0, 0, ExecState::regExpTable }; 126 126 127 /* Source for regexp_object.lut.h127 /* Source for RegExpObject.lut.h 128 128 @begin regExpTable 5 129 129 global RegExpObject::Global DontDelete|ReadOnly|DontEnum … … 245 245 const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable }; 246 246 247 /* Source for regexp_object.lut.h247 /* Source for RegExpObject.lut.h 248 248 @begin regExpConstructorTable 21 249 249 input RegExpConstructor::Input None
Note:
See TracChangeset
for help on using the changeset viewer.