class RDoc::Store

def make_variable_map variables

def make_variable_map variables
  map = {}
  variables.each { |variable, class_module|
    map[variable] = class_module.full_name
  }
  map
end