@@ -9,7 +9,7 @@ namespace Sass {
99 // ///////////////////////////////////////////////////////////////////////
1010 // ///////////////////////////////////////////////////////////////////////
1111
12- SupportsRule::SupportsRule (SourceSpan pstate, Supports_Condition_Obj condition, Block_Obj block)
12+ SupportsRule::SupportsRule (SourceSpan pstate, SupportsConditionObj condition, Block_Obj block)
1313 : ParentStatement(pstate, block), condition_(condition)
1414 { statement_type (SUPPORTS); }
1515 SupportsRule::SupportsRule (const SupportsRule* ptr)
@@ -20,28 +20,28 @@ namespace Sass {
2020 // ///////////////////////////////////////////////////////////////////////
2121 // ///////////////////////////////////////////////////////////////////////
2222
23- Supports_Condition::Supports_Condition (SourceSpan pstate)
23+ SupportsCondition::SupportsCondition (SourceSpan pstate)
2424 : Expression(pstate)
2525 { }
2626
27- Supports_Condition::Supports_Condition (const Supports_Condition * ptr)
27+ SupportsCondition::SupportsCondition (const SupportsCondition * ptr)
2828 : Expression(ptr)
2929 { }
3030
3131 // ///////////////////////////////////////////////////////////////////////
3232 // ///////////////////////////////////////////////////////////////////////
3333
34- Supports_Operator::Supports_Operator (SourceSpan pstate, Supports_Condition_Obj l, Supports_Condition_Obj r, Operand o)
35- : Supports_Condition (pstate), left_(l), right_(r), operand_(o)
34+ Supports_Operator::Supports_Operator (SourceSpan pstate, SupportsConditionObj l, SupportsConditionObj r, Operand o)
35+ : SupportsCondition (pstate), left_(l), right_(r), operand_(o)
3636 { }
3737 Supports_Operator::Supports_Operator (const Supports_Operator* ptr)
38- : Supports_Condition (ptr),
38+ : SupportsCondition (ptr),
3939 left_ (ptr->left_),
4040 right_(ptr->right_),
4141 operand_(ptr->operand_)
4242 { }
4343
44- bool Supports_Operator::needs_parens (Supports_Condition_Obj cond) const
44+ bool Supports_Operator::needs_parens (SupportsConditionObj cond) const
4545 {
4646 if (Supports_Operator_Obj op = Cast<Supports_Operator>(cond)) {
4747 return op->operand () != operand ();
@@ -52,14 +52,14 @@ namespace Sass {
5252 // ///////////////////////////////////////////////////////////////////////
5353 // ///////////////////////////////////////////////////////////////////////
5454
55- Supports_Negation::Supports_Negation (SourceSpan pstate, Supports_Condition_Obj c)
56- : Supports_Condition (pstate), condition_(c)
55+ Supports_Negation::Supports_Negation (SourceSpan pstate, SupportsConditionObj c)
56+ : SupportsCondition (pstate), condition_(c)
5757 { }
5858 Supports_Negation::Supports_Negation (const Supports_Negation* ptr)
59- : Supports_Condition (ptr), condition_(ptr->condition_)
59+ : SupportsCondition (ptr), condition_(ptr->condition_)
6060 { }
6161
62- bool Supports_Negation::needs_parens (Supports_Condition_Obj cond) const
62+ bool Supports_Negation::needs_parens (SupportsConditionObj cond) const
6363 {
6464 return Cast<Supports_Negation>(cond) ||
6565 Cast<Supports_Operator>(cond);
@@ -69,15 +69,15 @@ namespace Sass {
6969 // ///////////////////////////////////////////////////////////////////////
7070
7171 Supports_Declaration::Supports_Declaration (SourceSpan pstate, ExpressionObj f, ExpressionObj v)
72- : Supports_Condition (pstate), feature_(f), value_(v)
72+ : SupportsCondition (pstate), feature_(f), value_(v)
7373 { }
7474 Supports_Declaration::Supports_Declaration (const Supports_Declaration* ptr)
75- : Supports_Condition (ptr),
75+ : SupportsCondition (ptr),
7676 feature_(ptr->feature_),
7777 value_(ptr->value_)
7878 { }
7979
80- bool Supports_Declaration::needs_parens (Supports_Condition_Obj cond) const
80+ bool Supports_Declaration::needs_parens (SupportsConditionObj cond) const
8181 {
8282 return false ;
8383 }
@@ -86,14 +86,14 @@ namespace Sass {
8686 // ///////////////////////////////////////////////////////////////////////
8787
8888 Supports_Interpolation::Supports_Interpolation (SourceSpan pstate, ExpressionObj v)
89- : Supports_Condition (pstate), value_(v)
89+ : SupportsCondition (pstate), value_(v)
9090 { }
9191 Supports_Interpolation::Supports_Interpolation (const Supports_Interpolation* ptr)
92- : Supports_Condition (ptr),
92+ : SupportsCondition (ptr),
9393 value_(ptr->value_)
9494 { }
9595
96- bool Supports_Interpolation::needs_parens (Supports_Condition_Obj cond) const
96+ bool Supports_Interpolation::needs_parens (SupportsConditionObj cond) const
9797 {
9898 return false ;
9999 }
@@ -102,7 +102,7 @@ namespace Sass {
102102 // ///////////////////////////////////////////////////////////////////////
103103
104104 IMPLEMENT_AST_OPERATORS (SupportsRule);
105- IMPLEMENT_AST_OPERATORS (Supports_Condition );
105+ IMPLEMENT_AST_OPERATORS (SupportsCondition );
106106 IMPLEMENT_AST_OPERATORS (Supports_Operator);
107107 IMPLEMENT_AST_OPERATORS (Supports_Negation);
108108 IMPLEMENT_AST_OPERATORS (Supports_Declaration);
0 commit comments