Project

General

Profile

ActionsLike0

Bug #11022

closed

opening an eigenclass does not change the class variable definition context

Added by bughit (bug hit) about 10 years ago. Updated over 4 years ago.

Status:
Rejected
Target version:
-
ruby -v:
ruby 2.2.1p85 (2015-02-26 revision 49769) [i686-linux]
[ruby-core:<unknown>]
Tags:

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)?

#4

Updated by jeremyevans0 (Jeremy Evans) over 5 years ago

  • Status changed from Open to Rejected
#6

Updated by bughit (bug hit) over 5 years ago

  • Status changed from Rejected to Feedback

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

Also available in: Atom PDF