(self)
| 1979 | self._symbol_cache[mapped_str] = [sym] |
| 1980 | |
| 1981 | def __iter__(self) -> Iterator[str]: |
| 1982 | if self._symbol_cache is None: |
| 1983 | self._build_symbol_cache() |
| 1984 | assert self._symbol_cache is not None |
| 1985 | yield from self._symbol_cache |
| 1986 | |
| 1987 | def __next__(self) -> List['_types.CoreSymbol']: |
| 1988 | if self._symbol_cache is None: |
nothing calls this directly
no test coverage detected