| 45 | } |
| 46 | |
| 47 | void TextReader::Save() { |
| 48 | if (!_hasSaveText) { |
| 49 | _hasSaveText = true; |
| 50 | _buffStart = _currentIndex; |
| 51 | } |
| 52 | _buffIndex = _currentIndex; |
| 53 | } |
| 54 | |
| 55 | int TextReader::GetCurrentChar() { |
| 56 | if (!_isEof && _currentIndex < _text.size()) { |
no outgoing calls
no test coverage detected