1 write to corLibrary
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Conversions\ConversionsBase.cs (1)
40this.corLibrary = corLibrary;
12 references to corLibrary
Microsoft.CodeAnalysis.CSharp (12)
Binder\Semantics\Conversions\ConversionsBase.cs (9)
85internal AssemblySymbol CorLibrary { get { return corLibrary; } } 1621var multicastDelegateType = corLibrary.GetSpecialType(SpecialType.System_MulticastDelegate); 1758TypeSymbol expectedAttributeType = corLibrary.GetSpecialType(SpecialType.System_Int32); 1785TypeSymbol expectedAttributeType = corLibrary.GetSpecialType(SpecialType.System_String); 2744if (IsBaseInterface(destination, this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Array), ref useSiteInfo)) 2781IsBaseInterface(destination, this.corLibrary.GetDeclaredSpecialType(SpecialType.System_MulticastDelegate), ref useSiteInfo)) 2820var derivedType = this.corLibrary.GetDeclaredSpecialType(SpecialType.System_MulticastDelegate); 3647if (HasImplicitConversionToInterface(this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Delegate), source, ref useSiteInfo)) 3754foreach (var iface in this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Array).AllInterfacesWithDefinitionUseSiteDiagnostics(ref useSiteInfo))
Binder\Semantics\Conversions\TypeConversions.cs (2)
27return new TypeConversions(this.corLibrary, currentRecursionDepth, IncludeNullability, otherNullabilityOpt: null); 33return new TypeConversions(corLibrary, currentRecursionDepth, includeNullability, this);
Binder\Semantics\Conversions\UserDefinedImplicitConversions.cs (1)
882var nullable = this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Nullable_T);