Class: RBS::Types::Optional
- Inherits:
-
Object
- Object
- RBS::Types::Optional
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #each_type ⇒ Object
- #free_variables(set = Set.new) ⇒ Object
- #has_classish_type? ⇒ Boolean
- #has_self_type? ⇒ Boolean
- #hash ⇒ Object
-
#initialize(type:, location:) ⇒ Optional
constructor
A new instance of Optional.
- #map_type(&block) ⇒ Object
- #map_type_name(&block) ⇒ Object
- #sub(s) ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
- #with_nonreturn_void? ⇒ Boolean
Constructor Details
#initialize(type:, location:) ⇒ Optional
649 650 651 652 |
# File 'lib/rbs/types.rb', line 649 def initialize(type:, location:) @type = type @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
647 648 649 |
# File 'lib/rbs/types.rb', line 647 def location @location end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
646 647 648 |
# File 'lib/rbs/types.rb', line 646 def type @type end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
654 655 656 |
# File 'lib/rbs/types.rb', line 654 def ==(other) other.is_a?(Optional) && other.type == type end |
#each_type ⇒ Object
692 693 694 695 696 697 698 |
# File 'lib/rbs/types.rb', line 692 def each_type if block_given? yield type else enum_for :each_type end end |
#free_variables(set = Set.new) ⇒ Object
664 665 666 |
# File 'lib/rbs/types.rb', line 664 def free_variables(set = Set.new) type.free_variables(set) end |
#has_classish_type? ⇒ Boolean
722 723 724 |
# File 'lib/rbs/types.rb', line 722 def has_classish_type? each_type.any? {|type| type.has_classish_type? } end |
#has_self_type? ⇒ Boolean
718 719 720 |
# File 'lib/rbs/types.rb', line 718 def has_self_type? each_type.any? {|type| type.has_self_type? } end |
#hash ⇒ Object
660 661 662 |
# File 'lib/rbs/types.rb', line 660 def hash self.class.hash ^ type.hash end |
#map_type(&block) ⇒ Object
707 708 709 710 711 712 713 714 715 716 |
# File 'lib/rbs/types.rb', line 707 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
700 701 702 703 704 705 |
# File 'lib/rbs/types.rb', line 700 def map_type_name(&block) Optional.new( type: type.map_type_name(&block), location: location ) end |
#sub(s) ⇒ Object
672 673 674 675 676 |
# File 'lib/rbs/types.rb', line 672 def sub(s) return self if s.empty? self.class.new(type: type.sub(s), location: location) end |
#to_json(state = _ = nil) ⇒ Object
668 669 670 |
# File 'lib/rbs/types.rb', line 668 def to_json(state = _ = nil) { class: :optional, type: type, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
678 679 680 681 682 683 684 685 686 687 688 689 690 |
# File 'lib/rbs/types.rb', line 678 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
726 727 728 |
# File 'lib/rbs/types.rb', line 726 def with_nonreturn_void? each_type.any? {|type| type.with_nonreturn_void? } end |