angular/modules/benchmarks/src
vsavkin 5b5d31fa9a feat(pipe): added the Pipe decorator and the pipe property to View
BREAKING CHANGE:
    Instead of configuring pipes via a Pipes object, now you can configure them by providing the pipes property to the View decorator.

    @Pipe({
      name: 'double'
    })
    class DoublePipe {
      transform(value, args) { return value * 2; }
    }

    @View({
      template: '{{ 10 | double}}'
      pipes: [DoublePipe]
    })
    class CustomComponent {}

Closes #3572
2015-08-12 00:38:40 +00:00
..
change_detection refactor(change_detect): Move common fields to AbstractChangeDetector 2015-07-29 10:46:49 -07:00
compiler feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
costs feat(bootstrap): remove the need for explicit reflection setup in bootstrap code 2015-07-22 17:02:32 -07:00
di feat(bootstrap): remove the need for explicit reflection setup in bootstrap code 2015-07-22 17:02:32 -07:00
element_injector feat(di): removed app injector 2015-07-01 13:33:43 -07:00
largetable feat(bootstrap): remove the need for explicit reflection setup in bootstrap code 2015-07-22 17:02:32 -07:00
naive_infinite_scroll chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
static_tree feat(bootstrap): remove the need for explicit reflection setup in bootstrap code 2015-07-22 17:02:32 -07:00
tree chore(build): enable type-checking for TypeScript ES6 emit. 2015-08-06 16:57:52 -07:00
index.html feat(benchmark): add static_tree benchmark 2015-07-22 10:58:50 -07:00