class RuboCop::Cop::Lint::UnusedBlockArgument

def define_method_call?(variable)

def define_method_call?(variable)
  call, = *variable.scope.node
  _, method, = *call
  method == :define_method
end