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.
2 parents eaf3413 + 857c678 commit 3ae9a20Copy full SHA for 3ae9a20
src/ast.hpp
@@ -878,7 +878,9 @@ namespace Sass {
878
size_t size = 0, enum Sass_Separator sep = SASS_SPACE, bool argl = false)
879
: Value(pstate),
880
Vectorized<Expression*>(size),
881
- separator_(sep), is_arglist_(argl)
+ separator_(sep),
882
+ is_arglist_(argl),
883
+ from_selector_(false)
884
{ concrete_type(LIST); }
885
std::string type() { return is_arglist_ ? "arglist" : "list"; }
886
static std::string type_name() { return "list"; }
0 commit comments