-
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
@debug
does not print map entries when the key is null
#1331
Comments
More fun stuff about $m: (foo: 1px, null: 2px, false: 3px, true: 4px);
@debug $m;
@debug map-get($m, null);
@debug map-get($m, false);
@debug null; prints out:
Should print out:
|
Thanks @chriseppstein this should be a straight forward fix. |
As an aside I've noticed the following now produces an error $m: (foo: 1px, null: 2px, false: 3px, true: 4px);
|
Closed
xzyfer
added a commit
to xzyfer/sass-spec
that referenced
this issue
Jul 13, 2015
This PR activates specs for sass/libsass#1331
This was referenced Jul 13, 2015
Spec added sass/sass-spec#437 |
This is fixed, and will be in 3.3. An additional aspect to this issue has been broken out into #1336 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Prints out:
The text was updated successfully, but these errors were encountered: