Addressed CR feedback.

This commit is contained in:
Daniel Rosenwasser 2015-12-17 22:00:04 -08:00
parent 75678de6d9
commit 287b316937
2 changed files with 1 additions and 3 deletions

View File

@ -555,7 +555,6 @@ namespace ts.server {
}
handleProjectFilelistChanges(project: Project) {
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
const { projectOptions } = this.configFileToProjectOptions(project.projectFilename);
const newRootFiles = projectOptions.files.map((f => this.getCanonicalFileName(f)));
@ -585,7 +584,6 @@ namespace ts.server {
this.log("Detected newly added tsconfig file: " + fileName);
// TODO: Ignoring potentially returned 'error' and 'succeeded' condition
const { projectOptions } = this.configFileToProjectOptions(fileName);
const rootFilesInTsconfig = projectOptions.files.map(f => this.getCanonicalFileName(f));

View File

@ -1,6 +1,6 @@
/// <reference path="..\..\..\src\harness\harness.ts" />
var expect: typeof _chai.expect = _chai.expect;
const expect: typeof _chai.expect = _chai.expect;
namespace ts.server {
let lastWrittenToHost: string;