Class: Solargraph::Source::Chain::ZSuper
- Defined in:
- lib/solargraph/source/chain/z_super.rb
Constant Summary
Constants included from Logging
Logging::DEFAULT_LOG_LEVEL, Logging::LOG_LEVELS
Instance Attribute Summary collapse
- #arguments ⇒ ::Array<Chain> readonly
- #word ⇒ String readonly
Attributes inherited from Call
Attributes inherited from Link
Instance Method Summary collapse
-
#initialize(word, with_block = false) ⇒ ZSuper
constructor
A new instance of ZSuper.
- #resolve(api_map, name_pin, locals) ⇒ Object
Methods inherited from Call
Methods inherited from Link
#clone_body, #clone_head, #constant?, #desc, #head?, #inspect, #nullable?, #to_s, #undefined?
Methods included from Logging
Methods included from Equality
#==, #eql?, #equality_fields, #freeze, #hash
Constructor Details
#initialize(word, with_block = false) ⇒ ZSuper
Returns a new instance of ZSuper.
17 18 19 |
# File 'lib/solargraph/source/chain/z_super.rb', line 17 def initialize word, with_block = false super(word, nil, [], with_block) end |
Instance Attribute Details
#arguments ⇒ ::Array<Chain> (readonly)
11 12 13 |
# File 'lib/solargraph/source/chain/z_super.rb', line 11 def arguments @arguments end |
#word ⇒ String (readonly)
8 9 10 |
# File 'lib/solargraph/source/chain/z_super.rb', line 8 def word @word end |
Instance Method Details
#resolve(api_map, name_pin, locals) ⇒ Object
24 25 26 |
# File 'lib/solargraph/source/chain/z_super.rb', line 24 def resolve api_map, name_pin, locals return super_pins(api_map, name_pin) end |