RegexProgramSizeLimit caps the maximum regex program plan size permitted during evaluation.
(limit int)
| 229 | |
| 230 | // RegexProgramSizeLimit caps the maximum regex program plan size permitted during evaluation. |
| 231 | func RegexProgramSizeLimit(limit int) PlannerOption { |
| 232 | return CustomDecoratorV2(decRegexProgramSizeLimit(limit)) |
| 233 | } |
| 234 | |
| 235 | type exprInterpreter struct { |
| 236 | dispatcher Dispatcher |