()
| 66 | } |
| 67 | |
| 68 | async openEditorWindow(): Promise<void> { |
| 69 | if (typeof arguments[0] === 'string') { |
| 70 | await this[workspaceSymbol].openEditorWindow(arguments[0], arguments[1], arguments[2], arguments[3], arguments[4]); |
| 71 | } else { |
| 72 | await this[workspaceSymbol].openEditorWindowByResource(arguments[0]?.[resourceSymbol], arguments[1]); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | openEditorWindowById(id: string) { |
| 77 | this[workspaceSymbol].openEditorWindowById(id); |
nothing calls this directly
no test coverage detected