Changeset 13015 in webkit for trunk/JavaScriptCore/kjs/regexp_object.cpp
- Timestamp:
- Feb 27, 2006, 1:36:56 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.cpp
r12921 r13015 185 185 */ 186 186 187 RegExpObjectImp::RegExpObjectImp(ExecState *exec, 188 FunctionPrototype *funcProto, 189 RegExpPrototype *regProto) 187 RegExpObjectImp::RegExpObjectImp(ExecState*, FunctionPrototype* funcProto, RegExpPrototype* regProto) 190 188 191 189 : InternalFunctionImp(funcProto), multiline(false), lastInput(""), lastNumSubPatterns(0) … … 305 303 } 306 304 307 JSValue *RegExpObjectImp::getValueProperty(ExecState *exec, int token) const305 JSValue *RegExpObjectImp::getValueProperty(ExecState*, int token) const 308 306 { 309 307 switch (token) { … … 350 348 } 351 349 352 void RegExpObjectImp::putValueProperty(ExecState *exec, int token, JSValue *value, int attr)350 void RegExpObjectImp::putValueProperty(ExecState *exec, int token, JSValue *value, int) 353 351 { 354 352 switch (token) {
Note:
See TracChangeset
for help on using the changeset viewer.