refactor(compiler): improve types, misc

This commit is contained in:
Victor Berchet
2016-10-07 17:36:08 -07:00
committed by Tobias Bosch
parent 79e1c7b807
commit bdcf46f82e
26 changed files with 115 additions and 119 deletions

View File

@ -67,7 +67,7 @@ export class MockResourceLoader extends ResourceLoader {
verifyNoOutstandingExpectations() {
if (this._expectations.length === 0) return;
var urls: any[] /** TODO #9100 */ = [];
var urls: string[] = [];
for (var i = 0; i < this._expectations.length; i++) {
var expectation = this._expectations[i];
urls.push(expectation.url);