class RuboCop::CommentConfig

def non_comment_token_line_numbers

def non_comment_token_line_numbers
  @non_comment_token_line_numbers ||= begin
    non_comment_tokens = processed_source.tokens.reject do |token|
      token.type == :tCOMMENT
    end
    non_comment_tokens.map { |token| token.pos.line }.uniq
  end
end