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