[前][次][番号順一覧][スレッド一覧]

ruby-changes:57732

From: Nobuyoshi <ko1@a...>
Date: Fri, 13 Sep 2019 17:25:28 +0900 (JST)
Subject: [ruby-changes:57732] 5f5aca1b5f (master): Moved ruby_node_name declaration to node.h

https://git.ruby-lang.org/ruby.git/commit/?id=5f5aca1b5f

From 5f5aca1b5fb95013f5b805f74ead4cfa143dc1d8 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Fri, 13 Sep 2019 17:17:21 +0900
Subject: Moved ruby_node_name declaration to node.h


diff --git a/node.h b/node.h
index 73b9444..a493dfa 100644
--- a/node.h
+++ b/node.h
@@ -432,6 +432,7 @@ rb_ast_t *rb_compile_string(const char*, VALUE, int); https://github.com/ruby/ruby/blob/trunk/node.h#L432
 rb_ast_t *rb_compile_file(const char*, VALUE, int);
 
 void rb_node_init(NODE *n, enum node_type type, VALUE a0, VALUE a1, VALUE a2);
+const char *ruby_node_name(int node);
 
 const struct kwtable *rb_reserved_word(const char *, unsigned int);
 
diff --git a/vm_core.h b/vm_core.h
index 52d08fc..99c4d13 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -1020,7 +1020,6 @@ rb_iseq_t *rb_iseq_compile_with_option(VALUE src, VALUE file, VALUE realpath, VA https://github.com/ruby/ruby/blob/trunk/vm_core.h#L1020
 
 VALUE rb_iseq_disasm(const rb_iseq_t *iseq);
 int rb_iseq_disasm_insn(VALUE str, const VALUE *iseqval, size_t pos, const rb_iseq_t *iseq, VALUE child);
-const char *ruby_node_name(int node);
 
 VALUE rb_iseq_coverage(const rb_iseq_t *iseq);
 
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]