-
Notifications
You must be signed in to change notification settings - Fork 25.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transformers support input outputs #5080
Transformers support input outputs #5080
Conversation
@Component({selector: 'order-list-cmp'}) | ||
@View({ | ||
@Component({ | ||
selector: 'order-list-cmp', | ||
template: ` | ||
<h1>Orders</h1> | ||
<div *ng-for="#order of orders" [class.warning]="order.total > order.limit"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While you are at it, feel free to add a timy little leading space :)
|
||
bool _isOutputAnnotation(Annotation node) { | ||
var id = node.name; | ||
final name = id is PrefixedIdentifier ? '${id.identifier}' : '$id'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move this logic to a reusable method (or top-level function)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
f7a9f38
to
2e8d2a9
Compare
2e8d2a9
to
d7b6472
Compare
Merging PR #5080 on behalf of @vsavkin to branch presubmit-vsavkin-pr-5080. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
No description provided.