* class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19476 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
75b10ac696
commit
68a533c611
@ -1,3 +1,7 @@
|
|||||||
|
Tue Sep 23 17:05:14 2008 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* class.c, vm_core.h: move decl of rb_iseq_clone() to class.c.
|
||||||
|
|
||||||
Tue Sep 23 17:02:47 2008 Tanaka Akira <akr@fsij.org>
|
Tue Sep 23 17:02:47 2008 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* debug.h (ruby_set_debug_option): declared.
|
* debug.h (ruby_set_debug_option): declared.
|
||||||
|
2
class.c
2
class.c
@ -70,6 +70,8 @@ struct clone_method_data {
|
|||||||
VALUE klass;
|
VALUE klass;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
|
||||||
|
|
||||||
static int
|
static int
|
||||||
clone_method(ID mid, NODE *body, struct clone_method_data *data)
|
clone_method(ID mid, NODE *body, struct clone_method_data *data)
|
||||||
{
|
{
|
||||||
|
@ -455,7 +455,6 @@ VALUE rb_iseq_compile(VALUE src, VALUE file, VALUE line);
|
|||||||
VALUE ruby_iseq_disasm(VALUE self);
|
VALUE ruby_iseq_disasm(VALUE self);
|
||||||
VALUE ruby_iseq_disasm_insn(VALUE str, VALUE *iseqval, int pos, rb_iseq_t *iseq, VALUE child);
|
VALUE ruby_iseq_disasm_insn(VALUE str, VALUE *iseqval, int pos, rb_iseq_t *iseq, VALUE child);
|
||||||
const char *ruby_node_name(int node);
|
const char *ruby_node_name(int node);
|
||||||
VALUE rb_iseq_clone(VALUE iseqval, VALUE newcbase);
|
|
||||||
int rb_iseq_first_lineno(rb_iseq_t *iseq);
|
int rb_iseq_first_lineno(rb_iseq_t *iseq);
|
||||||
|
|
||||||
RUBY_EXTERN VALUE rb_cISeq;
|
RUBY_EXTERN VALUE rb_cISeq;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user