Class: RBS::Types::Optional

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:, location:) ⇒ Optional

Returns a new instance of Optional.



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

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



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

def location
  @location
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

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



472
473
474
# File 'lib/rbs/types.rb', line 472

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

#each_typeObject



502
503
504
505
506
507
508
# File 'lib/rbs/types.rb', line 502

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

#free_variables(set = Set.new) ⇒ Object



482
483
484
# File 'lib/rbs/types.rb', line 482

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

#hashObject



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

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

#map_type_name(&block) ⇒ Object



510
511
512
513
514
515
# File 'lib/rbs/types.rb', line 510

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

#sub(s) ⇒ Object



490
491
492
# File 'lib/rbs/types.rb', line 490

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

#to_json(*a) ⇒ Object



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

def to_json(*a)
  { class: :optional, type: type, location: location }.to_json(*a)
end

#to_s(level = 0) ⇒ Object



494
495
496
497
498
499
500
# File 'lib/rbs/types.rb', line 494

def to_s(level = 0)
  if type.is_a?(RBS::Types::Literal) && type.literal.is_a?(Symbol)
    "#{type.to_s(1)} ?"
  else
    "#{type.to_s(1)}?"
  end
end