Class: RBI::RestParam

Inherits:
Param show all
Defined in:
lib/rbi/model.rb

Instance Attribute Summary collapse

Attributes inherited from NodeWithComments

#comments

Attributes inherited from Node

#loc, #parent_tree

Instance Method Summary collapse

Methods inherited from Param

#compatible_with?

Methods inherited from NodeWithComments

#annotations, #comments?, #merge_with, #version_requirements

Methods inherited from Node

#compatible_with?, #detach, #merge_with, #parent_conflict_tree, #parent_scope, #print, #rbs_print, #rbs_string, #replace, #satisfies_version?, #string

Constructor Details

#initialize(name, loc: nil, comments: nil, &block) ⇒ RestParam

Returns a new instance of RestParam.

Signature:

  • (String? name, ?loc: Loc?, ?comments: Array[Comment]?) ?{ (RestParam node) -> void } -> void



700
701
702
703
704
# File 'lib/rbi/model.rb', line 700

def initialize(name, loc: nil, comments: nil, &block)
  super(loc: loc, comments: comments)
  @name = name&.to_s #: String?
  block&.call(self)
end

Instance Attribute Details

#nameObject (readonly)

Signature:

  • String?



697
698
699
# File 'lib/rbi/model.rb', line 697

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object

Signature:

  • (Object? other) -> bool



719
720
721
# File 'lib/rbi/model.rb', line 719

def ==(other)
  RestParam === other && (name == other.name || anonymous? || other.anonymous?)
end

#anonymous?Boolean

Signature:

  • -> bool

Returns:

  • (Boolean)


714
715
716
# File 'lib/rbi/model.rb', line 714

def anonymous?
  name.nil?
end

#to_sObject

Signature:

  • -> String



708
709
710
# File 'lib/rbi/model.rb', line 708

def to_s
  "*#{name}"
end