| 53 | } |
| 54 | |
| 55 | int TextReader::GetCurrentChar() { |
| 56 | if (!_isEof && _currentIndex < _text.size()) { |
| 57 | unsigned char ch = _text[_currentIndex]; |
| 58 | return ch; |
| 59 | } |
| 60 | return EOZ; |
| 61 | } |
| 62 | |
| 63 | bool TextReader::CheckNext1(int ch) { |
| 64 | if (_currentIndex < _text.size() && _text[_currentIndex] == ch) { |
no test coverage detected