aboutsummaryrefslogtreecommitdiffstats
path: root/node.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-13 13:44:21 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-07-13 13:44:21 +0000
commit032248d337bd683d2b77d972097a2f31688874cb (patch)
tree6e899062b79f5fdf054f48c9ffc1caca1e8d221e /node.h
parent1ee65ab7bb4d6cb78bfd28d63858afb02a7a6434 (diff)
downloadruby-032248d337bd683d2b77d972097a2f31688874cb.tar.gz
* parse.y: remove static variables. [ruby-dev:26530]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.h')
-rw-r--r--node.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/node.h b/node.h
index c55bbe1afc..43efba3ea9 100644
--- a/node.h
+++ b/node.h
@@ -350,6 +350,13 @@ typedef struct RNode {
#define NOEX_UNDEF NOEX_NOSUPER
+VALUE rb_parser_new _((void));
+VALUE rb_parser_end_seen_p _((VALUE));
+
+NODE *rb_parser_compile_cstr _((volatile VALUE, const char*, const char*, int, int));
+NODE *rb_parser_compile_string _((volatile VALUE, const char*, VALUE, int));
+NODE *rb_parser_compile_file _((volatile VALUE, const char*, VALUE, int));
+
NODE *rb_compile_cstr _((const char*, const char*, int, int));
NODE *rb_compile_string _((const char*, VALUE, int));
NODE *rb_compile_file _((const char*, VALUE, int));