(self, scope: Scope, prefix: str)
| 2101 | return match, child_scope |
| 2102 | |
| 2103 | def matches_with_prefix(self, scope: Scope, prefix: str) -> tuple[Match, Scope]: |
| 2104 | match, child_scope, _ = self._match(scope, prefix=prefix) |
| 2105 | return match, child_scope |
| 2106 | |
| 2107 | def _match( |
| 2108 | self, scope: Scope, *, prefix: str |