module RuboCop::AST::MethodDispatchNode

def implicit_call?

Returns:
  • (Boolean) - whether the method is the implicit form of `#call`
def implicit_call?
  method?(:call) && !loc.selector
end