angular-cn/modules/angular2/test/core
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
..
annotations feat: allow Type.annotations = Component(...).View(...) 2015-06-16 16:36:46 -07:00
compiler refactor(pipes): use Injector instead of pipe factories for pipe instantiation 2015-08-07 10:02:11 -07:00
life_cycle fix(core): export LifeCycle at top-level modules 2015-07-30 21:52:29 +00:00
testability feat(testability): hook zone into whenstable api with async support 2015-07-24 12:46:12 -07:00
zone chore(browsers): fix failing tests in IE11 2015-08-04 22:45:46 +02:00
application_spec.ts fix(exception_handler): log errors that are thrown by the compiler 2015-08-06 15:26:24 -07:00
directive_lifecycle_integration_spec.ts fix: remove unused imports 2015-07-31 20:40:33 +00:00
exception_handler_spec.ts feat(exception_handler): print originalException and originalStack for all exceptions 2015-07-24 15:45:26 -07:00
forward_ref_integration_spec.dart feat: allow for forward references in injection 2015-05-15 21:12:57 -07:00
forward_ref_integration_spec.ts cleanup(di): renamed viewInjector and hostInjector 2015-07-31 09:49:51 -07:00