Changeset 46119 in webkit for trunk/JavaScriptCore/yarr/RegexPattern.h
- Timestamp:
- Jul 20, 2009, 3:03:55 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/yarr/RegexPattern.h
r44174 r46119 58 58 }; 59 59 60 struct CharacterClass {60 struct CharacterClass : FastAllocBase { 61 61 Vector<UChar> m_matches; 62 62 Vector<CharacterRange> m_ranges; … … 182 182 }; 183 183 184 struct PatternAlternative {184 struct PatternAlternative : FastAllocBase { 185 185 PatternAlternative(PatternDisjunction* disjunction) 186 186 : m_parent(disjunction) … … 206 206 }; 207 207 208 struct PatternDisjunction {208 struct PatternDisjunction : FastAllocBase { 209 209 PatternDisjunction(PatternAlternative* parent = 0) 210 210 : m_parent(parent)
Note:
See TracChangeset
for help on using the changeset viewer.