angular-cn/modules/angular2/examples/core/ts
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
..
bootstrap docs(core): Myriad of documentation changes including lots of new example code. 2015-12-10 15:23:57 -08:00
metadata chore: noImplicitAny fixes 2016-02-24 15:29:00 -08:00
platform refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
prod_mode feat(dart/transform): Use angular2/platform/browser as bootstrap lib 2016-03-21 00:58:17 +00:00
.gitkeep docs(examples): add empty examples directory for api docs examples 2015-09-23 21:30:17 +00:00