(self, name: str)
| 75 | return None |
| 76 | |
| 77 | def ref(self, name: str) -> str: |
| 78 | rv = self.find_ref(name) |
| 79 | if rv is None: |
| 80 | raise AssertionError( |
| 81 | "Tried to resolve a name to a reference that was" |
| 82 | f" unknown to the frame ({name!r})" |
| 83 | ) |
| 84 | return rv |
| 85 | |
| 86 | def copy(self) -> "Symbols": |
| 87 | rv = object.__new__(self.__class__) |
nothing calls this directly
no test coverage detected