angular/modules/angular2/test/core
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
..
change_detection feat(pipes): add support for pure pipes 2015-09-08 16:24:27 +00:00
compiler refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
debug refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
di refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
directives refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
dom chore: update all import paths 2015-08-25 15:33:23 -07:00
facade chore(ts2dart): replace List with Array 2015-08-31 21:32:10 +00:00
forms fix(forms): Update NgModel's viewModel when model changes 2015-09-05 11:58:42 -07:00
life_cycle refactor(tests): removed @IMPLEMENTS 2015-08-26 15:06:25 -07:00
metadata chore: update all import paths 2015-08-25 15:33:23 -07:00
pipes feat(pipes): add support for pure pipes 2015-09-08 16:24:27 +00:00
profile chore: update all import paths 2015-08-25 15:33:23 -07:00
reflection fix(reflector): merge prop metadata from getters and setters 2015-09-04 23:44:22 +00:00
render refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
services refactor(tests): removed @IMPLEMENTS 2015-08-26 15:06:25 -07:00
testability chore: update all import paths 2015-08-25 15:33:23 -07:00
util chore: update all import paths 2015-08-25 15:33:23 -07:00
zone refactor(test_lib): BrowserDetection util 2015-08-28 11:41:17 +02:00
application_spec.ts refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
directive_lifecycle_integration_spec.ts refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
exception_handler_spec.ts chore: update all import paths 2015-08-25 15:33:23 -07: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 refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
spies.dart refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
spies.ts feat(compiler): add stylesheet compiler 2015-09-04 19:22:43 +00:00