(self, modifiers, templated_types)
| 950 | return tokens, next_token |
| 951 | |
| 952 | def GetMethod(self, modifiers, templated_types): |
| 953 | return_type_and_name = self._GetTokensUpTo(tokenize.SYNTAX, '(') |
| 954 | assert len(return_type_and_name) >= 1 |
| 955 | return self._GetMethod(return_type_and_name, modifiers, templated_types, |
| 956 | False) |
| 957 | |
| 958 | def _GetMethod(self, return_type_and_name, modifiers, templated_types, |
| 959 | get_paren): |
no test coverage detected