diff options
author | Zefram <zefram@fysh.org> | 2010-10-04 10:26:42 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-10-04 10:26:42 +0200 |
commit | 07ffcb738e9467df21e3d33604cf09c125e7ff52 (patch) | |
tree | 4d9f19d1b037c0559de25681d55a3a2f7569e2ce /proto.h | |
parent | ad97526782cdd5392f99d55127e22a7eb5ea9851 (diff) | |
download | perl-07ffcb738e9467df21e3d33604cf09c125e7ff52.tar.gz |
[PATCH] function to parse Perl statement sequence
New API function parse_stmtseq() parses a sequence of statements, up to
closing brace or EOF.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2729,6 +2729,7 @@ PERL_CALLCONV void Perl_pad_undef(pTHX_ CV* cv) assert(cv) PERL_CALLCONV OP* Perl_parse_fullstmt(pTHX_ U32 flags); +PERL_CALLCONV OP* Perl_parse_stmtseq(pTHX_ U32 flags); PERL_CALLCONV U32 Perl_parse_unicode_opts(pTHX_ const char **popt) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_PARSE_UNICODE_OPTS \ |