1 instantiation of SubstitutedFieldSymbol
Microsoft.CodeAnalysis.CSharp (1)
Symbols\FieldSymbol.cs (1)
331return newOwner.IsDefinition ? this : new SubstitutedFieldSymbol(newOwner as SubstitutedNamedTypeSymbol, this);
8 references to SubstitutedFieldSymbol
Microsoft.CodeAnalysis.CSharp (1)
Symbols\FieldSymbol.cs (1)
515if (other is SubstitutedFieldSymbol sfs)
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (5)
CodeGen\CodeGenTupleTest.cs (5)
28595Assert.IsType<SubstitutedFieldSymbol>(item1Underlying); 28603Assert.IsType<SubstitutedFieldSymbol>(item2Underlying); 28632Assert.IsType<SubstitutedFieldSymbol>(item1Underlying); 28644Assert.IsType<SubstitutedFieldSymbol>(item8Underlying); 28655Assert.IsType<SubstitutedFieldSymbol>(item9Underlying);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\RefFieldTests.cs (2)
316var field = (SubstitutedFieldSymbol)comp.GetMember<FieldSymbol>("B.A").Type.GetMember("F");