Changeset 10076 in webkit for trunk/JavaScriptCore/kjs/regexp_object.h
- Timestamp:
- Aug 6, 2005, 11:17:49 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp_object.h
r9889 r10076 75 75 virtual Value call(ExecState *exec, Object &thisObj, const List &args); 76 76 77 virtual bool getOwnProperty (ExecState *exec, const Identifier& propertyName, Value& result) const;77 virtual bool getOwnPropertySlot(ExecState *, const Identifier&, PropertySlot&); 78 78 int ** registerRegexp( const RegExp* re, const UString& s ); 79 79 void setSubPatterns(int num) { lastNrSubPatterns = num; } 80 80 Object arrayOfMatches(ExecState *exec, const UString &result) const; 81 81 private: 82 static Value backrefGetter(ExecState *exec, const Identifier&, const PropertySlot& slot); 83 82 84 UString lastString; 83 85 int *lastOvector;
Note:
See TracChangeset
for help on using the changeset viewer.