aboutsummaryrefslogtreecommitdiffstats
path: root/node.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-24 07:41:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-24 07:41:48 +0000
commitaaa9aa9e4bd61b81e4013725f4ba9c1fab333a9c (patch)
tree2d616b73ea2ec6e7faa09592fa7d1aebc2410319 /node.h
parent4fb24ac15ad09c36e7c12d15cb205b75c2e05fb2 (diff)
downloadruby-aaa9aa9e4bd61b81e4013725f4ba9c1fab333a9c.tar.gz
parse.y: rb_parser_set_options
* parse.y (yycompile0): append top-level addenda before appending prelude nodes. * parse.y (rb_parser_set_options): set top-level addendum options before parsing. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60393 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/node.h b/node.h
index c7475cf980..ba65fcde1b 100644
--- a/node.h
+++ b/node.h
@@ -448,8 +448,7 @@ VALUE rb_parser_encoding(VALUE);
VALUE rb_parser_get_yydebug(VALUE);
VALUE rb_parser_set_yydebug(VALUE, VALUE);
VALUE rb_parser_dump_tree(NODE *node, int comment);
-NODE *rb_parser_append_print(VALUE, NODE *);
-NODE *rb_parser_while_loop(VALUE, NODE *, int, int);
+void rb_parser_set_options(VALUE, int, int, int, int);
NODE *rb_parser_compile_cstr(VALUE, const char*, const char*, int, int);
NODE *rb_parser_compile_string(VALUE, const char*, VALUE, int);