| 2614 | } |
| 2615 | |
| 2616 | String TextDocument::getWordInPosition( const TextPosition& pos, bool basedOnHighlighter ) { |
| 2617 | return getText( getWordRangeInPosition( pos, basedOnHighlighter ) ); |
| 2618 | } |
| 2619 | |
| 2620 | String TextDocument::getWordInPosition( bool basedOnHighlighter ) { |
| 2621 | return getWordInPosition( getSelection().start(), basedOnHighlighter ); |
no test coverage detected