summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Keyword.xs42
1 files changed, 42 insertions, 0 deletions
diff --git a/Keyword.xs b/Keyword.xs
index e53f001..9ee7296 100644
--- a/Keyword.xs
+++ b/Keyword.xs
@@ -148,6 +148,48 @@ parse_block()
RETVAL
SV *
+parse_stmtseq()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_stmtseq);
+ OUTPUT:
+ RETVAL
+
+SV *
+parse_fullstmt()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_fullstmt);
+ OUTPUT:
+ RETVAL
+
+SV *
+parse_barestmt()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_barestmt);
+ OUTPUT:
+ RETVAL
+
+SV *
+parse_fullexpr()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_fullexpr);
+ OUTPUT:
+ RETVAL
+
+SV *
+parse_listexpr()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_listexpr);
+ OUTPUT:
+ RETVAL
+
+SV *
+parse_termexpr()
+ CODE:
+ RETVAL = parser_fn(Perl_parse_termexpr);
+ OUTPUT:
+ RETVAL
+
+SV *
parse_arithexpr()
CODE:
RETVAL = parser_fn(Perl_parse_arithexpr);