-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
a problem of function e()
#3345
Comments
Actually your first example looks like a bug (in Why are you using quotes at all? Shouldn't this be just: .mixin-create-width-style(@list) {
each(@list, {
.w-@{key} {
width: @value;
}
});
}
.a {
.mixin-create-width-style(90 100 110);
} ? |
@seven-phases-max The issue was actually in the This was all fine and good until late parsing was added, so any variable's value was first parsed as an Anonymous node, then the value was parsed later only when referenced. So since then, @zhnoah - @seven-phases-max is right though, there's no need to try to escape a list to iterate the list. Just use a list. I've also fixed the abberant |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I have a piece of code, that works fine:
but, When I want to pass a list string as a parameter:
It doesn't work:
What's wrong with that?
The text was updated successfully, but these errors were encountered: