8000 Addressed CR feedback. · johnangularjs/TypeScript@287b316 · GitHub
[go: up one dir, main page]

Skip to content

Commit 287b316

Browse files
Addressed CR feedback.
1 parent 75678de commit 287b316

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/server/editorServices.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@ namespace ts.server {
555555
}
556556

557557
handleProjectFilelistChanges(project: Project) {
558-
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
559558
const { projectOptions } = this.configFileToProjectOptions(project.projectFilename);
560559

561560
const newRootFiles = projectOptions.files.map((f => this.getCanonicalFileName(f)));
@@ -585,7 +584,6 @@ namespace ts.server {
585584

586585
this.log("Detected newly added tsconfig file: " + fileName);
587586

588-
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
589587
const { projectOptions } = this.configFileToProjectOptions(fileName);
590588

591589
const rootFilesInTsconfig = projectOptions.files.map(f => this.getCanonicalFileName(f));

tests/cases/unittests/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference path="..\..\..\src\harness\harness.ts" />
22

3-
var expect: typeof _chai.expect = _chai.expect;
3+
const expect: typeof _chai.expect = _chai.expect;
44

55
namespace ts.server {
66
let lastWrittenToHost: string;

0 commit comments

Comments
 (0)
0