@@ -46,22 +46,22 @@ namespace Sass {
4646 if (SupportsOperationObj op = Cast<SupportsOperation>(cond)) {
4747 return op->operand () != operand ();
4848 }
49- return Cast<Supports_Negation >(cond) != NULL ;
49+ return Cast<SupportsNegation >(cond) != NULL ;
5050 }
5151
5252 // ///////////////////////////////////////////////////////////////////////
5353 // ///////////////////////////////////////////////////////////////////////
5454
55- Supports_Negation::Supports_Negation (SourceSpan pstate, SupportsConditionObj c)
55+ SupportsNegation::SupportsNegation (SourceSpan pstate, SupportsConditionObj c)
5656 : SupportsCondition(pstate), condition_(c)
5757 { }
58- Supports_Negation::Supports_Negation (const Supports_Negation * ptr)
58+ SupportsNegation::SupportsNegation (const SupportsNegation * ptr)
5959 : SupportsCondition(ptr), condition_(ptr->condition_)
6060 { }
6161
62- bool Supports_Negation ::needs_parens (SupportsConditionObj cond) const
62+ bool SupportsNegation ::needs_parens (SupportsConditionObj cond) const
6363 {
64- return Cast<Supports_Negation >(cond) ||
64+ return Cast<SupportsNegation >(cond) ||
6565 Cast<SupportsOperation>(cond);
6666 }
6767
@@ -104,7 +104,7 @@ namespace Sass {
104104 IMPLEMENT_AST_OPERATORS (SupportsRule);
105105 IMPLEMENT_AST_OPERATORS (SupportsCondition);
106106 IMPLEMENT_AST_OPERATORS (SupportsOperation);
107- IMPLEMENT_AST_OPERATORS (Supports_Negation );
107+ IMPLEMENT_AST_OPERATORS (SupportsNegation );
108108 IMPLEMENT_AST_OPERATORS (Supports_Declaration);
109109 IMPLEMENT_AST_OPERATORS (Supports_Interpolation);
110110
0 commit comments