We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0e9f2b commit 6f2dd74Copy full SHA for 6f2dd74
op.h
@@ -1080,6 +1080,9 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
1080
#define OP_TYPE_ISNT_AND_WASNT(o, type) \
1081
( (o) && OP_TYPE_ISNT_AND_WASNT_NN(o, type) )
1082
1083
+#define OP_TYPE_IS_COP_NN(o) \
1084
+ (OP_TYPE_IS_NN(o, OP_NEXTSTATE) || OP_TYPE_IS_NN(o, OP_DBSTATE))
1085
+
1086
/* should match anything that uses ck_ftst in regen/opcodes */
1087
#define OP_IS_STAT(op) (OP_IS_FILETEST(op) || (op) == OP_LSTAT || (op) == OP_STAT)
1088
0 commit comments