Changeset 162906 in webkit for trunk/Source/JavaScriptCore/yarr/YarrParser.h
- Timestamp:
- Jan 27, 2014, 8:04:45 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/yarr/YarrParser.h
r140594 r162906 120 120 } 121 121 // Otherwise just fall through - cached character so treat this as Empty. 122 FALLTHROUGH; 122 123 123 124 case Empty: … … 169 170 // Flush the currently cached character, then fall through. 170 171 m_delegate.atomCharacterClassAtom(m_character); 171 172 FALLTHROUGH; 172 173 case Empty: 173 174 case AfterCharacterClass: … … 187 188 m_delegate.atomCharacterClassAtom(m_character); 188 189 m_delegate.atomCharacterClassAtom('-'); 189 // fall through190 FALLTHROUGH; 190 191 case AfterCharacterClassHyphen: 191 192 m_delegate.atomCharacterClassBuiltIn(classID, invert); … … 350 351 351 352 // Fall-through to handle this as an octal escape. 353 FALLTHROUGH; 352 354 } 353 355 … … 657 659 658 660 restoreState(state); 659 } // if we did not find a complete quantifer, fall through to the default case. 661 } 662 // if we did not find a complete quantifer, fall through to the default case. 663 FALLTHROUGH; 660 664 661 665 default:
Note:
See TracChangeset
for help on using the changeset viewer.