summaryrefslogtreecommitdiffstats
path: root/method.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 03:09:16 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-28 03:09:16 +0000
commited89a3bb20eafd6a564929833e6a4134ad84fdf0 (patch)
tree81ff0a9316d3abe54e8aff5e33e4729faeaff3f1 /method.h
parent191e9c2260f4f1a0f572fc4c29eae73c60270b3b (diff)
downloadruby-ed89a3bb20eafd6a564929833e6a4134ad84fdf0.tar.gz
ruby-ed89a3bb20eafd6a564929833e6a4134ad84fdf0.tar.xz
ruby-ed89a3bb20eafd6a564929833e6a4134ad84fdf0.zip
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25129 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'method.h')
-rw-r--r--method.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/method.h b/method.h
index 8090b6354..b6ed9b64e 100644
--- a/method.h
+++ b/method.h
@@ -39,7 +39,8 @@ typedef enum {
VM_METHOD_TYPE_ZSUPER,
VM_METHOD_TYPE_UNDEF,
VM_METHOD_TYPE_NOTIMPLEMENTED,
- VM_METHOD_TYPE_OPTIMIZED /* Kernel#send, Proc#call, etc */
+ VM_METHOD_TYPE_OPTIMIZED, /* Kernel#send, Proc#call, etc */
+ VM_METHOD_TYPE_MISSING, /* wrapper for method_missing(id) */
} rb_method_type_t;
typedef struct rb_method_cfunc_struct {