feat(ivy): support host bindings in ngtsc (#24862)

This change adds support for host bindings to ngtsc, and parses them
both from decorators and from the metadata in the top-level annotation.

PR Close #24862
This commit is contained in:
Alex Rickabaugh
2018-07-18 09:50:16 -07:00
committed by Victor Berchet
parent 76f8f78920
commit 2e724ec68b
3 changed files with 123 additions and 7 deletions

View File

@ -37,6 +37,8 @@ export const Optional = callableParamDecorator();
export const ContentChild = callablePropDecorator();
export const ContentChildren = callablePropDecorator();
export const HostBinding = callablePropDecorator();
export const HostListener = callablePropDecorator();
export const ViewChild = callablePropDecorator();
export const ViewChildren = callablePropDecorator();