(self)
| 7445 | return self.type is not None and not self.is_func_scope() |
| 7446 | |
| 7447 | def is_module_scope(self) -> bool: |
| 7448 | return not (self.is_class_scope() or self.is_func_scope()) |
| 7449 | |
| 7450 | def current_symbol_kind(self) -> int: |
| 7451 | if self.is_class_scope(): |
no test coverage detected