angular-cn/modules/playground
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
..
e2e_test fix(WebWorker): Fix textarea value not being sent to the worker 2016-04-13 13:24:04 -07:00
src refactor(core): support non reflective bootstrap. 2016-04-20 11:34:11 -07:00
test/benchpress chore(test): migrate Dart tests to package:test 2016-03-04 02:27:44 +00:00
pubspec.yaml fix(WebWorker): Fix textarea value not being sent to the worker 2016-04-13 13:24:04 -07:00