diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-13 13:44:21 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-07-13 13:44:21 +0000 |
commit | 032248d337bd683d2b77d972097a2f31688874cb (patch) | |
tree | 6e899062b79f5fdf054f48c9ffc1caca1e8d221e /node.h | |
parent | 1ee65ab7bb4d6cb78bfd28d63858afb02a7a6434 (diff) | |
download | ruby-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.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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)); |