module RuboCop::AST::ParameterizedNode::WrappedArguments

def arguments

Returns:
  • (Array) - The arguments of the node.
def arguments
  first = children.first
  if first&.begin_type?
    first.children
  else
    children
  end
end