(matches: Sequence[AnyCompletion])
| 3751 | |
| 3752 | @staticmethod |
| 3753 | def _sort(matches: Sequence[AnyCompletion]): |
| 3754 | return sorted(matches, key=lambda x: completions_sorting_key(x.text)) |
| 3755 | |
| 3756 | @context_matcher() |
| 3757 | def fwd_unicode_matcher(self, context: CompletionContext): |
no test coverage detected