Rename rb_node_name to the original name

98637d421d changes the name of
the function. However this function is exported as global,
then change the name to origin one for keeping compatibility.
This commit is contained in:
yui-knk 2023-05-24 17:24:41 +09:00 committed by Yuichiro Kaneko
parent d8da563f9e
commit 5f65e8c5d5
Notes: git 2023-05-24 11:55:17 +00:00
6 changed files with 16 additions and 16 deletions

2
node.h
View file

@ -441,7 +441,7 @@ rb_ast_t *rb_parser_compile_file_path(VALUE vparser, VALUE fname, VALUE input, i
rb_ast_t *rb_parser_compile_generic(VALUE vparser, VALUE (*lex_gets)(VALUE, int), VALUE fname, VALUE input, int line);
void rb_node_init(NODE *n, enum node_type type, VALUE a0, VALUE a1, VALUE a2);
const char *rb_node_name(int node);
const char *ruby_node_name(int node);
const struct kwtable *rb_reserved_word(const char *, unsigned int);