16 references to AdaptedSymbol
Microsoft.CodeAnalysis.CSharp (16)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
268diagnostics.Add(new CSDiagnosticInfo(ErrorCode.ERR_EncNoPIAReference, embeddedType.AdaptedSymbol), Location.None);
Emitter\Model\MethodSymbolAdapter.cs (2)
436return AdaptedMethodSymbol.IsMetadataNewSlot(AdaptedSymbol.ContainingModule); // Use in context of other module is not expected. See 'CheckDefinitionInvariant' above. 505return AdaptedMethodSymbol.IsMetadataVirtual(AdaptedSymbol.ContainingModule); // Use in context of other module is not expected. See 'CheckDefinitionInvariant' above.
Emitter\Model\SymbolAdapter.cs (2)
35CodeAnalysis.Symbols.ISymbolInternal Cci.IReference.GetInternalSymbol() => AdaptedSymbol; 44return AdaptedSymbol.GetCustomAttributesToEmit((PEModuleBuilder)context.Module);
Emitter\NoPia\EmbeddedMethod.cs (1)
38return UnderlyingMethod.AdaptedSymbol.GetCustomAttributesToEmit(moduleBuilder);
Emitter\NoPia\EmbeddedTypesManager.cs (10)
246_assemblyGuidMap.TryAdd(t.UnderlyingNamedType.AdaptedSymbol.ContainingAssembly, null); 261underlyingTypeA.AdaptedSymbol.ContainingAssembly, 262underlyingTypeB.AdaptedSymbol.ContainingAssembly); 270underlyingType.AdaptedSymbol.ContainingAssembly); 489Debug.Assert(field.AdaptedSymbol.IsDefinition); 525Debug.Assert(method.AdaptedSymbol.IsDefinition); 621Debug.Assert(@event.AdaptedSymbol.IsDefinition); 658Debug.Assert(member.AdaptedSymbol.IsDefinition); 661if (member.AdaptedSymbol.OriginalDefinition is SynthesizedGlobalMethodSymbol) 667NamedTypeSymbol namedType = member.AdaptedSymbol.ContainingType;