123456789_123456789_123456789_123456789_123456789_

Class: RBS::Types::Tuple

Relationships & Source Files
Inherits: Object
Defined in: lib/rbs/types.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(types:, location:) ⇒ Tuple

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 438

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

Instance Attribute Details

#has_classish_type?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 508

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

#has_self_type?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 504

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

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 436

attr_reader :location

#types (readonly)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 435

attr_reader :types

#with_nonreturn_void?Boolean (readonly)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 512

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

Instance Method Details

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

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 443

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

#each_type(&block)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 478

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

#eql?(other)

Alias for #==.

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 447

alias eql? ==

#free_variables(set = Set.new)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 453

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

#hash

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 449

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

#map_type(&block)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 493

def map_type(&block)
  if block
    Tuple.new(
      types: types.map {|type| yield type },
      location: location
    )
  else
    enum_for :map_type
  end
end

#map_type_name(&block)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 486

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

#sub(s)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 465

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

#to_json(state = _ = nil)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 461

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

#to_s(level = 0)

[ GitHub ]

  
# File 'lib/rbs/types.rb', line 470

def to_s(level = 0)
  if types.empty?
    "[ ]"
  else
    "[ #{types.join(", ")} ]"
  end
end