-
Notifications
You must be signed in to change notification settings - Fork 463
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
& + '' needs to be wrapped in parentheses #1170
Comments
Also commented Gist: http://sassmeister.com/gist/bd0834fdae880f7a65ea. |
I can see why this fails. The The reason it works with the |
Of all the possible reasons for this bug, I would not have guessed that. :D |
IMO debug_ast from Expression* Eval::operator()(Binary_Expression* b)
|
This fix was a false positive due to sass/sass-spec#380. The spec still fails. |
We now have a passing spec test since #1249 was merged 🎈 |
Throws:
See: http://sassmeister.com/gist/f19f7aa4e0fbacde9549
The simplest fix (as suggested by @hugogiraudel) is to wrap
& + ''
in parenthesis:(& + '')
.The text was updated successfully, but these errors were encountered: