Class: RBS::Types::Union
- Inherits:
-
Object
- Object
- RBS::Types::Union
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#types ⇒ Object
readonly
Returns the value of attribute types.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #each_type(&block) ⇒ Object
- #free_variables(set = Set.new) ⇒ Object
- #has_classish_type? ⇒ Boolean
- #has_self_type? ⇒ Boolean
- #hash ⇒ Object
-
#initialize(types:, location:) ⇒ Union
constructor
A new instance of Union.
- #map_type(&block) ⇒ Object
- #map_type_name(&block) ⇒ Object
- #sub(s) ⇒ Object
- #to_json(state = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
- #with_nonreturn_void? ⇒ Boolean
Constructor Details
#initialize(types:, location:) ⇒ Union
Returns a new instance of Union.
745 746 747 748 |
# File 'lib/rbs/types.rb', line 745 def initialize(types:, location:) @types = types @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
743 744 745 |
# File 'lib/rbs/types.rb', line 743 def location @location end |
#types ⇒ Object (readonly)
Returns the value of attribute types.
742 743 744 |
# File 'lib/rbs/types.rb', line 742 def types @types end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
750 751 752 |
# File 'lib/rbs/types.rb', line 750 def ==(other) other.is_a?(Union) && other.types == types end |
#each_type(&block) ⇒ Object
796 797 798 799 800 801 802 |
# File 'lib/rbs/types.rb', line 796 def each_type(&block) if block types.each(&block) else enum_for :each_type end end |
#free_variables(set = Set.new) ⇒ Object
760 761 762 763 764 765 766 |
# File 'lib/rbs/types.rb', line 760 def free_variables(set = Set.new) set.tap do types.each do |type| type.free_variables set end end end |
#has_classish_type? ⇒ Boolean
823 824 825 |
# File 'lib/rbs/types.rb', line 823 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end |
#has_self_type? ⇒ Boolean
819 820 821 |
# File 'lib/rbs/types.rb', line 819 def has_self_type? each_type.any? {|type| type.has_self_type? } end |
#hash ⇒ Object
756 757 758 |
# File 'lib/rbs/types.rb', line 756 def hash self.class.hash ^ types.hash end |
#map_type(&block) ⇒ Object
804 805 806 807 808 809 810 |
# File 'lib/rbs/types.rb', line 804 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
812 813 814 815 816 817 |
# File 'lib/rbs/types.rb', line 812 def map_type_name(&block) Union.new( types: types.map {|type| type.map_type_name(&block) }, location: location ) end |
#sub(s) ⇒ Object
772 773 774 775 776 777 |
# File 'lib/rbs/types.rb', line 772 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
768 769 770 |
# File 'lib/rbs/types.rb', line 768 def to_json(state = nil) { class: :union, types: types, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
# File 'lib/rbs/types.rb', line 779 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
827 828 829 |
# File 'lib/rbs/types.rb', line 827 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } # steep:ignore DeprecatedReference end |