Changeset 67146 in webkit for trunk/JavaScriptCore/runtime/RegExp.h
- Timestamp:
- Sep 9, 2010, 7:10:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RegExp.h
r66936 r67146 49 49 int match(const UString&, int startOffset, Vector<int, 32>* ovector = 0); 50 50 unsigned numSubpatterns() const { return m_numSubpatterns; } 51 52 #if ENABLE(REGEXP_TRACING) 53 void printTraceData(); 54 #endif 51 55 52 56 private: … … 61 65 const char* m_constructionError; 62 66 unsigned m_numSubpatterns; 63 67 #if ENABLE(REGEXP_TRACING) 68 unsigned m_rtMatchCallCount; 69 unsigned m_rtMatchFoundCount; 70 #endif 71 64 72 OwnPtr<RegExpRepresentation> m_representation; 65 73 };
Note:
See TracChangeset
for help on using the changeset viewer.