static bool HasAlphaSuffix(InlineParameterHint hint, out ReadOnlyMemory <char> prefix)
            {
                var name = hint.Parameter?.Name;

                // Has to end with A-Z
                // That A-Z can't be following another A-Z (that's just a capitalized word).
                if (name?.Length >= 2 &&
                    IsUpperAlpha(name[^ 1]) &&
 private static bool HintMatches(InlineParameterHint hint, bool literalParameters, bool objectCreationParameters, bool otherParameters)
 => hint.Kind switch
 {