We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f82a41b commit 263c4deCopy full SHA for 263c4de
eval.cpp
@@ -818,6 +818,9 @@ namespace Sass {
818
} else if (Parent_Selector* var = dynamic_cast<Parent_Selector*>(s)) {
819
Expression* ex = var->perform(this);
820
return evacuate_quotes(interpolation(ex));
821
+ } else if (Unary_Expression* var = dynamic_cast<Unary_Expression*>(s)) {
822
+ Expression* ex = var->perform(this);
823
+ return evacuate_quotes(interpolation(ex));
824
} else if (Selector* var = dynamic_cast<Selector*>(s)) {
825
826
0 commit comments