Changeset 12523 in webkit for trunk/JavaScriptCore/kjs/regexp_object.h
- Timestamp:
- Feb 2, 2006, 12:22:43 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.h
r12317 r12523 26 26 #include "function_object.h" 27 27 #include "regexp.h" 28 #include <kxmlcore/OwnArrayPtr.h> 28 29 29 30 namespace KJS { … … 72 73 FunctionPrototype *funcProto, 73 74 RegExpPrototype *regProto); 74 virtual ~RegExpObjectImp();75 75 virtual bool implementsConstruct() const; 76 76 virtual JSObject *construct(ExecState *exec, const List &args); … … 96 96 bool multiline; 97 97 UString lastInput; 98 int *lastOvector;98 OwnArrayPtr<int> lastOvector; 99 99 unsigned lastNumSubPatterns; 100 100
Note:
See TracChangeset
for help on using the changeset viewer.