(self, subject: Value)
| 322 | |
| 323 | @contextmanager |
| 324 | def enter_subpattern(self, subject: Value) -> Generator[None]: |
| 325 | old_subject = self.subject |
| 326 | self.subject = subject |
| 327 | yield |
| 328 | self.subject = old_subject |
| 329 | |
| 330 | |
| 331 | def prep_sequence_pattern( |
no outgoing calls
no test coverage detected