| 2052 | } |
| 2053 | |
| 2054 | String::HashType TextDocument::getLineHash( Int64 line ) const { |
| 2055 | // eeASSERT( line < (Int64)linesCount() ); |
| 2056 | Lock l( mLinesMutex ); |
| 2057 | return line >= (Int64)mLines.size() ? 0 : mLines[line].getHash(); |
| 2058 | } |
| 2059 | |
| 2060 | String TextDocument::getLineTextWithoutNewLine( Int64 line ) const { |
| 2061 | // eeASSERT( line < (Int64)linesCount() ); |
no test coverage detected