feat(core): support properties and events in addition to inputs and outputs to make transition easier
Closes #4482
This commit is contained in:
@ -235,6 +235,9 @@ class _DirectiveMetadataVisitor extends Object
|
||||
case 'inputs':
|
||||
_populateProperties(node.expression);
|
||||
break;
|
||||
case 'properties':
|
||||
_populateProperties(node.expression);
|
||||
break;
|
||||
case 'host':
|
||||
_populateHost(node.expression);
|
||||
break;
|
||||
@ -247,6 +250,9 @@ class _DirectiveMetadataVisitor extends Object
|
||||
case 'outputs':
|
||||
_populateEvents(node.expression);
|
||||
break;
|
||||
case 'events':
|
||||
_populateEvents(node.expression);
|
||||
break;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user