Next | Perl Regex Engine | 13 |
use re 'eval'
If the declaration is in scope, the SPECIAL flag is set on the regcomp op
Later, when the regex is compiled: pp_ctl.c:113
if (PL_op->op_flags & OPf_SPECIAL) PL_reginterp_cnt = I32_MAX; /* Mark as safe. */
The before count is set to 2147483647
No matter how many (?{...})'s are interpolated, after < before
Next | Copyright © 2001 M. J. Dominus |