SassLiteral::op_eq PHP Method

op_eq() public method

The SassScript == operation.
public op_eq ( sassLiteral $other ) : SassBoolean
$other sassLiteral the value to compare to this
return SassBoolean SassBoolean object with the value true if this and other are equal, false if they are not
    public function op_eq($other)
    {
        return new SassBoolean($this == $other);
    }