Declare a match between a source and a bin context. Args: match (BinaryCodeContext): the matching binary context
(self, match)
| 443 | |
| 444 | # Overridden base function |
| 445 | def declareMatch(self, match): |
| 446 | """Declare a match between a source and a bin context. |
| 447 | |
| 448 | Args: |
| 449 | match (BinaryCodeContext): the matching binary context |
| 450 | """ |
| 451 | self.match = match |
| 452 | # notify our followers that we are now out of the game |
| 453 | for follower in self.followers: |
| 454 | follower.removeHint(self, clear=False) |
| 455 | self.followers = set() |
| 456 | |
| 457 | # Overridden base function |
| 458 | def isPartial(self): |
nothing calls this directly
no test coverage detected