(self)
| 727 | return self.args.get_signature() |
| 728 | |
| 729 | def get_flask_routes(self): |
| 730 | for d in self.decorator_list: # type: Call |
| 731 | if not isinstance(d, ASTNode): |
| 732 | continue |
| 733 | elif d.full_name != "flask.Flask.route": |
| 734 | continue |
| 735 | |
| 736 | yield str(d.args[0]) |
| 737 | |
| 738 | def _visit_node(self, context): |
| 739 | context.stack[self.name] = self |