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)
308return index < pctx.ClassTypes.Length ? pctx.ClassTypes[index] : type; 447Debug.Assert(index < pctx.ClassTypes.Length); 448if (index < pctx.ClassTypes.Length) 450return typeDst == pctx.ClassTypes[index];