angular-cn/modules/angular2/test/core/compiler
vsavkin 2dcf714d2b refactor(pipes): use Injector instead of pipe factories for pipe instantiation
BREAKING CHANGE
    - Pipe factories have been removed.
    - PIpe names to pipe implementations are 1-to-1  instead of 1-to-*

 Before:
     class DateFormatter {
         transform(date, args){}
     }

     class DateFormatterFactory {
       supporst(obj) { return true; }
       create(cdRef) { return new DateFormatter(); }
     }
     new Pipes({date: [new DateFormatterFactory()]})

After
    class DateFormatter {
      transform(date, args){}
    }
    new Pipes({date: DateFormatter})
2015-08-07 10:02:11 -07:00
..
compiler_spec.ts fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07: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 fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07:00
integration_dart_spec.dart style(dart): Format with dartfmt v0.2.0 2015-08-05 11:04:29 -07:00
integration_spec.ts refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07: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 fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07: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 fix(dart): @proxy is a value, not a factory 2015-08-06 10:02:49 -07:00
view_pool_spec.ts refactor(compiler): speed up proto view merging 2015-07-21 13:39:41 -07:00