Class: RBI::RestParam
- Inherits:
-
Param
show all
- Extended by:
- T::Sig
- Defined in:
- lib/rbi/model.rb,
lib/rbi/printer.rb
Instance Attribute Summary
Attributes inherited from Param
#name
#comments
Attributes inherited from Node
#loc, #parent_tree
Instance Method Summary
collapse
Methods inherited from Param
#comments_lines
#annotations, #merge_with, #oneline?
Methods inherited from Node
#compatible_with?, #detach, #group_kind, #merge_with, #oneline?, #parent_conflict_tree, #parent_scope, #print, #print_blank_line_before, #replace, #string
Constructor Details
#initialize(name, loc: nil, comments: [], &block) ⇒ RestParam
Returns a new instance of RestParam.
631
632
633
634
|
# File 'lib/rbi/model.rb', line 631
def initialize(name, loc: nil, comments: [], &block)
super(name, loc: loc, comments: )
block&.call(self)
end
|
Instance Method Details
#==(other) ⇒ Object
642
643
644
|
# File 'lib/rbi/model.rb', line 642
def ==(other)
RestParam === other && name == other.name
end
|
#accept_printer(v) ⇒ Object
453
454
455
|
# File 'lib/rbi/printer.rb', line 453
def accept_printer(v)
v.print("*#{name}")
end
|
458
459
460
461
|
# File 'lib/rbi/printer.rb', line 458
def (v, last:)
super
v.print(" ")
end
|
#to_s ⇒ Object
637
638
639
|
# File 'lib/rbi/model.rb', line 637
def to_s
"*#{name}"
end
|