()
| 55 | # instances that have not added extra chars, keeping __init__ cost near zero. |
| 56 | @functools.cache |
| 57 | def _default_terminator_re() -> re.Pattern[str]: |
| 58 | return re.compile("[" + re.escape("".join(_DEFAULT_TERMINATORS)) + "]") |
| 59 | |
| 60 | |
| 61 | # Parser rules |
no outgoing calls
no test coverage detected
searching dependent graphs…