class RuboCop::Cop::Layout::LineEndStringConcatenationIndentation

def base_column(child)

def base_column(child)
  grandparent = child.parent.parent
  if grandparent&.type == :pair
    grandparent.loc.column
  else
    child.source_range.source_line =~ /\S/
  end
end