(self, name, node, *args, **kwargs)
| 286 | self.context_mappings = self._getx(FunctionParser, "mappings", context_ast) |
| 287 | |
| 288 | def find(self, name, node, *args, **kwargs): |
| 289 | return getattr(self, name)(node) |
| 290 | |
| 291 | def parse(self, code): |
| 292 | res = asttokens.ASTTokens(code, parse=True) |
no outgoing calls