angular-cn/modules/angular2/platform
Tobias Bosch 9092ac79d4 refactor(core): support non reflective bootstrap.
This changes Angular so that it can be used without reflection (assuming a codegen for injectors).

BREAKIKNG CHANGE:
- Drops `APP_COMPONENT` provider. Instead, inject
  `ApplicationRef` and read its `componentTypes` property.
- long form bootstrap has changed into the following:
  ```
  var platform = createPlatform(ReflectiveInjector.resolveAndCreate(BROWSER_PROVIDERS));
  var appInjector =
    ReflectiveInjector.resolveAndCreate([BROWSER_APP_PROVIDERS, appProviders], platform.injector);
  coreLoadAndBootstrap(appInjector, MyApp);
  ```
2016-04-20 11:34:11 -07:00
..
testing refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
browser.ts refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
browser_static.ts refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
common.ts refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
common_dom.ts refactor(Location): out of router and into platform/common 2016-04-20 04:28:47 +00:00
server.dart refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
server.ts refactor(core): move render/dom from core 2015-11-17 15:53:55 -08:00
worker_app.dart refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
worker_app.ts refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
worker_render.dart refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
worker_render.ts refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00