= private = protected
find_constant_named(name)
Finds a constant with name in this context
# File lib/rdoc/context.rb, line 791 def find_constant_named(name) @constants.find do |m| m.name == name || m.full_name == name end end