Class: RBS::Types::Union

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(types:, location:) ⇒ Union

Returns a new instance of Union.



589
590
591
592
# File 'lib/rbs/types.rb', line 589

def initialize(types:, location:)
  @types = types
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



587
588
589
# File 'lib/rbs/types.rb', line 587

def location
  @location
end

#typesObject (readonly)

Returns the value of attribute types.



586
587
588
# File 'lib/rbs/types.rb', line 586

def types
  @types
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



594
595
596
# File 'lib/rbs/types.rb', line 594

def ==(other)
  other.is_a?(Union) && other.types == types
end

#each_type(&block) ⇒ Object



629
630
631
632
633
634
635
# File 'lib/rbs/types.rb', line 629

def each_type(&block)
  if block
    types.each(&block)
  else
    enum_for :each_type
  end
end

#free_variables(set = Set.new) ⇒ Object



604
605
606
607
608
609
610
# File 'lib/rbs/types.rb', line 604

def free_variables(set = Set.new)
  set.tap do
    types.each do |type|
      type.free_variables set
    end
  end
end

#hashObject



600
601
602
# File 'lib/rbs/types.rb', line 600

def hash
  self.class.hash ^ types.hash
end

#map_type(&block) ⇒ Object



637
638
639
640
641
642
643
# File 'lib/rbs/types.rb', line 637

def map_type(&block)
  if block
    Union.new(types: types.map(&block), location: location)
  else
    enum_for :map_type
  end
end

#map_type_name(&block) ⇒ Object



645
646
647
648
649
650
# File 'lib/rbs/types.rb', line 645

def map_type_name(&block)
  Union.new(
    types: types.map {|type| type.map_type_name(&block) },
    location: location
  )
end

#sub(s) ⇒ Object



616
617
618
619
# File 'lib/rbs/types.rb', line 616

def sub(s)
  self.class.new(types: types.map {|ty| ty.sub(s) },
                 location: location)
end

#to_json(state = _ = nil) ⇒ Object



612
613
614
# File 'lib/rbs/types.rb', line 612

def to_json(state = _ = nil)
  { class: :union, types: types, location: location }.to_json(state)
end

#to_s(level = 0) ⇒ Object



621
622
623
624
625
626
627
# File 'lib/rbs/types.rb', line 621

def to_s(level = 0)
  if level > 0
    "(#{types.join(" | ")})"
  else
    types.join(" | ")
  end
end