@@ -33,7 +33,7 @@ import {StyleInliner} from 'angular2/src/core/render/dom/compiler/style_inliner'
3333import { ViewResolver } from './compiler/view_resolver' ;
3434import { DirectiveResolver } from './compiler/directive_resolver' ;
3535import { PipeResolver } from './compiler/pipe_resolver' ;
36- import { List , ListWrapper } from 'angular2/src/core/facade/collection' ;
36+ import { ListWrapper } from 'angular2/src/core/facade/collection' ;
3737import { Promise , PromiseWrapper , PromiseCompleter } from 'angular2/src/core/facade/async' ;
3838import { NgZone } from 'angular2/src/core/zone/ng_zone' ;
3939import { LifeCycle } from 'angular2/src/core/life_cycle/life_cycle' ;
@@ -84,7 +84,7 @@ var _rootInjector: Injector;
8484// Contains everything that is safe to share between applications.
8585var _rootBindings = [ bind ( Reflector ) . toValue ( reflector ) , TestabilityRegistry ] ;
8686
87- function _injectorBindings ( appComponentType ) : List < Type | Binding | List < any > > {
87+ function _injectorBindings ( appComponentType ) : Array < Type | Binding | any [ ] > {
8888 var bestChangeDetection = new DynamicChangeDetection ( ) ;
8989 if ( PreGeneratedChangeDetection . isSupported ( ) ) {
9090 bestChangeDetection = new PreGeneratedChangeDetection ( ) ;
@@ -290,9 +290,9 @@ export function createNgZone(): NgZone {
290290 *
291291 * Returns a `Promise` of {@link ApplicationRef}.
292292 */
293- export function commonBootstrap (
294- appComponentType : /* Type*/ any ,
295- componentInjectableBindings : List < Type | Binding | List < any > > = null ) : Promise < ApplicationRef > {
293+ export function commonBootstrap ( appComponentType : /*Type*/ any ,
294+ componentInjectableBindings : Array < Type | Binding | any [ ] > = null ) :
295+ Promise < ApplicationRef > {
296296 BrowserDomAdapter . makeCurrent ( ) ;
297297 wtfInit ( ) ;
298298 var bootstrapProcess = PromiseWrapper . completer ( ) ;
@@ -338,7 +338,7 @@ export function commonBootstrap(
338338 return bootstrapProcess . promise ;
339339}
340340
341- function _createAppInjector ( appComponentType : Type , bindings : List < Type | Binding | List < any > > ,
341+ function _createAppInjector ( appComponentType : Type , bindings : Array < Type | Binding | any [ ] > ,
342342 zone : NgZone ) : Injector {
343343 if ( isBlank ( _rootInjector ) ) _rootInjector = Injector . resolveAndCreate ( _rootBindings ) ;
344344 var mergedBindings : any [ ] =
0 commit comments