(filePath: string)
| 126 | } |
| 127 | |
| 128 | setFileClosed(filePath: string): FileDiagnostics[] { |
| 129 | let sourceFileInfo = this._sourceFileMap[filePath]; |
| 130 | if (sourceFileInfo) { |
| 131 | sourceFileInfo.isOpenByClient = false; |
| 132 | sourceFileInfo.sourceFile.setClientVersion(null, ''); |
| 133 | } |
| 134 | |
| 135 | return this._removeUnneededFiles(); |
| 136 | } |
| 137 | |
| 138 | markAllFilesDirty() { |
| 139 | this._sourceFileList.forEach(sourceFileInfo => { |
no test coverage detected