(self, name, return_type, args, doc='')
| 133 | |
| 134 | class Function: |
| 135 | def __init__(self, name, return_type, args, doc=''): |
| 136 | self.name = name |
| 137 | self.return_type = _repl(return_type) |
| 138 | self.args = args |
| 139 | self.doc = doc |
| 140 | |
| 141 | def _format_arg(self, typename, name): |
| 142 | if typename.endswith('*'): |