-
Notifications
You must be signed in to change notification settings - Fork 248
Conversation
Nice start. I think we should drop |
@mhevery Most the issues should be solved. I still have one pb:
I'll look at it tomorrow, any hint appreciated (it's in JS so related to the transformers). |
Dart coding convention Add explicit types Some refactoring
The problem was that the code did not accumulate Hopefuly Travis should be happy now. |
…ILDREN) 1- Transclusion syntax has changed: Before: @decorator( selector: '[ng-if]', children: Directive.TRANSCLUDE_CHILDREN, map: const {'.': 'mapping'}, <other kv pairs>) After: @template( selector: '[ng-if]', map: const {'ng-if' : 'mapping'}, <other kv pairs>) 2- Directive.children has been removed in facor of Directive.compileChildren Before: children: Directive.COMPILE_CHILDREN children: Directive.IGNORE_CHILDREN children: Directive.TRANSCLUDE_CHILDREN After: compileChildren: true compileChildren: false Use @template (see the previous section)
Travis is happy, should be ready to merge (after review) |
…ILDREN) 1- Transclusion syntax has changed: Before: @decorator( selector: '[ng-if]', children: Directive.TRANSCLUDE_CHILDREN, map: const {'.': 'mapping'}, <other kv pairs>) After: @template( selector: '[ng-if]', map: const {'ng-if' : 'mapping'}, <other kv pairs>) 2- Directive.children has been removed in favor of Directive.compileChildren Before: children: Directive.COMPILE_CHILDREN children: Directive.IGNORE_CHILDREN children: Directive.TRANSCLUDE_CHILDREN After: compileChildren: true compileChildren: false Use @template (see the previous section) Closes #1003
Merged into staging |
We are targetting 0.13.0 for this change. |
@jbdeboer should I keep this PR rebased on master ? (I think it's easier to do regularly than once before merging). What about staging, should it also be rebased ? |
Waiting for the bind- syntax to be in before rebasing this PR |
rebased & merged on top of 1269 |
replaces #861
TODO:
@Template
tests in annotation_src_spec