Changeset 27702 in webkit for trunk/JavaScriptCore/kjs/regexp.h
- Timestamp:
- Nov 11, 2007, 8:27:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/regexp.h
r27686 r27702 47 47 int refCount() { return m_refCount; } 48 48 49 bool global() const { return m_flags & Global; } 50 bool ignoreCase() const { return m_flags & IgnoreCase; } 51 bool multiline() const { return m_flags & Multiline; } 49 bool global() const { return m_flagBits & Global; } 50 bool ignoreCase() const { return m_flagBits & IgnoreCase; } 51 bool multiline() const { return m_flagBits & Multiline; } 52 52 53 const UString& pattern() const { return m_pattern; } 54 const UString& flags() const { return m_flags; } 53 55 54 56 bool isValid() const { return !m_constructionError; } … … 64 66 65 67 // Data supplied by caller. 66 UString m_pattern; 67 int m_flags; 68 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 int m_flagBits; 68 71 69 72 // Data supplied by PCRE.
Note:
See TracChangeset
for help on using the changeset viewer.