class Steep::Errors::IncompatibleAssignment
def initialize(node:, lhs_type:, rhs_type:, result:)
def initialize(node:, lhs_type:, rhs_type:, result:) super(node: node) @lhs_type = lhs_type @rhs_type = rhs_type @result = result end
def to_s
def to_s "#{location_to_str}: IncompatibleAssignment: lhs_type=#{lhs_type}, rhs_type=#{rhs_type}" end