summaryrefslogtreecommitdiff
path: root/reginline.h
Commit message (Collapse)AuthorAgeFilesLines
* regex engine - integrate regnode_after() support for EXACTish nodesYves Orton2022-08-031-0/+64
This adds REGNODE_AFTER_varies() which is used when the called *knows* that the current regnode is variable length. We then use it to handle EXACTish style nodes as determined by PL_regnode_arg_len_varies. As part of this patch Perl_regnext() Perl_regnode_after() and Perl_check_regnode_after() are moved to reginline.h, which is loaded via regcomp.c only when we are compiling the regex engine.