Return a view object containing the names of symbols in the table.
(self)
| 136 | return bool(self._table.children) |
| 137 | |
| 138 | def get_identifiers(self): |
| 139 | """Return a view object containing the names of symbols in the table. |
| 140 | """ |
| 141 | return self._table.symbols.keys() |
| 142 | |
| 143 | def lookup(self, name): |
| 144 | """Lookup a *name* in the table. |
no test coverage detected