diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-14 23:54:06 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-11-14 23:54:06 +0000 |
commit | f8c4023772983c322280762e720a50d9604188ac (patch) | |
tree | 9f279add5f9f86d3340ec0be83469291a2601bbc /node.h | |
parent | 1abc48beac217c488391adeb3bf3f60781e48e3d (diff) | |
download | ruby-f8c4023772983c322280762e720a50d9604188ac.tar.gz ruby-f8c4023772983c322280762e720a50d9604188ac.tar.xz ruby-f8c4023772983c322280762e720a50d9604188ac.zip |
* eval.c (rb_method_node): new API to retrieve method body.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r-- | node.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -352,6 +352,8 @@ NODE *rb_compile_file _((const char*, VALUE, int)); void rb_add_method _((VALUE, ID, NODE *, int)); NODE *rb_node_newnode _((enum node_type,VALUE,VALUE,VALUE)); +NODE* rb_method_node _((VALUE klass, ID id)); + struct global_entry *rb_global_entry _((ID)); VALUE rb_gvar_get _((struct global_entry *)); VALUE rb_gvar_set _((struct global_entry *, VALUE)); |