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 604c1da commit 9e38152Copy full SHA for 9e38152
src/ast.hpp
@@ -169,6 +169,7 @@ namespace Sass {
169
C_WARNING,
170
C_ERROR,
171
FUNCTION,
172
+ VARIABLE,
173
NUM_TYPES
174
};
175
enum Simple_Type {
@@ -1512,10 +1513,10 @@ namespace Sass {
1512
1513
public:
1514
Variable(ParserState pstate, std::string n)
1515
: PreValue(pstate), name_(n)
- { }
1516
+ { concrete_type(VARIABLE); }
1517
Variable(const Variable* ptr)
1518
: PreValue(ptr), name_(ptr->name_)
1519
1520
1521
virtual bool operator==(const Expression& rhs) const
1522
{
0 commit comments