chore(ts2dart): replace List with Array

Closes #3514
This commit is contained in:
Misko Hevery
2015-08-28 11:29:19 -07:00
committed by Miško Hevery
parent 4415855683
commit e916836261
204 changed files with 815 additions and 947 deletions
@@ -18,7 +18,7 @@ import {
import {DOM} from 'angular2/src/core/dom/dom_adapter';
import {List, ListWrapper} from 'angular2/src/core/facade/collection';
import {ListWrapper} from 'angular2/src/core/facade/collection';
import {PromiseWrapper, EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
import {Injectable} from 'angular2/di';
@@ -33,7 +33,7 @@ import {NgFor} from 'angular2/src/core/directives/ng_for';
@Injectable()
class Logger {
log: List<string>;
log: string[];
constructor() { this.log = []; }
@@ -119,7 +119,7 @@ class EventsComp {
})
@Injectable()
class UsingFor {
stuff: List<string>;
stuff: string[];
constructor() { this.stuff = ['one', 'two', 'three']; }
}