RUBY-4164
Autocompletion for module doesn't work if in context defined module and method with the same names
1
Visible to:
All Users
def Hpricot(input = nil, opts = {}, &blk)
end
module Hpricot
class Env
end
end
p defined? Hpricot::Env #"constant"
p defined? Hpricot() # "method"
p defined? Hpricot #"constant"
module Nokogiri
end
def Nokogiri(*args, &block)
end