Class: RBS::Types::Function::Param

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:, name:, location: nil) ⇒ Param

Returns a new instance of Param.



728
729
730
731
732
# File 'lib/rbs/types.rb', line 728

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



726
727
728
# File 'lib/rbs/types.rb', line 726

def location
  @location
end

#nameObject (readonly)

Returns the value of attribute name.



725
726
727
# File 'lib/rbs/types.rb', line 725

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



724
725
726
# File 'lib/rbs/types.rb', line 724

def type
  @type
end

Instance Method Details

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



734
735
736
# File 'lib/rbs/types.rb', line 734

def ==(other)
  other.is_a?(Param) && other.type == type && other.name == name
end

#hashObject



740
741
742
# File 'lib/rbs/types.rb', line 740

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

#map_type(&block) ⇒ Object



744
745
746
747
748
749
750
# File 'lib/rbs/types.rb', line 744

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

#to_json(state = _ = nil) ⇒ Object



752
753
754
# File 'lib/rbs/types.rb', line 752

def to_json(state = _ = nil)
  { type: type, name: name }.to_json(state)
end

#to_sObject



756
757
758
759
760
761
762
763
764
765
766
# File 'lib/rbs/types.rb', line 756

def to_s
  if name
    if Parser::KEYWORDS.include?(name.to_s)
      "#{type} `#{name}`"
    else
      "#{type} #{name}"
    end
  else
    "#{type}"
  end
end