()
| 68 | } |
| 69 | |
| 70 | private async printSelectionToTerminal() { |
| 71 | const editor = getActiveRealFileEditor(); |
| 72 | const selection = editor?.selection; |
| 73 | const text = editor?.document?.getText(selection); |
| 74 | |
| 75 | if (text) { |
| 76 | writeToPseudoTerminal([text]); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | private toggleDartdocComment() { |
| 81 | return this.toggleLineComment(true); |
nothing calls this directly
no test coverage detected