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.



735
736
737
738
# File 'lib/rbs/types.rb', line 735

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



733
734
735
# File 'lib/rbs/types.rb', line 733

def location
  @location
end

#typesObject (readonly)

Returns the value of attribute types.



732
733
734
# File 'lib/rbs/types.rb', line 732

def types
  @types
end

Instance Method Details

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



740
741
742
# File 'lib/rbs/types.rb', line 740

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

#each_type(&block) ⇒ Object



786
787
788
789
790
791
792
# File 'lib/rbs/types.rb', line 786

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

#free_variables(set = Set.new) ⇒ Object



750
751
752
753
754
755
756
# File 'lib/rbs/types.rb', line 750

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

#has_classish_type?Boolean

Returns:

  • (Boolean)


813
814
815
# File 'lib/rbs/types.rb', line 813

def has_classish_type?
  each_type.any? {|type| type.has_classish_type? }
end

#has_self_type?Boolean

Returns:

  • (Boolean)


809
810
811
# File 'lib/rbs/types.rb', line 809

def has_self_type?
  each_type.any? {|type| type.has_self_type? }
end

#hashObject



746
747
748
# File 'lib/rbs/types.rb', line 746

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

#map_type(&block) ⇒ Object



794
795
796
797
798
799
800
# File 'lib/rbs/types.rb', line 794

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



802
803
804
805
806
807
# File 'lib/rbs/types.rb', line 802

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

#sub(s) ⇒ Object



762
763
764
765
766
767
# File 'lib/rbs/types.rb', line 762

def sub(s)
  return self if s.empty?

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

#to_json(state = _ = nil) ⇒ Object



758
759
760
# File 'lib/rbs/types.rb', line 758

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

#to_s(level = 0) ⇒ Object



769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
# File 'lib/rbs/types.rb', line 769

def to_s(level = 0)
  strs = types.map do |ty|
    case ty
    when Intersection
      ty.to_s([1, level].max)
    else
      ty.to_s
    end
  end

  if level > 0
    "(#{strs.join(" | ")})"
  else
    strs.join(" | ")
  end
end

#with_nonreturn_void?Boolean

Returns:

  • (Boolean)


817
818
819
# File 'lib/rbs/types.rb', line 817

def with_nonreturn_void?
  each_type.any? {|type| type.with_nonreturn_void? }
end