Class: YARD::Parser::Ruby::MethodCallNode
Managing node state
collapse
Instance Method Details
#block ⇒ Object
457
458
459
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 457
def block
last.type == :do_block || last.type == :brace_block ? last : nil
end
|
#block_param ⇒ Object
455
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 455
def block_param; parameters.last end
|
#call? ⇒ Boolean
432
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 432
def call?; true end
|
#method_name(name_only = false) ⇒ Object
435
436
437
438
439
440
441
442
443
444
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 435
def method_name(name_only = false)
name = self[index_adjust]
if name == :call
nil
elsif name_only && Array === name
name.jump(:ident).first.to_sym
else
name
end
end
|
#namespace ⇒ Object
433
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 433
def namespace; first if index_adjust > 0 end
|
#parameters(include_block_param = true) ⇒ Object
446
447
448
449
450
451
452
453
|
# File 'lib/yard/parser/ruby/ast_node.rb', line 446
def parameters(include_block_param = true)
return [] if type == :vcall
params = self[1 + index_adjust]
return [] unless params
params = call_has_paren? ? params.first : params
return [] unless params
include_block_param ? params : params[0...-1]
end
|