()
| 78 | } |
| 79 | |
| 80 | removeEditorWindow() { |
| 81 | if (typeof arguments[0] === 'string') { |
| 82 | this[workspaceSymbol].removeEditorWindow(arguments[0], arguments[1]); |
| 83 | } else { |
| 84 | this[workspaceSymbol].removeEditorWindowByResource(arguments[0]?.[resourceSymbol]); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | removeEditorWindowById(id: string) { |
| 89 | this[workspaceSymbol].removeEditorWindowById(id); |
nothing calls this directly
no test coverage detected