module RuboCop::Cop::MultilineExpressionIndentation

def inside_arg_list_parentheses?(node, ancestor)

def inside_arg_list_parentheses?(node, ancestor)
  return false unless ancestor.send_type? && ancestor.parenthesized?
  node.source_range.begin_pos > ancestor.loc.begin.begin_pos &&
    node.source_range.end_pos < ancestor.loc.end.end_pos
end