19 references to GetCciAdapter
Microsoft.CodeAnalysis.CSharp (8)
Emitter\Model\NamedTypeSymbolAdapter.cs (1)
694IPropertyDefinition definition = property.GetCciAdapter();
Emitter\Model\PropertySymbolAdapter.cs (1)
311protected sealed override SymbolAdapter GetCciAdapterImpl() => GetCciAdapter();
Emitter\NoPia\EmbeddedType.cs (2)
118.Select(s => s.GetCciAdapter()) 307TypeManager.EmbedProperty(this, ((PropertySymbol)s).GetCciAdapter(), syntaxNodeOpt, diagnostics);
Emitter\NoPia\EmbeddedTypesManager.cs (1)
514EmbedProperty(type, ((PropertySymbol)propertyOrEvent).GetCciAdapter(), syntaxNodeOpt, diagnostics);
Lowering\LocalRewriter\LocalRewriter_Call.cs (1)
130module.EmbeddedTypesManagerOpt.EmbedPropertyIfNeedTo(p.OriginalDefinition.GetCciAdapter(), syntaxNode, _diagnostics.DiagnosticBag);
Lowering\StateMachineRewriter\StateMachineRewriter.cs (1)
359F.ModuleBuilderOpt.AddSynthesizedDefinition(F.CurrentType, prop.GetCciAdapter());
Symbols\Source\ExtensionGroupingInfo.cs (1)
771IPropertyDefinition definition = property.GetCciAdapter();
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (11)
Emit\EditAndContinue\SymbolMatcherTests.cs (11)
703var other = matcher.MapDefinition(member.GetCciAdapter()); 727var other = matcher.MapDefinition(member.GetCciAdapter()); 916Assert.Null(matcher.MapDefinition(p1.GetCciAdapter())); 917Assert.Null(matcher.MapDefinition(q1.GetCciAdapter())); 918Assert.Null(matcher.MapDefinition(r1.GetCciAdapter())); 920Assert.Same(s0, matcher.MapDefinition(s1.GetCciAdapter()).GetInternalSymbol()); 921Assert.Same(t0, matcher.MapDefinition(t1.GetCciAdapter()).GetInternalSymbol()); 962var mappedProperty = (Cci.IPropertyDefinition)matcher.MapDefinition(property.GetCciAdapter()); 1190Assert.Same(p0, matcher.MapDefinition(p1.GetCciAdapter()).GetInternalSymbol()); 1191Assert.Same(q0, matcher.MapDefinition(q1.GetCciAdapter()).GetInternalSymbol()); 1394Assert.Equal(member0, (PropertySymbol)matcher.MapDefinition(member1.GetCciAdapter()).GetInternalSymbol());