| 43 | |
| 44 | |
| 45 | class CurrentType: |
| 46 | def __init__(self, type: Type, from_assignment: bool) -> None: |
| 47 | self.type: Final = type |
| 48 | self.from_assignment: Final = from_assignment |
| 49 | |
| 50 | |
| 51 | class Frame: |
no outgoing calls
no test coverage detected
searching dependent graphs…