Changeset 52983 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Jan 8, 2010, 3:32:55 AM (15 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RegExp.cpp
r45545 r52983 66 66 inline RegExp::RegExp(JSGlobalData* globalData, const UString& pattern, const UString& flags) 67 67 : m_pattern(pattern) 68 , m_flags(flags)69 68 , m_flagBits(0) 70 69 , m_constructionError(0) -
trunk/JavaScriptCore/runtime/RegExp.h
r45545 r52983 50 50 51 51 const UString& pattern() const { return m_pattern; } 52 const UString& flags() const { return m_flags; }53 52 54 53 bool isValid() const { return !m_constructionError; } … … 67 66 68 67 UString m_pattern; // FIXME: Just decompile m_regExp instead of storing this. 69 UString m_flags; // FIXME: Just decompile m_regExp instead of storing this.70 68 int m_flagBits; 71 69 const char* m_constructionError;
Note:
See TracChangeset
for help on using the changeset viewer.