Changeset 27320 in webkit for trunk/JavaScriptCore/kjs/regexp_object.h
- Timestamp:
- Oct 31, 2007, 7:46:41 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.h
r27303 r27320 79 79 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); 80 80 JSValue *getValueProperty(ExecState *, int token) const; 81 UString performMatch(RegExp *, const UString&, int startOffset = 0, int *endOffset = 0, int **ovector = 0);82 JSObject *arrayOfMatches(ExecState *exec, const UString &result) const;81 void performMatch(RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0); 82 JSObject* arrayOfMatches(ExecState*) const; 83 83 84 84 virtual const ClassInfo *classInfo() const { return &info; } 85 85 private: 86 86 JSValue *getBackref(unsigned) const; 87 JSValue *getLastMatch() const;88 87 JSValue *getLastParen() const; 89 88 JSValue *getLeftContext() const;
Note:
See TracChangeset
for help on using the changeset viewer.