feat(dart/transform): Introduce @AngularEntrypoint()

This commit is contained in:
Tim Blasi
2015-11-20 16:35:55 -08:00
committed by vsavkin
parent 3e364b0d41
commit 6b2ef25c69
7 changed files with 34 additions and 5 deletions

View File

@ -1,3 +1,4 @@
export {AngularEntrypoint} from 'angular2/src/core/angular_entrypoint';
export {
BROWSER_PROVIDERS,
ELEMENT_PROBE_BINDINGS,
@ -10,13 +11,13 @@ export {
disableDebugTools
} from 'angular2/src/platform/browser_common';
import {Type, isPresent, CONST_EXPR} from 'angular2/src/facade/lang';
import {Type, isPresent} from 'angular2/src/facade/lang';
import {Promise} from 'angular2/src/facade/promise';
import {
BROWSER_PROVIDERS,
BROWSER_APP_COMMON_PROVIDERS
} from 'angular2/src/platform/browser_common';
import {ComponentRef, platform, reflector} from 'angular2/core';
import {ComponentRef, platform} from 'angular2/core';
/**
* An array of providers that should be passed into `application()` when bootstrapping a component
@ -39,4 +40,4 @@ export function bootstrapStatic(appComponentType: Type,
let appProviders =
isPresent(customProviders) ? [BROWSER_APP_PROVIDERS, customProviders] : BROWSER_APP_PROVIDERS;
return platform(BROWSER_PROVIDERS).application(appProviders).bootstrap(appComponentType);
}
}