Changeset 27413 in webkit for trunk/JavaScriptCore/kjs/regexp_object.cpp
- Timestamp:
- Nov 3, 2007, 6:08:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.cpp
r27405 r27413 41 41 // ECMA 15.10.5 42 42 43 const ClassInfo RegExpPrototype::info = { "RegExpPrototype", 0, 0, 0};43 const ClassInfo RegExpPrototype::info = { "RegExpPrototype", 0, 0 }; 44 44 45 45 RegExpPrototype::RegExpPrototype(ExecState *exec, … … 152 152 // ------------------------------ RegExpImp ------------------------------------ 153 153 154 const ClassInfo RegExpImp::info = { "RegExp", 0, 0, 0};154 const ClassInfo RegExpImp::info = { "RegExp", 0, 0 }; 155 155 156 156 RegExpImp::RegExpImp(RegExpPrototype* regexpProto, RegExp* exp) … … 226 226 // ------------------------------ RegExpObjectImp ------------------------------ 227 227 228 const ClassInfo RegExpObjectImp::info = { "Function", &InternalFunctionImp::info, &RegExpTable, 0};228 const ClassInfo RegExpObjectImp::info = { "Function", &InternalFunctionImp::info, &RegExpTable }; 229 229 230 230 /* Source for regexp_object.lut.h
Note:
See TracChangeset
for help on using the changeset viewer.