(self)
| 236 | return self.why_not_viable() is None |
| 237 | |
| 238 | def is_super(self) -> bool: |
| 239 | for tkn in self.body.tokens(): |
| 240 | if tkn.kind == "IDENTIFIER" and tkn.text == "oparg1": |
| 241 | return True |
| 242 | return False |
| 243 | |
| 244 | |
| 245 | class Label: |
no test coverage detected