| 1982 | } |
| 1983 | |
| 1984 | TextPosition TextDocument::startOfLine( TextPosition position ) const { |
| 1985 | position = sanitizePosition( position ); |
| 1986 | return TextPosition( position.line(), 0 ); |
| 1987 | } |
| 1988 | |
| 1989 | TextPosition TextDocument::endOfLine( TextPosition position ) const { |
| 1990 | position = sanitizePosition( position ); |
no test coverage detected