Return a list of *Symbol* instances for names in the table.
(self)
| 130 | return sym |
| 131 | |
| 132 | def get_symbols(self): |
| 133 | """Return a list of *Symbol* instances for |
| 134 | names in the table. |
| 135 | """ |
| 136 | return [self.lookup(ident) for ident in self.get_identifiers()] |
| 137 | |
| 138 | def __check_children(self, name): |
| 139 | return [_newSymbolTable(st, self._filename) |
nothing calls this directly
no test coverage detected