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