Class: RubyIndexer::Entry::RestParameter

Inherits:
Parameter
  • Object
show all
Defined in:
lib/ruby_indexer/lib/ruby_indexer/entry.rb

Overview

A rest method parameter, e.g. ‘def foo(*a)`

Constant Summary collapse

DEFAULT_NAME =
T.let(:"<anonymous splat>", Symbol)

Instance Attribute Summary

Attributes inherited from Parameter

#name

Instance Method Summary collapse

Methods inherited from Parameter

#initialize

Constructor Details

This class inherits a constructor from RubyIndexer::Entry::Parameter

Instance Method Details

#decorated_nameObject



126
127
128
# File 'lib/ruby_indexer/lib/ruby_indexer/entry.rb', line 126

def decorated_name
  :"*#{@name}"
end