7 references to AllEffectiveInterfacesNoUseSiteDiagnostics
Microsoft.CodeAnalysis.CSharp (4)
Binder\Binder_Lookup.cs (1)
2043foreach (var baseInterface in type.AllEffectiveInterfacesNoUseSiteDiagnostics)
Binder\Semantics\AccessCheck.cs (1)
647declaredInterfaces = typeParameter.AllEffectiveInterfacesNoUseSiteDiagnostics;
FlowAnalysis\NullableWalker.cs (1)
5072TypeParameterSymbol tp => tp.AllEffectiveInterfacesNoUseSiteDiagnostics,
Symbols\TypeParameterSymbol.cs (1)
345var result = AllEffectiveInterfacesNoUseSiteDiagnostics;
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler.UnitTests (2)
ExpressionCompilerTests.cs (2)
2214Assert.Equal(1, eeTypeParameterSymbol.AllEffectiveInterfacesNoUseSiteDiagnostics.Length); 2215Assert.Equal("I", eeTypeParameterSymbol.AllEffectiveInterfacesNoUseSiteDiagnostics[0].Name);
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
Extensions.cs (1)
656return ((Microsoft.CodeAnalysis.CSharp.Symbols.PublicModel.TypeParameterSymbol)symbol).UnderlyingTypeParameterSymbol.AllEffectiveInterfacesNoUseSiteDiagnostics.GetPublicSymbols();