module RuboCop::Cop::SurroundingSpace

def token_table

def token_table
  @token_table ||= begin
    table = {}
    @processed_source.tokens.each_with_index do |t, ix|
      table[t.line] ||= {}
      table[t.line][t.column] = ix
    end
    table
  end
end