1 write to ClassTypes
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\SubstitutionContext.cs (1)
17ClassTypes = typeArgsCls?.Items ?? Array.Empty<CType>();
6 references to ClassTypes
Microsoft.CSharp (6)
Microsoft\CSharp\RuntimeBinder\Semantics\SubstitutionContext.cs (1)
38public bool IsNop => ClassTypes.Length == 0 & MethodTypes.Length == 0;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (5)
322return index < pctx.ClassTypes.Length ? pctx.ClassTypes[index] : type; 462Debug.Assert(index < pctx.ClassTypes.Length); 463if (index < pctx.ClassTypes.Length) 465return typeDst == pctx.ClassTypes[index];