From de107086de30354decab4d434064679e325e18dd Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 17 Feb 2006 08:40:52 +0000 Subject: * eval.c (ev_const_get): simplified using rb_const_get_fallback(). * eval.c (ev_const_defined): adopt to ev_const_get() using rb_const_defined_fallback(). * variable.c (rb_const_get_fallback): new function to implement constant search. * variable.c (rb_const_defined_fallback): new function to implement constant definition check. * variable.c (rb_const_get_0): adopt to new behavior. constants are looked up in the order of: current class, super classes (but Object), lexically external classes/modules, and Object. * variable.c (rb_const_defined_0): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 814985bc2..8e98a8a42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Fri Feb 17 17:30:20 2006 Yukihiro Matsumoto + + * eval.c (ev_const_get): simplified using rb_const_get_fallback(). + + * eval.c (ev_const_defined): adopt to ev_const_get() using + rb_const_defined_fallback(). + + * variable.c (rb_const_get_fallback): new function to implement + constant search. + + * variable.c (rb_const_defined_fallback): new function to + implement constant definition check. + + * variable.c (rb_const_get_0): adopt to new behavior. constants + are looked up in the order of: current class, super classes (but + Object), lexically external classes/modules, and Object. + + * variable.c (rb_const_defined_0): ditto. + Fri Feb 17 11:20:53 2006 Hirokazu Yamamoto * util.c (ruby_strtod): Float("1e") should fail. [ruby-core:7330] -- cgit