| 396 | |
| 397 | |
| 398 | class Method(Function): |
| 399 | def __init__(self, start, end, name, in_class, return_type, parameters, |
| 400 | modifiers, templated_types, body, namespace): |
| 401 | Function.__init__(self, start, end, name, return_type, parameters, |
| 402 | modifiers, templated_types, body, namespace) |
| 403 | # TODO(nnorwitz): in_class could also be a namespace which can |
| 404 | # mess up finding functions properly. |
| 405 | self.in_class = in_class |
| 406 | |
| 407 | |
| 408 | class Type(_GenericDeclaration): |
no outgoing calls