titanscssc::op_eq PHP Method

op_eq() protected method

protected op_eq ( $left, $right )
    protected function op_eq($left, $right)
    {
        if (($lStr = $this->coerceString($left)) && ($rStr = $this->coerceString($right))) {
            $lStr[1] = "";
            $rStr[1] = "";
            return $this->toBool($this->compileValue($lStr) == $this->compileValue($rStr));
        }
        return $this->toBool($left == $right);
    }
titanscssc