SassLiteral::op_comma PHP Method

op_comma() public method

SassScript ',' operation.
public op_comma ( sassLiteral $other ) : sassString
$other sassLiteral the value to concatenate with a comma to this
return sassString the string values of this and other seperated by ","
    public function op_comma($other)
    {
        return new SassString($this->toString() . ', ' . $other->toString());
    }