@@ -31,19 +31,19 @@ namespace Sass {
3131 // ///////////////////////////////////////////////////////////////////////
3232 // ///////////////////////////////////////////////////////////////////////
3333
34- Supports_Operator::Supports_Operator (SourceSpan pstate, SupportsConditionObj l, SupportsConditionObj r, Operand o)
34+ SupportsOperation::SupportsOperation (SourceSpan pstate, SupportsConditionObj l, SupportsConditionObj r, Operand o)
3535 : SupportsCondition(pstate), left_(l), right_(r), operand_(o)
3636 { }
37- Supports_Operator::Supports_Operator (const Supports_Operator * ptr)
37+ SupportsOperation::SupportsOperation (const SupportsOperation * ptr)
3838 : SupportsCondition(ptr),
3939 left_ (ptr->left_),
4040 right_(ptr->right_),
4141 operand_(ptr->operand_)
4242 { }
4343
44- bool Supports_Operator ::needs_parens (SupportsConditionObj cond) const
44+ bool SupportsOperation ::needs_parens (SupportsConditionObj cond) const
4545 {
46- if (Supports_Operator_Obj op = Cast<Supports_Operator >(cond)) {
46+ if (SupportsOperationObj op = Cast<SupportsOperation >(cond)) {
4747 return op->operand () != operand ();
4848 }
4949 return Cast<Supports_Negation>(cond) != NULL ;
@@ -62,7 +62,7 @@ namespace Sass {
6262 bool Supports_Negation::needs_parens (SupportsConditionObj cond) const
6363 {
6464 return Cast<Supports_Negation>(cond) ||
65- Cast<Supports_Operator >(cond);
65+ Cast<SupportsOperation >(cond);
6666 }
6767
6868 // ///////////////////////////////////////////////////////////////////////
@@ -103,7 +103,7 @@ namespace Sass {
103103
104104 IMPLEMENT_AST_OPERATORS (SupportsRule);
105105 IMPLEMENT_AST_OPERATORS (SupportsCondition);
106- IMPLEMENT_AST_OPERATORS (Supports_Operator );
106+ IMPLEMENT_AST_OPERATORS (SupportsOperation );
107107 IMPLEMENT_AST_OPERATORS (Supports_Negation);
108108 IMPLEMENT_AST_OPERATORS (Supports_Declaration);
109109 IMPLEMENT_AST_OPERATORS (Supports_Interpolation);
0 commit comments