| 2040 | } |
| 2041 | |
| 2042 | String TextDocument::getLineText( Int64 line ) const { |
| 2043 | // eeASSERT( line < (Int64)linesCount() ); |
| 2044 | Lock l( mLinesMutex ); |
| 2045 | return line >= (Int64)mLines.size() ? String() : mLines[line].getText(); |
| 2046 | } |
| 2047 | |
| 2048 | String TextDocument::getLineTextSubStr( Int64 line, std::size_t pos, std::size_t n ) const { |
| 2049 | // eeASSERT( line < (Int64)linesCount() ); |
no test coverage detected