123456789_123456789_123456789_123456789_123456789_

Class: RBS::Types::Optional

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

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(type:, location:) ⇒ Optional

[ GitHub ]

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

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

Instance Attribute Details

#location (readonly)

[ GitHub ]

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

attr_reader :location

#type (readonly)

[ GitHub ]

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

attr_reader :type

Instance Method Details

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

[ GitHub ]

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

def ==(other)
  other.is_a?(Optional) && other.type == type
end

#each_type

[ GitHub ]

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

def each_type
  if block_given?
    yield type
  else
    enum_for :each_type
  end
end

#eql?(other)

Alias for #==.

[ GitHub ]

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

alias eql? ==

#free_variables(set = Set.new)

[ GitHub ]

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

def free_variables(set = Set.new)
  type.free_variables(set)
end

#hash

[ GitHub ]

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

def hash
  self.class.hash ^ type.hash
end

#map_type_name(&block)

[ GitHub ]

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

def map_type_name(&block)
  Optional.new(
    type: type.map_type_name(&block),
    location: location
  )
end

#sub(s)

[ GitHub ]

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

def sub(s)
  self.class.new(type: type.sub(s), location: location)
end

#to_json(state = _ = nil)

[ GitHub ]

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

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

#to_s(level = 0)

[ GitHub ]

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

def to_s(level = 0)
  case t = type
  when RBS::Types::Literal
    case t.literal
    when Symbol
      return "#{type.to_s(1)} ?"
    end
  end

  "#{type.to_s(1)}?"
end