fix(7837): MetadataCollector takes no parameters for the constructor.

MetadataCollector no longer requires a ts.LanguageService parameter
it didn't use.

Closes #7838
This commit is contained in:
Chuck Jazdzewski
2016-03-30 15:00:55 -07:00
parent 09a95a692e
commit c17dc1c057
5 changed files with 7 additions and 7 deletions

View File

@ -93,7 +93,7 @@ class DiffingTSCompiler implements DiffingBroccoliPlugin {
this.tsServiceHost = new CustomLanguageServiceHost(this.tsOpts, this.rootFilePaths,
this.fileRegistry, this.inputPath);
this.tsService = ts.createLanguageService(this.tsServiceHost, ts.createDocumentRegistry());
this.metadataCollector = new MetadataCollector(this.tsService);
this.metadataCollector = new MetadataCollector();
}