make_variable_map(variables)
public
Converts the variable => ClassModule map variables from a C
parser into a variable => class name map.
# File lib/rdoc/store.rb, line 664
def make_variable_map variables
map = {}
variables.each { |variable, class_module|
map[variable] = class_module.full_name
}
map
end