Method: RuboCop::AST::DefNode#receiver

Defined in:
lib/rubocop/ast/node/def_node.rb

#receiverNode?

The receiver of the method definition, if any.

Returns:

  • (Node, nil)

    the receiver of the method definition, or nil.



58
59
60
# File 'lib/rubocop/ast/node/def_node.rb', line 58

def receiver
  children[-4]
end