(self, name: str)
| 7911 | return unmangle(name) + "'" in self.globals |
| 7912 | |
| 7913 | def is_initial_mangled_global(self, name: str) -> bool: |
| 7914 | # If there are renamed definitions for a global, the first one has exactly one prime. |
| 7915 | return name == unmangle(name) + "'" |
| 7916 | |
| 7917 | def parse_bool(self, expr: Expression) -> bool | None: |
| 7918 | # This wrapper is preserved for plugins. |
no test coverage detected