node.c: constify NODE* arguments in node.c

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2018-01-05 07:47:51 +00:00
parent 0268c85e85
commit a6794c4b01
2 changed files with 6 additions and 6 deletions

8
node.c
View File

@ -132,11 +132,11 @@ dump_option(VALUE buf, VALUE indent, VALUE opt)
rb_hash_foreach(opt, add_option_i, (VALUE)&arg); rb_hash_foreach(opt, add_option_i, (VALUE)&arg);
} }
static void dump_node(VALUE, VALUE, int, NODE *); static void dump_node(VALUE, VALUE, int, const NODE *);
static const char default_indent[] = "| "; static const char default_indent[] = "| ";
static void static void
dump_array(VALUE buf, VALUE indent, int comment, NODE *node) dump_array(VALUE buf, VALUE indent, int comment, const NODE *node)
{ {
int field_flag; int field_flag;
const char *next_indent = default_indent; const char *next_indent = default_indent;
@ -151,7 +151,7 @@ dump_array(VALUE buf, VALUE indent, int comment, NODE *node)
} }
static void static void
dump_node(VALUE buf, VALUE indent, int comment, NODE *node) dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
{ {
int field_flag; int field_flag;
int i; int i;
@ -1056,7 +1056,7 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
} }
VALUE VALUE
rb_parser_dump_tree(NODE *node, int comment) rb_parser_dump_tree(const NODE *node, int comment)
{ {
VALUE buf = rb_str_new_cstr( VALUE buf = rb_str_new_cstr(
"###########################################################\n" "###########################################################\n"

4
node.h
View File

@ -470,7 +470,7 @@ typedef struct node_buffer_struct node_buffer_t;
typedef struct rb_ast_struct { typedef struct rb_ast_struct {
VALUE flags; VALUE flags;
VALUE reserved1; VALUE reserved1;
NODE *root; const NODE *root;
node_buffer_t *node_buffer; node_buffer_t *node_buffer;
VALUE mark_ary; VALUE mark_ary;
} rb_ast_t; } rb_ast_t;
@ -488,7 +488,7 @@ VALUE rb_parser_end_seen_p(VALUE);
VALUE rb_parser_encoding(VALUE); VALUE rb_parser_encoding(VALUE);
VALUE rb_parser_get_yydebug(VALUE); VALUE rb_parser_get_yydebug(VALUE);
VALUE rb_parser_set_yydebug(VALUE, VALUE); VALUE rb_parser_set_yydebug(VALUE, VALUE);
VALUE rb_parser_dump_tree(NODE *node, int comment); VALUE rb_parser_dump_tree(const NODE *node, int comment);
void rb_parser_set_options(VALUE, int, int, int, int); void rb_parser_set_options(VALUE, int, int, int, int);
rb_ast_t *rb_parser_compile_cstr(VALUE, const char*, const char*, int, int); rb_ast_t *rb_parser_compile_cstr(VALUE, const char*, const char*, int, int);