Project

General

Profile

Actions

Bug #11294

closed

Possible bug in Object.const_get

Added by nepalez (Andrew Kozin) almost 9 years ago. Updated almost 9 years ago.

Status:
Rejected
Assignee:
-
Target version:
-
[ruby-core:69704]

Description

module Foo; end
module Foo::Baz; end
module Bar; end
module Bar::Qux; end

Object.const_get "Foo::Baz::Bar::Qux"
# => Bar::Qux

Why on earth it is found at all?
It seems pretty weird to me.

The real problem arises later, when I add Foo::Bar::Qux:

module Foo::Bar; end
module Foo::Bar::Qux; end

then the tree becomes as following:

Foo::Bar::Qux
Foo::Baz
Bar::Qux

But the result remains the same:

Object.const_get "Foo::Baz::Bar::Qux"
# => Bar::Qux

Here I'd expect searching "Foo::Baz::Bar::Qux" to

  • either return nothing (this is less astonished, because there is no such constant),
  • or find the closest Bar::Qux to Foo::Bar, that is Foo::Bar::Qux, not the Bar::Qux

I cannot even understand the logic that follows the Object.const_get in providing such a result.

Actions

Also available in: Atom PDF

Like0
Like0Like0