refactor(core): Move LifeCycle functionality into ApplicationRef.

BREAKING CHANGE:

Before: constructor(@Inject(LifeCycle) lifecycle) { lifecycle.tick(); }
After: constructor(@Inject(ApplicationRef) appRef) { appRef.tick(); }

Closes #5008
This commit is contained in:
Alex Rickabaugh
2015-10-28 10:34:13 -07:00
parent ef23fe66a0
commit 72e65d6797
19 changed files with 144 additions and 182 deletions
-1
View File
@@ -10,7 +10,6 @@ export * from '../src/core/facade';
export * from '../src/core/application_ref';
export * from '../src/core/services';
export * from '../src/core/linker';
export * from '../src/core/lifecycle';
export * from '../src/core/zone';
// Do not export render in web_worker
// export * from '../src/core/render';