([targets]: [TypedSelection[]])
| 16 | } |
| 17 | |
| 18 | async run([targets]: [TypedSelection[]]): Promise<ActionReturnValue> { |
| 19 | ensureSingleTarget(targets); |
| 20 | |
| 21 | const { |
| 22 | returnValue: [query], |
| 23 | thatMark, |
| 24 | } = await this.graph.actions.getText.run([targets]); |
| 25 | |
| 26 | await commands.executeCommand("workbench.action.findInFiles", { |
| 27 | query, |
| 28 | }); |
| 29 | |
| 30 | return { thatMark }; |
| 31 | } |
| 32 | } |
nothing calls this directly
no test coverage detected