Method: RuboCop::AST::MethodDispatchNode#arguments

Defined in:
lib/rubocop/ast/node/mixin/method_dispatch_node.rb

#argumentsArray<Node>

An array containing the arguments of the dispatched method.

Returns:

  • (Array<Node>)

    the arguments of the dispatched method



28
29
30
# File 'lib/rubocop/ast/node/mixin/method_dispatch_node.rb', line 28

def arguments
  node_parts[2..-1]
end