Class: Solargraph::Source::Chain::ZSuper
- Defined in:
- lib/solargraph/source/chain/z_super.rb
Instance Attribute Summary collapse
- #arguments ⇒ ::Array<Chain> readonly
- #word ⇒ String readonly
Attributes inherited from Call
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
Constructor Details
#initialize(word, with_block = false) ⇒ ZSuper
Returns a new instance of ZSuper.
15 16 17 |
# File 'lib/solargraph/source/chain/z_super.rb', line 15 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
22 23 24 |
# File 'lib/solargraph/source/chain/z_super.rb', line 22 def resolve api_map, name_pin, locals super_pins(api_map, name_pin) end |