(self, pos=0)
| 66 | return [datatype(dt, pos) for dt in self.completer.datatypes] |
| 67 | |
| 68 | def keywords(self, pos=0): |
| 69 | return [keyword(kw, pos) for kw in self.completer.keywords_tree.keys()] |
| 70 | |
| 71 | def specials(self, pos=0): |
| 72 | return [Completion(text=k, start_position=pos, display_meta=v.description) for k, v in self.completer.pgspecial.commands.items()] |
no outgoing calls