angular-cn/modules/angular2/test/change_detection
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
..
differs feat(pipes): replaces iterable and key value diffing pipes with services 2015-08-04 10:39:55 -07:00
generated refactor(change detect): Clean up change detector test layout 2015-06-10 16:09:48 -07:00
generator fix(change_detect): Handle '$' in change detector strings 2015-07-16 13:01:53 -07:00
parser fix(parser): detect empty expression in strings to interpolate 2015-08-04 08:44:14 +02:00
pipes refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
change_detection_spec.ts feat(change_detection): generate checkNoChanges only in dev mode 2015-07-27 15:50:19 -07:00
change_detector_config.ts perf(change_detection): do not check intermediate results 2015-07-29 21:58:29 +00:00
change_detector_spec.ts refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
coalesce_spec.ts perf(change_detection): do not check intermediate results 2015-07-29 21:58:29 +00:00
iterable.dart chore(packaging): move files to match target file structure 2015-02-05 15:46:13 -08:00
iterable.ts refactor(ChangeDetection): convert change detection tests to typescript 2015-05-28 10:01:30 -07:00
proto_record_builder_spec.ts perf(change_detection): do not check intermediate results 2015-07-29 21:58:29 +00:00
proto_record_spec.ts perf(change_detection): do not check intermediate results 2015-07-29 21:58:29 +00:00
util.ts fix: fix clang errors 2015-05-28 11:08:26 -07:00