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
@@ -7,7 +7,6 @@ import {
BaseException
} from "angular2/src/core/facade/lang";
import {
List,
ListWrapper,
Map,
StringMap,
@@ -119,7 +118,7 @@ export class Serializer {
return null;
}
if (isArray(map)) {
var obj: List<any> = new List<any>();
var obj: any[] = [];
ListWrapper.forEach(map, (val) => { obj.push(this.deserialize(val, type, data)); });
return obj;
}