angular/modules/angular2/test
vsavkin 7c6130c2c5 feat(core): desugar [()] to [prop] and (prop-change)
BREAKING CHANGE

Before

```
<cmp [(prop)]="field"> was desugared to <cmp [prop]="field" (prop)="field=$event">
```

After
```
<cmp [(prop)]="field"> is desugared to <cmp [prop]="field" (prop-change)="field=$event">
```

Closes #4658
2015-10-11 02:58:13 +00:00
..
animate feat(animate): cross-browser compatibility 2015-09-24 10:24:40 +02:00
core feat(core): desugar [()] to [prop] and (prop-change) 2015-10-11 02:58:13 +00:00
http fix(tests): fix tests 2015-10-08 13:54:44 -07:00
mock refactor: export core APIs from angular2/core 2015-09-05 07:01:34 +00:00
pipes cleanup(pipes): clean up imports 2015-09-15 11:47:09 -07:00
router refactor(router): use ApplicationRef to provide the first bootstrapped component as ROUTER_PRIMARY_COMPONENT automatically. 2015-10-10 05:19:55 +00:00
symbol_inspector fix(core): remove NgZone_ and use NgZone instead 2015-10-08 13:55:26 -07:00
test_lib fix(typings): repair broken type-checking for StringMap 2015-10-03 01:09:42 +00:00
tools fix(tests): fix tests 2015-10-08 13:54:44 -07:00
web_workers fix benchmarks 2015-10-08 13:54:44 -07:00
platform.dart refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
platform.ts refactor: Remove isDart from public API 2015-08-13 21:18:31 +00:00
public_api_spec.ts refactor(router): use ApplicationRef to provide the first bootstrapped component as ROUTER_PRIMARY_COMPONENT automatically. 2015-10-10 05:19:55 +00:00