angular/modules/angular2/test
vsavkin a8bdb693b9 feat(pipes): add support for pure pipes
By default, pipes are pure. This means that an instance of a pipe will be reused and the pipe will be called only when its arguments change.

BREAKING CHANGE

Before:

@Pipe({name: 'date'}) class DatePipe {} defines an impure pipe.

After:

@Pipe({name: 'date'}) class DatePipe {} defines a pure pipe.
@Pipe({name: 'date', pure: false}) class DatePipe {} defines an impure pipe.

Closes #3966
2015-09-08 16:24:27 +00:00
..
benchmark/transform refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
compiler refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
core feat(pipes): add support for pure pipes 2015-09-08 16:24:27 +00:00
http refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
mock refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
router refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
test_lib refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
web_workers refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
platform.dart refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
platform.ts refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00