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 609

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

Instance Attribute Details

#has_classish_type?Boolean (readonly)

[ GitHub ]

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

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 676

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

#location (readonly)

[ GitHub ]

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

attr_reader :location

#type (readonly)

[ GitHub ]

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

attr_reader :type

#with_nonreturn_void?Boolean (readonly)

[ GitHub ]

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

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 614

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

#each_type

[ GitHub ]

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

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 618

alias eql? ==

#free_variables(set = Set.new)

[ GitHub ]

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

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

#hash

[ GitHub ]

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

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

#map_type(&block)

[ GitHub ]

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

def map_type(&block)
  if block
    Optional.new(
      type: yield(type),
      location: location
    )
  else
    enum_for :map_type
  end
end

#map_type_name(&block)

[ GitHub ]

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

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 632

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

#to_json(state = _ = nil)

[ GitHub ]

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

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 636

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

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