summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
Diffstat (limited to 'op.h')
-rw-r--r--op.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/op.h b/op.h
index 89440a2f41..7444965274 100644
--- a/op.h
+++ b/op.h
@@ -1113,6 +1113,14 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
"Perl 5.32"
#endif
+/* stuff for OP_ARGCHECK */
+
+struct op_argcheck_aux {
+ IV params; /* number of positional parameters */
+ IV opt_params; /* number of optional positional parameters */
+ char slurpy; /* presence of slurpy: may be '\0', '@' or '%' */
+};
+
/*
* ex: set ts=8 sts=4 sw=4 et: