angular/modules/angular2/test/web_workers/debug_tools
Jason Teplitz 006a96dd20 refactor(WebWorker): Make WebWorker bootstrap synchronous
BREAKING CHANGE

From the app thread, in both TypeScript and Dart, you bootstrap the app
using `application` instead of `asyncApplication`.
Before:
```TypeScript
platform([WORKER_APP_PLATFORM])
.asyncApplication(setupWebWorker, optionalProviders?)
.then((ref) => ref.bootstrap(RootComponent));
```
Now:
```TypeScript
platform([WORKER_APP_PLATFORM])
.application([WORKER_APP_APPLICATION])
.bootstrap(RootComponent);
```

closes #5857

Closes #5862
2015-12-14 21:04:46 +00:00
..
bootstrap.server.spec.dart refactor(WebWorker): Make WebWorker bootstrap synchronous 2015-12-14 21:04:46 +00:00
message_bus_common.dart refactor(dart): Format Dart code 2015-10-20 17:39:37 +00:00
multi_client_server_message_bus.server.spec.dart refactor(WebWorker): Use the new generic bootstrap. 2015-12-03 19:51:43 +00:00
single_client_server_message_bus.server.spec.dart refactor(tests): rename beforeEachBindings -> beforeEachProviders 2015-12-02 14:09:13 -08:00
spy_web_socket.dart refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
web_socket_message_bus_spec.dart refactor(tests): rename beforeEachBindings -> beforeEachProviders 2015-12-02 14:09:13 -08:00