From 54fdacb12545f40e83b013e7c8207fb5416b1403 Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 7 Nov 2002 19:18:16 +0000 Subject: * class.c (rb_define_method): do not set NOEX_CFUNC if klass is really a module, whose methods must be safe for reciever's type. * eval.c (rb_eval): nosuper should not be inherited unless the overwritten method is an undef placeholder. * parse.y (primary): allow 'when'-less case statement; persuaded by Sean Chittenden. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- node.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'node.h') diff --git a/node.h b/node.h index ec27c86012..691a4cd8c1 100644 --- a/node.h +++ b/node.h @@ -334,12 +334,14 @@ typedef struct RNode { #define NEW_BMETHOD(b) rb_node_newnode(NODE_BMETHOD,0,0,b) #define NOEX_PUBLIC 0 -#define NOEX_UNDEF 1 -#define NOEX_CFUNC 1 +#define NOEX_NOSUPER 1 #define NOEX_PRIVATE 2 #define NOEX_PROTECTED 4 #define NOEX_MASK 6 +#define NOEX_UNDEF NOEX_NOSUPER +#define NOEX_CFUNC NOEX_NOSUPER + NODE *rb_compile_cstr _((const char*, const char*, int, int)); NODE *rb_compile_string _((const char*, VALUE, int)); NODE *rb_compile_file _((const char*, VALUE, int)); -- cgit v1.2.3