Class: Solargraph::Source::Chain::Head
- Defined in:
- lib/solargraph/source/chain/head.rb
Overview
Note:
Chain::Head is only intended to handle ‘self` and `super`.
Chain::Head is a link for ambiguous words, e.g.; ‘String` can refer to either a class (`String`) or a function (`Kernel#String`).
Instance Attribute Summary
Attributes inherited from Link
Instance Method Summary collapse
Methods inherited from Link
#==, #clone_body, #clone_head, #constant?, #head?, #initialize, #undefined?
Constructor Details
This class inherits a constructor from Solargraph::Source::Chain::Link
Instance Method Details
#resolve(api_map, name_pin, locals) ⇒ Object
11 12 13 14 15 |
# File 'lib/solargraph/source/chain/head.rb', line 11 def resolve api_map, name_pin, locals return [Pin::ProxyType.anonymous(name_pin.binder)] if word == 'self' # return super_pins(api_map, name_pin) if word == 'super' [] end |