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.



637
638
639
640
# File 'lib/rbs/types.rb', line 637

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



635
636
637
# File 'lib/rbs/types.rb', line 635

def location
  @location
end

#typeObject (readonly)

Returns the value of attribute type.



634
635
636
# File 'lib/rbs/types.rb', line 634

def type
  @type
end

Instance Method Details

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



642
643
644
# File 'lib/rbs/types.rb', line 642

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

#each_typeObject



678
679
680
681
682
683
684
# File 'lib/rbs/types.rb', line 678

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

#free_variables(set = Set.new) ⇒ Object



652
653
654
# File 'lib/rbs/types.rb', line 652

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

#has_classish_type?Boolean

Returns:

  • (Boolean)


708
709
710
# File 'lib/rbs/types.rb', line 708

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

#has_self_type?Boolean

Returns:

  • (Boolean)


704
705
706
# File 'lib/rbs/types.rb', line 704

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

#hashObject



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

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

#map_type(&block) ⇒ Object



693
694
695
696
697
698
699
700
701
702
# File 'lib/rbs/types.rb', line 693

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

#map_type_name(&block) ⇒ Object



686
687
688
689
690
691
# File 'lib/rbs/types.rb', line 686

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

#sub(s) ⇒ Object



660
661
662
# File 'lib/rbs/types.rb', line 660

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

#to_json(state = _ = nil) ⇒ Object



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

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

#to_s(level = 0) ⇒ Object



664
665
666
667
668
669
670
671
672
673
674
675
676
# File 'lib/rbs/types.rb', line 664

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

#with_nonreturn_void?Boolean

Returns:

  • (Boolean)


712
713
714
# File 'lib/rbs/types.rb', line 712

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