class RuboCop::Cop::Layout::FirstArgumentIndentation

def comment_lines

def comment_lines
  @comment_lines ||=
    processed_source
    .comments
    .select { |c| begins_its_line?(c.source_range) }
    .map { |c| c.loc.line }
end