9 references to PrivateImplementationDetails
Microsoft.CodeAnalysis.CSharp (9)
CodeGen\EmitStatement.cs (1)
1495
var privateImplClass = _module.GetPrivateImplClass(syntaxNode, _diagnostics.DiagnosticBag).
PrivateImplementationDetails
;
Emitter\Model\PEModuleBuilder.cs (5)
1836
var methodAdapter = privateImplClass.
PrivateImplementationDetails
.GetMethod(methodName);
1847
privateImplClass.
PrivateImplementationDetails
.TryAddSynthesizedMethod(methodSymbol.GetCciAdapter());
1848
return (MethodSymbol)privateImplClass.
PrivateImplementationDetails
.GetMethod(methodName)!.GetInternalSymbol()!;
1927
var privateImplClass = GetPrivateImplClass(syntaxNode, diagnostics).
PrivateImplementationDetails
;
1950
var privateImplClass = GetPrivateImplClass(syntaxNode, diagnostics).
PrivateImplementationDetails
;
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (2)
924
if (privateImplClass.
PrivateImplementationDetails
.GetMethod(stringPatternInput switch
966
privateImplClass.
PrivateImplementationDetails
.TryAddSynthesizedMethod(method.GetCciAdapter());
Symbols\Synthesized\SynthesizedGlobalMethodSymbol.cs (1)
92
get { return _privateImplType.
PrivateImplementationDetails
; }