angular/modules
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
..
angular1_router refector(router): rename outlet integration spec to navigation spec 2015-08-31 23:24:09 +00:00
angular2 feat(pipes): add support for pure pipes 2015-09-08 16:24:27 +00:00
angular2_material refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
benchmarks refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
benchmarks_external fix(build): switch to cjs output for es5. 2015-09-04 23:10:34 +00:00
benchpress refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
examples refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
rtts_assert chore(ts2dart): replace List with Array 2015-08-31 21:32:10 +00:00