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 6e05daf commit ee8ea51Copy full SHA for ee8ea51
src/environment.cpp
@@ -59,8 +59,9 @@ namespace Sass {
59
// profiling only show a very minor increase (but keep anyway).
60
if (a->vidx().isValid()) {
61
assigne = &compiler.varRoot.getVariable(a->vidx());
62
+ ValueObj result = a->value()->accept(this);
63
compiler.varRoot.setVariable(a->vidx(),
- a->value()->accept(this), a->is_default());
64
+ result, a->is_default());
65
assigne = nullptr;
66
return nullptr;
67
}
0 commit comments