public static void AddExplicitInterfaceQualifierToId(Context cx, ITrapBuilder tb, IEnumerable <ISymbol> explicitInterfaceImplementations) { if (explicitInterfaceImplementations.Any()) { tb.AppendList(",", explicitInterfaceImplementations.Select(impl => cx.CreateEntity(impl.ContainingType))); } }
protected static void AddParametersToId(Context cx, ITrapBuilder tb, IMethodSymbol method) { tb.Append("("); tb.AppendList(",", AddParameterPartsToId(cx, tb, method)); tb.Append(")"); }