Return a list of *Symbol* instances for names in the table.
(self)
| 155 | return sym |
| 156 | |
| 157 | def get_symbols(self): |
| 158 | """Return a list of *Symbol* instances for |
| 159 | names in the table. |
| 160 | """ |
| 161 | return [self.lookup(ident) for ident in self.get_identifiers()] |
| 162 | |
| 163 | def __check_children(self, name): |
| 164 | return [_newSymbolTable(st, self._filename) |