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
Both function-exists() and mixin-exists() should return true for functions or mixins (respectively) defined in local scopes, as so:
function-exists()
mixin-exists()
true
.scope { @function local-function() {@return null} @debug function-exists(local-function); @mixin local-mixin() {} @debug mixin-exists(local-mixin); }
Both of these @debugs should print true, but they currently print false.
@debug
false
The text was updated successfully, but these errors were encountered:
Fix mixin-exists and function-exists in local scopes
135548a
Spec sass/sass-spec#1362 Fixes #2831
bc55151
xzyfer
No branches or pull requests
Both
function-exists()
andmixin-exists()
should returntrue
for functions or mixins (respectively) defined in local scopes, as so:Both of these
@debug
s should printtrue
, but they currently printfalse
.The text was updated successfully, but these errors were encountered: