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)
513if (other is SubstitutedFieldSymbol sfs)
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (5)
CodeGen\CodeGenTupleTest.cs (5)
28633Assert.IsType<SubstitutedFieldSymbol>(item1Underlying); 28641Assert.IsType<SubstitutedFieldSymbol>(item2Underlying); 28670Assert.IsType<SubstitutedFieldSymbol>(item1Underlying); 28682Assert.IsType<SubstitutedFieldSymbol>(item8Underlying); 28693Assert.IsType<SubstitutedFieldSymbol>(item9Underlying);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\RefFieldTests.cs (2)
315var field = (SubstitutedFieldSymbol)comp.GetMember<FieldSymbol>("B.A").Type.GetMember("F");