diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-01-21 19:00:26 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-01-21 19:42:57 +0100 |
commit | 9486dd0692e08b3770bee8f3be2292263c6e5d26 (patch) | |
tree | f41fa78dbd7fa8c0f639fe6ccd03fda15262e971 /i18npool | |
parent | 331a0a347e2ed238ff41c8cd7815b946cc95ac0f (diff) |
i18npool: why not document the state transitions
Change-Id: Ica5789dab22a49efb9e2da3a795e13aa7e2c4339
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/inc/cclass_unicode.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/i18npool/inc/cclass_unicode.hxx b/i18npool/inc/cclass_unicode.hxx index e88530a92e41..cbcb6f9baaa7 100644 --- a/i18npool/inc/cclass_unicode.hxx +++ b/i18npool/inc/cclass_unicode.hxx @@ -75,16 +75,16 @@ private: enum ScanState { - ssGetChar, - ssGetValue, - ssGetWord, - ssGetWordFirstChar, - ssGetString, - ssGetBool, - ssRewindFromValue, - ssIgnoreLeadingInRewind, - ssStopBack, - ssBounce, + ssGetChar, // initial state; -> ssBounce, ssGetValue, ssRewindFromValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop + ssGetValue, // -> ssBounce, ssRewindFromValue, ssStopBack, ssGetWord + ssGetWord, // -> ssBounce, ssStop, ssStopBack + ssGetWordFirstChar, // -> ssBounce, ssGetWord, ssStop, ssStopBack + ssGetString, // -> ssBounce, ssStop + ssGetBool, // -> ssBounce, ssStop, ssStopBack + ssRewindFromValue, // -> ssBounce, ssGetValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop, ssIgnoreLeadingInRewind + ssIgnoreLeadingInRewind, // -> ssBounce, ssGetValue, ssRewindFromValue, ssGetWord, ssGetWordFirstChar, ssGetString, ssGetBool, ssStop + ssStopBack, // -> ssStop + ssBounce, // -> ssStopBack ssStop }; |