angular-cn/modules/angular2/test/render/dom/compiler
Victor Berchet f3b49378e4 feat(Directive): Have a single Directive.host which mimics HTML
fixes #2268

BREAKING CHANGE:

Before

    @Directive({
      hostListeners: {'event': 'statement'},
      hostProperties: {'expression': 'hostProp'},
      hostAttributes: {'attr': 'value'},
      hostActions: {'action': 'statement'}
    })

After

    @Directive({
      host: {
        '(event)': 'statement',
        '[hostProp]': 'expression'  // k & v swapped
        'attr': 'value',
        '@action': 'statement'
      }
    })
2015-06-11 13:11:09 -07:00
..
compiler_browser_spec.ts refactor(render): ts’ify tests 2015-05-26 09:38:26 -07:00
compiler_common_tests.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
compiler_html5lib.server.spec.dart feat(render): add initial implementation of render layer 2015-04-01 16:50:22 -07:00
directive_parser_spec.ts feat(Directive): Have a single Directive.host which mimics HTML 2015-06-11 13:11:09 -07:00
pipeline_spec.ts refactor(ProtoViewDto): switch to enum 2015-06-11 17:11:34 +02:00
property_binding_parser_spec.ts chore: move to clang-format 1.0.17. 2015-06-03 15:27:27 -07:00
selector_spec.ts fix(selector): support multiple `:not` clauses 2015-06-01 14:24:19 -07:00
template_loader_spec.ts refactor(xhr): move render's xhr implementation to render/ 2015-06-09 10:28:35 -07:00
text_interpolation_parser_spec.ts refactor(render): ts’ify tests 2015-05-26 09:38:26 -07:00
view_splitter_spec.ts refactor(ProtoViewDto): switch to enum 2015-06-11 17:11:34 +02:00