angular/modules/angular2/test
Jeff Cross fcc7ce225e refactor(pipes): use angular lifecycle hooks instead of PipeOnDestroy
BREAKING CHANGE:
Previously, pipes that wanted to be notified when they were destroyed
would implement the PipeOnDestroy interface and name the callback
`onDestroy`. This change removes the PipeOnDestroy interface and
instead uses Angular's lifecycle interface `OnDestroy`, with the
`ngOnDestroy` method.

Before:
```
import {Pipe, PipeOnDestroy} from 'angular2/angular2';
@Pipe({pure: false})
export class MyPipe implements PipeOnDestroy {
  onDestroy() {}
}
```

After:
import {Pipe, OnDestroy} from 'angular2/angular2';
@Pipe({pure: false})
export class MyPipe implements PipeOnDestroy {
  ngOnDestroy() {}
}
2015-11-30 16:40:50 -08:00
..
animate cleanup: move DomAdapter from angular2/core into angular2/platform/common_dom 2015-11-20 00:14:24 +00:00
common refactor(pipes): use angular lifecycle hooks instead of PipeOnDestroy 2015-11-30 16:40:50 -08:00
compiler refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
core refactor(pipes): use angular lifecycle hooks instead of PipeOnDestroy 2015-11-30 16:40:50 -08:00
facade refactor(tests): move facades tests out of tests/core 2015-11-30 22:24:35 +00:00
http fix(http): Fix all requests defaulting to Get 2015-11-23 22:17:13 +00:00
mock refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
platform refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
router refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
symbol_inspector chore(test): fix public API test failure when no support of Symbol.for 2015-11-10 11:23:01 +01:00
testing feat(testing): use zones to avoid the need for injectAsync 2015-11-30 14:06:06 -08:00
upgrade refactor(lifecycle): prefix lifecycle methods with "ng" 2015-11-30 16:40:50 -08:00
web_workers chore(build): increase timeout of the 5 most flaky tests 2015-11-23 19:23:25 +00:00
dev_mode_spec.ts refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
public_api_spec.ts refactor(pipes): use angular lifecycle hooks instead of PipeOnDestroy 2015-11-30 16:40:50 -08:00