Changeset 91194 in webkit for trunk/Source/JavaScriptCore/runtime/RegExpMatchesArray.h
- Timestamp:
- Jul 18, 2011, 10:47:13 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/RegExpMatchesArray.h
r55262 r91194 26 26 27 27 class RegExpMatchesArray : public JSArray { 28 private: 29 RegExpMatchesArray(ExecState*, RegExpConstructorPrivate*); 30 28 31 public: 29 RegExpMatchesArray(ExecState*, RegExpConstructorPrivate*); 32 static RegExpMatchesArray* create(ExecState* exec, RegExpConstructorPrivate* ctorPrivate) 33 { 34 return new (allocateCell<RegExpMatchesArray>(*exec->heap())) RegExpMatchesArray(exec, ctorPrivate); 35 } 30 36 virtual ~RegExpMatchesArray(); 31 37
Note:
See TracChangeset
for help on using the changeset viewer.