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.



877
878
879
880
881
# File 'lib/rbs/types.rb', line 877

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



875
876
877
# File 'lib/rbs/types.rb', line 875

def location
  @location
end

#nameObject (readonly)

Returns the value of attribute name.



874
875
876
# File 'lib/rbs/types.rb', line 874

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



873
874
875
# File 'lib/rbs/types.rb', line 873

def type
  @type
end

Instance Method Details

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



883
884
885
# File 'lib/rbs/types.rb', line 883

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

#hashObject



889
890
891
# File 'lib/rbs/types.rb', line 889

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

#map_type(&block) ⇒ Object



893
894
895
896
897
898
899
# File 'lib/rbs/types.rb', line 893

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



901
902
903
# File 'lib/rbs/types.rb', line 901

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

#to_sObject



905
906
907
908
909
910
911
912
913
914
915
# File 'lib/rbs/types.rb', line 905

def to_s
  if name
    if name.match?(/\A[a-zA-Z0-9_]+\z/)
      "#{type} #{name}"
    else
      "#{type} `#{name}`"
    end
  else
    "#{type}"
  end
end