-
Notifications
You must be signed in to change notification settings - Fork 464
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
Maps don't error out on comma-delineated non-parenthesized 'lists' as values #1537
Comments
More generally, it looks like the issue is that maps accept keys without values in libsass but not ruby sass:
does not cause an error, but probably should? |
Thanks for the report @mknadler. I can confirm this issue is still present on the latest master. |
@mknadler your findings are pretty much spot on, but actually libsass seems allow lists as keys. |
I opened an issue with ruby sass, since I think this is inconsistent and libsass does the right thing. |
A map value that is a comma-delineated 'list' that is not wrapped in parentheses, e.g.:
Is being parsed as though the additional items in the
list
were keys with no paired values:test code:
ruby sass 3.4.14:
latest master:
The text was updated successfully, but these errors were encountered: