Update the todo list

This commit is contained in:
Sheetal Nandi 2017-07-07 10:43:21 -07:00
parent 0e4436774d
commit 2a63827891
2 changed files with 4 additions and 15 deletions

View File

@ -674,11 +674,6 @@ namespace ts.server {
return;
}
// TODO: (sheetalkamat) Technically we shouldnt have to do this:
// We can report these errors in reload projects or after reload project?
const { configFileErrors } = this.convertConfigFileContentToProjectOptions(fileName);
this.reportConfigFileDiagnostics(fileName, configFileErrors, fileName);
this.logger.info(`Detected newly added tsconfig file: ${fileName}`);
this.reloadProjects();
}
@ -1262,9 +1257,6 @@ namespace ts.server {
private reloadConfiguredProject(project: ConfiguredProject) {
// At this point, there is no reason to not have configFile in the host
// TODO: (sheetalkamat) configErrors should always be in project and there shouldnt be
// any need to return these errors
// note: the returned "success" is true does not mean the "configFileErrors" is empty.
// because we might have tolerated the errors and kept going. So always return the configFileErrors
// regardless the "success" here is true or not.
@ -1273,8 +1265,9 @@ namespace ts.server {
// reset project settings to default
this.updateNonInferredProject(project, [], fileNamePropertyReader, {}, {}, /*compileOnSave*/ false, configFileErrors);
}
return this.updateConfiguredProject(project, projectOptions, configFileErrors);
else {
this.updateConfiguredProject(project, projectOptions, configFileErrors);
}
}
/**
@ -1286,7 +1279,7 @@ namespace ts.server {
project.setCompilerOptions(projectOptions.compilerOptions);
if (!project.languageServiceEnabled) {
// language service is already disabled
return configFileErrors;
project.setProjectErrors(configFileErrors);
}
project.disableLanguageService();
project.stopWatchingDirectory();

View File

@ -649,10 +649,6 @@ namespace ts.server {
for (const missingFilePath of missingFilePaths) {
if (!this.missingFilesMap.has(missingFilePath)) {
const fileWatcher = this.projectService.host.watchFile(missingFilePath, (_filename: string, eventKind: FileWatcherEventKind) => {
// TODO: (sheetalkamat) This needs to be fixed because of the way we create the projects
// Eg. ConfiguredProject and ExternalProject add roots only for existing files
// What this means is that if the file is not present when creating the project
// the program structure will not change because we created wrong program.
if (eventKind === FileWatcherEventKind.Created && this.missingFilesMap.has(missingFilePath)) {
fileWatcher.close();
this.missingFilesMap.delete(missingFilePath);