angular/modules/benchmarks/src/compiler
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
..
compiler_benchmark.html refactor(benchmarks): Update compile benchmarks 2015-05-18 14:34:36 -07:00
compiler_benchmark.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
selector_benchmark.html refactor(benchmarks): add cloud reporter, add params 2015-01-15 09:09:05 -08:00
selector_benchmark.ts chore: kill ListWrapper.create() and .push(). 2015-06-17 16:21:55 -07:00