class Solargraph::Source::Chain::ZSuper

Attributes

arguments[R]

@return [Array<Chain>]

word[R]

@return [String]

Public Class Methods

new(word, with_block = false) click to toggle source

@param word [String] @param arguments [Array<Chain>] @param with_block [Boolean] True if the chain is inside a block @param head [Boolean] True if the call is the start of its chain

Calls superclass method Solargraph::Source::Chain::Call::new
# File lib/solargraph/source/chain/z_super.rb, line 17
def initialize word, with_block = false
  super(word, [], with_block)
end

Public Instance Methods

resolve(api_map, name_pin, locals) click to toggle source

@param api_map [ApiMap] @param name_pin [Pin::Base] @param locals [Array<Pin::Base>]

# 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