(document: vscode.TextDocument)
| 185 | } |
| 186 | |
| 187 | static getDocumentRange(document: vscode.TextDocument): vscode.Range { |
| 188 | return new vscode.Range(TextEditor.getDocumentBegin(), TextEditor.getDocumentEnd(document)); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * @returns the Position of the first character on the given line which is not whitespace. |
no test coverage detected