Changeset 1623 in webkit for trunk/JavaScriptCore/kjs/regexp.h
- Timestamp:
- Jul 21, 2002, 10:38:39 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp.h
r1024 r1623 45 45 RegExp(const UString &p, int f = None); 46 46 ~RegExp(); 47 int flags() const { return flgs; } 47 48 UString match(const UString &s, int i = -1, int *pos = 0L, int **ovector = 0L); 48 49 // test is unused. The JS spec says that RegExp.test should use … … 52 53 private: 53 54 const UString &pattern; 54 int fl ags;55 int flgs; 55 56 56 57 #ifndef HAVE_PCREPOSIX
Note:
See TracChangeset
for help on using the changeset viewer.