class RuboCop::AST::SendNode

A node extension for ‘send` nodes. This will be used in place of a plain node when the builder constructs the AST, making its methods available to all `send` nodes within RuboCop.

Public Instance Methods

send_type?() click to toggle source
# File lib/rubocop/ast/node/send_node.rb, line 18
def send_type?
  true
end

Private Instance Methods

first_argument_index() click to toggle source
# File lib/rubocop/ast/node/send_node.rb, line 24
def first_argument_index
  2
end