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.



630
631
632
633
# File 'lib/rbs/types.rb', line 630

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



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

def location
  @location
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

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



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

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

#each_typeObject



671
672
673
674
675
676
677
# File 'lib/rbs/types.rb', line 671

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

#free_variables(set = Set.new) ⇒ Object



645
646
647
# File 'lib/rbs/types.rb', line 645

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

#has_classish_type?Boolean

Returns:

  • (Boolean)


701
702
703
# File 'lib/rbs/types.rb', line 701

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

#has_self_type?Boolean

Returns:

  • (Boolean)


697
698
699
# File 'lib/rbs/types.rb', line 697

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

#hashObject



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

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

#map_type(&block) ⇒ Object



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

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



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

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

#sub(s) ⇒ Object



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

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

#to_json(state = _ = nil) ⇒ Object



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

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

#to_s(level = 0) ⇒ Object



657
658
659
660
661
662
663
664
665
666
667
668
669
# File 'lib/rbs/types.rb', line 657

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)


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

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