Actions
Feature #10108
closedNameError#name and nested constants
Feature #10108:
NameError#name and nested constants
Status:
Feedback
Assignee:
-
Target version:
-
Description
Hello,
We wanted to bring a discussion around the behavior of NameError#name with nested constants. The result can be quite unexpected when we are dealing with them. For instance:
Having Math::PHI seems more expected. Rubinius works the same way as MRI while JRuby will return a symbol with the full path (i.e. :"Math::PHI"). Is there any reason why you are returning only the last part of the missing "path" ? At the very least, there is a documentation problem since NameError#name's documentation states:
but it always return a symbol.
Have a nice day !
Actions