| 52 | |
| 53 | template<class Scanner> |
| 54 | PIRE_FORCED_INLINE PIRE_HOT_FUNCTION |
| 55 | void Step(const Scanner& scanner, typename Scanner::State& state, Char ch) |
| 56 | { |
| 57 | Y_ASSERT(ch < MaxCharUnaligned); |
| 58 | typename Scanner::Action a = scanner.Next(state, ch); |
| 59 | scanner.TakeAction(state, a); |
| 60 | } |
| 61 | |
| 62 | namespace Impl { |
| 63 |
no test coverage detected