ActionsLike0
Bug #11022
closedopening an eigenclass does not change the class variable definition context
ruby -v:
ruby 2.2.1p85 (2015-02-26 revision 49769) [i686-linux]
Description
module Mod1
class << Object.new
C = 1
@@cv = 1
p Module.nesting,
constants(false),
class_variables(false),
Mod1.class_variables(false)
end
end
[#<Class:#<Object:0xb6913d98>>, Mod1]
[:C]
[]
[:@@cv]
Shouldn't class var resolution be relative to the current lexical class (Module.nexting.first)?
Updated by jeremyevans0 (Jeremy Evans) over 5 years ago
- Status changed from Feedback to Assigned
- Assignee set to matz (Yukihiro Matsumoto)
Updated by matz (Yukihiro Matsumoto) over 4 years ago
- Status changed from Assigned to Rejected
ActionsLike0