class RuboCop::Cop::Style::EmptyLiteral
def first_argument_unparenthesized?(node)
def first_argument_unparenthesized?(node) parent = node.parent return false unless parent && %i[send super zsuper].include?(parent.type) node.equal?(parent.arguments.first) && !parentheses?(node.parent) end