(signature, simple_name=True)
| 63 | return method_name_lst, argument_types |
| 64 | |
| 65 | def get_method_name(signature, simple_name=True): |
| 66 | method_name_lst, _ = get_method_name_and_argument_types(signature) |
| 67 | if simple_name: |
| 68 | return method_name_lst[-1] |
| 69 | else: |
| 70 | return ".".join(method_name_lst) |
| 71 | |
| 72 | def name_matcher(short_name, full_name): # modified |
| 73 | # ex) `java.lang.Object` matches with `java.lang.Object`, `lang.Object`, `Object`, |
nothing calls this directly
no test coverage detected