angular/modules/angular2/test/core/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_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
component_url_mapper_spec.ts refactor(core): ts’ify tests 2015-05-26 17:01:31 -07:00
directive_lifecycle_spec.dart style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
directive_lifecycle_spec.ts refactor(LifecycleEvent): change from onInit to Lifecycle.onInit 2015-07-14 16:51:44 -07:00
directive_metadata_reader_spec.ts fix(decorators): stop directives inheriting parent class decorators. 2015-07-29 21:23:31 +00:00
dynamic_component_loader_spec.ts cleanup(di): renamed viewInjector and hostInjector 2015-07-31 09:49:51 -07:00
element_injector_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
integration_dart_spec.dart style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
integration_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
projection_integration_spec.ts fix(render): allow to configure when templates are serialized to strings 2015-07-31 12:04:32 -07:00
proto_view_factory_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
query_integration_spec.ts fix: remove unused imports 2015-07-31 20:40:33 +00:00
query_list_spec.ts feat(query): initial implementation of view query. 2015-07-13 14:44:55 -07:00
view_container_ref_spec.ts fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07:00
view_manager_spec.ts fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07:00
view_manager_utils_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00
view_pool_spec.ts feat(pipe): added the Pipe decorator and the pipe property to View 2015-08-12 00:38:40 +00:00