1 write to corLibrary
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Conversions\ConversionsBase.cs (1)
39this.corLibrary = corLibrary;
12 references to corLibrary
Microsoft.CodeAnalysis.CSharp (12)
Binder\Semantics\Conversions\ConversionsBase.cs (9)
76internal AssemblySymbol CorLibrary { get { return corLibrary; } } 1543var multicastDelegateType = corLibrary.GetSpecialType(SpecialType.System_MulticastDelegate); 1616TypeSymbol expectedAttributeType = corLibrary.GetSpecialType(SpecialType.System_Int32); 1643TypeSymbol expectedAttributeType = corLibrary.GetSpecialType(SpecialType.System_String); 2595if (IsBaseInterface(destination, this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Array), ref useSiteInfo)) 2632IsBaseInterface(destination, this.corLibrary.GetDeclaredSpecialType(SpecialType.System_MulticastDelegate), ref useSiteInfo)) 2671var derivedType = this.corLibrary.GetDeclaredSpecialType(SpecialType.System_MulticastDelegate); 3408if (HasImplicitConversionToInterface(this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Delegate), source, ref useSiteInfo)) 3515foreach (var iface in this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Array).AllInterfacesWithDefinitionUseSiteDiagnostics(ref useSiteInfo))
Binder\Semantics\Conversions\TypeConversions.cs (2)
29return new TypeConversions(this.corLibrary, currentRecursionDepth, IncludeNullability, otherNullabilityOpt: null); 35return new TypeConversions(corLibrary, currentRecursionDepth, includeNullability, this);
Binder\Semantics\Conversions\UserDefinedImplicitConversions.cs (1)
872var nullable = this.corLibrary.GetDeclaredSpecialType(SpecialType.System_Nullable_T);