-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Update Glimmer #14954
Update Glimmer #14954
Conversation
586d038
to
fc875da
Compare
|
||
// helpers are not allowed to include a dot in their invocation | ||
if (nameParts.length > 1) { | ||
if (name.indexOf('.') > 1) { |
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.
✂️ I took care of this in the pre-compiler already
// modifiers are not allowed to include a dot in their invocation | ||
if (nameParts.length > 1) { | ||
if (name.indexOf('.') > -1) { |
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.
✂️ I took care of this in the pre-compiler already
fc875da
to
b375277
Compare
Need some more cases for the AST transform: {{foo.bar bar="something"}} {{foo.bar derp}} {{#foo.bar}}stuff here{{/foo.bar}} {{this.modal show=maybeShow}} Specifically, rendering previously saved off closure components that are not derived from block params is totally valid and should be supported. |
b375277
to
08bd8d4
Compare
08bd8d4
to
6df171a
Compare
👏 |
This commit brings glimmer
master
and embermaster
in line.