Skip to content

Commit 371c3c6

Browse files
committed
remove TODO comments
1 parent 23a3b34 commit 371c3c6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/compiler/emitter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2693,7 +2693,7 @@ namespace ts {
26932693
writeKeyword("function");
26942694
emit(node.asteriskToken);
26952695
writeSpace();
2696-
emitIdentifierName(node.name); // TODO: GH#18217
2696+
emitIdentifierName(node.name);
26972697
emitSignatureAndBody(node, emitSignatureHead);
26982698
}
26992699

src/server/editorServices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1804,7 +1804,7 @@ namespace ts.server {
18041804
}
18051805
project.enablePluginsWithOptions(compilerOptions, this.currentPluginConfigOverrides);
18061806
const filesToAdd = parsedCommandLine.fileNames.concat(project.getExternalFiles());
1807-
this.updateRootAndOptionsOfNonInferredProject(project, filesToAdd, fileNamePropertyReader, compilerOptions, parsedCommandLine.typeAcquisition!, parsedCommandLine.compileOnSave); // TODO: GH#18217
1807+
this.updateRootAndOptionsOfNonInferredProject(project, filesToAdd, fileNamePropertyReader, compilerOptions, parsedCommandLine.typeAcquisition!, parsedCommandLine.compileOnSave);
18081808
}
18091809

18101810
private updateNonInferredProjectFiles<T>(project: ExternalProject | ConfiguredProject, files: T[], propertyReader: FilePropertyReader<T>) {

src/testRunner/unittests/tsserver/cachingFileSystemInformation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ namespace ts.projectSystem {
388388
const projectService = createProjectService(host);
389389
const canonicalConfigPath = toCanonical(tsconfigFile.path);
390390
const { configFileName } = projectService.openClientFile(file1.path);
391-
assert.equal(configFileName, tsconfigFile.path as server.NormalizedPath, `should find config`); // TODO: GH#18217
391+
assert.equal(configFileName, tsconfigFile.path as server.NormalizedPath, `should find config`);
392392
checkNumberOfConfiguredProjects(projectService, 1);
393393
const watchingRecursiveDirectories = [`${canonicalFrontendDir}/src`, `${canonicalFrontendDir}/types`, `${canonicalFrontendDir}/node_modules`].concat(getNodeModuleDirectories(getDirectoryPath(canonicalFrontendDir)));
394394

0 commit comments

Comments
 (0)