| 95 | } |
| 96 | |
| 97 | std::string_view TextReader::GetSaveText() const { |
| 98 | if (_hasSaveText) { |
| 99 | return _text.substr(_buffStart, _buffIndex - _buffStart + 1); |
| 100 | } |
| 101 | return _text.substr(_buffStart, 0); |
| 102 | } |
| 103 | |
| 104 | bool TextReader::IsEof() const { |
| 105 | return _isEof; |
no outgoing calls
no test coverage detected