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
I got segmentation error on node-sass v3.4.2. This may occure when use @each loop with argslist.
@each
argslist
// NG @mixin some-fn($args...) { @each $item in $args { @debug($item); } } // OK @mixin some-fn-arr($arr) { @each $item in $arr { @debug($item); } } .foo{ @include some-fn(); // OK @include some-fn((a: "b")); // OK @include some-fn((a: "b", c: "d")); //OK @include some-fn-arr( () ); // OK @include some-fn( () ); // segmentation fault }
The text was updated successfully, but these errors were encountered:
Each
@mgreter can you please provide a spec for this?
Sorry, something went wrong.
Minimal case:
@mixin some-fn($args...) { @each $item in $args { @debug($item); } } .foo{ @include some-fn( () ); // segmentation fault }
Activate specs for issue 1752
02b933a
This PR activates specs for sass/libsass#1752
Spec for this current fails due to #1768
Spec PR sass/sass-spec#632
mgreter
No branches or pull requests
I got segmentation error on node-sass v3.4.2.
This may occure when use
@each
loop withargslist
.The text was updated successfully, but these errors were encountered: