1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_core.h: Declare rb_iseq_clone, which is used in class.c.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-08-13 02:46:54 +00:00
parent e9ebe1a161
commit 7fe95731a8
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Aug 13 11:45:51 2008 Akinori MUSHA <knu@iDaemons.org>
* vm_core.h: Declare rb_iseq_clone, which is used in class.c.
Wed Aug 13 11:39:19 2008 Tanaka Akira <akr@fsij.org>
* transcode.c (transcode_search_path): return the length of converter

View file

@ -507,6 +507,7 @@ VALUE rb_iseq_compile(VALUE src, VALUE file, VALUE line);
VALUE ruby_iseq_disasm(VALUE self);
VALUE ruby_iseq_disasm_insn(VALUE str, VALUE *iseqval, int pos, rb_iseq_t *iseq, VALUE child);
const char *ruby_node_name(int node);
VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
RUBY_EXTERN VALUE rb_cISeq;
RUBY_EXTERN VALUE rb_cRubyVM;