angular/modules/core/test/compiler
Misko Hevery 9db13be4c7 feat: change template micro-syntax to new syntax
Old syntax:
- ng-repeat: #item in items;
- ng-repeat: #item; in: items;
- <template let-ng-repeat=“item” [in]=items>

New syntax:
- ng-repeat: var item in items;
- ng-repeat: var item; in items
- <template ng-repeat var-item [in]=items>


Notice that the var is now a standalone binding 
rather then an argument to ng-repeat. This will 
make the var bindings consistent with the rest of 
the system.

Closes #482
2015-01-30 11:56:54 -08:00
..
pipeline feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
shadow_dom feat(change_detection): implement a change detector generator 2015-01-27 16:18:15 -08:00
compiler_spec.js feat(change_detection): implement a change detector generator 2015-01-27 16:18:15 -08:00
directive_metadata_reader_spec.js feat(components): initial implementation of emulated content tag 2015-01-08 19:38:37 -08:00
element_injector_spec.js feat(events): adds support for injectable angular event emitters. 2015-01-22 10:14:03 -08:00
integration_spec.js feat: change template micro-syntax to new syntax 2015-01-30 11:56:54 -08:00
selector_spec.js refactor(tests): exctract createElement into a helper 2015-01-14 09:13:56 -08:00
view_spec.js fix(NgRepeat): activate index 2015-01-29 13:29:32 -08:00
viewport_spec.js feat(change_detection): implement a change detector generator 2015-01-27 16:18:15 -08:00