angular/modules/angular2/test/core
Jeff Cross 604c8bbad5 refactor(lifecycle): prefix lifecycle methods with "ng"
BREAKING CHANGE:
Previously, components that would implement lifecycle interfaces would include methods
like "onChanges" or "afterViewInit." Given that components were at risk of using such
names without realizing that Angular would call the methods at different points of
the component lifecycle. This change adds an "ng" prefix to all lifecycle hook methods,
far reducing the risk of an accidental name collision.

To fix, just rename these methods:
 * onInit
 * onDestroy
 * doCheck
 * onChanges
 * afterContentInit
 * afterContentChecked
 * afterViewInit
 * afterViewChecked
 * _Router Hooks_
 * onActivate
 * onReuse
 * onDeactivate
 * canReuse
 * canDeactivate

To:
 * ngOnInit,
 * ngOnDestroy,
 * ngDoCheck,
 * ngOnChanges,
 * ngAfterContentInit,
 * ngAfterContentChecked,
 * ngAfterViewInit,
 * ngAfterViewChecked
 * _Router Hooks_
 * routerOnActivate
 * routerOnReuse
 * routerOnDeactivate
 * routerCanReuse
 * routerCanDeactivate

The names of lifecycle interfaces and enums have not changed, though interfaces
have been updated to reflect the new method names.

Closes #5036
2015-11-30 16:40:50 -08:00
..
change_detection refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
debug cleanup(tooling): move tooling to the browser platform and rename profile into instrumentation 2015-11-24 19:29:52 +00:00
di refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
dom cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
linker refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
metadata cleanup(tooling): move tooling to the browser platform and rename profile into instrumentation 2015-11-24 19:29:52 +00:00
profile refactor(test): rename test_lib to testing 2015-10-13 10:36:49 -07:00
reflection refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
render refactor(core): move EventManager from core to platform/dom 2015-11-30 22:24:35 +00:00
testability refactor(EventEmitter): rename .next() to .emit() 2015-11-18 22:16:40 +00:00
util cleanup(tooling): move tooling to the browser platform and rename profile into instrumentation 2015-11-24 19:29:52 +00:00
zone refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
application_ref_spec.ts refactor(core): Move LifeCycle functionality into ApplicationRef. 2015-10-29 22:28:30 +00:00
directive_lifecycle_integration_spec.ts refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
forward_ref_integration_spec.dart feat: allow for forward references in injection 2015-05-15 21:12:57 -07:00
forward_ref_integration_spec.ts cleanup(core): stop reexporting angular2/common from angular2/core 2015-11-19 19:54:27 +00:00
spies.dart cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
spies.ts cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00