We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is especially noticeable when using something like ember-truth-helpers. Using if, and, and or helpers and true values to demonstrate:
ember-truth-helpers
if
and
or
true
/ works if true | foo if (and true true) | foo if (and true (or true true)) | foo if (and (or true true) true) | foo / doesn't work (Expected _4BeginStatement or end of input) if (and (or true true) (or true true)) | foo
(This is not an issue with and/or as the same issue occurs with any other helper)
The same issue occurs when passing nested subexpressions as values:
/ works my-checkbox checked=(and (or true true) true) / doesn't work my-checkbox checked=(and (or true true) (or true true))
Equivalent handlebars:
{{#if (and (or true true) (or true true))}} foo {{/if}} {{my-checkbox checked=(and (or true true) (or true true))}}
The text was updated successfully, but these errors were encountered:
Fixed #267
Sorry, something went wrong.
No branches or pull requests
This is especially noticeable when using something like
ember-truth-helpers
. Usingif
,and
, andor
helpers andtrue
values to demonstrate:(This is not an issue with
and
/or
as the same issue occurs with any other helper)The same issue occurs when passing nested subexpressions as values:
Equivalent handlebars:
The text was updated successfully, but these errors were encountered: