Actions
Bug #6644
closedWeird behavior of defined?(super) check invoked from a metaprogrammatically defined class method
Description
=begin
Lately I came across some weird behavior with the (({defined?})) operator used to check if (({super})) keyword can be invoked in current context. Usually it works fine, but when I tried to combine the (({defined? super})) check with a tiny bit of metaprogramming, it gave me unexpected results.
Here's an example:
class A;
def self.def_f!;
singleton_class.send(:define_method, :f) { defined? super }
end
end
class AA < A; end
A.def_f!
A.f # => nil
AA.f # => nil
AA.def_f!
AA.f # => "super"
A.f # => "super" - WHY???
The last result is really strange, isn't it?
A.f has no super method, so I would expect the last (({A.f})) to return (({nil})).
Is it a bug?
=end
Actions
Like0
Like0Like0Like0