3 instantiations of IdentifierGenerator
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (3)
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.FixAllProvider.cs (2)
46
identifierGenerator = new
IdentifierGenerator
(editor.SemanticModel, node.SpanStart);
50
identifierGenerator = scopeMap[block] = new
IdentifierGenerator
(editor.SemanticModel, block);
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.Fixer.cs (1)
76
var identifierGenerator = new
IdentifierGenerator
(editor.SemanticModel, node.SpanStart);
4 references to IdentifierGenerator
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (4)
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.FixAllProvider.cs (2)
36
Dictionary<IBlockOperation,
IdentifierGenerator
> scopeMap = new();
43
IdentifierGenerator
identifierGenerator;
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.Fixer.cs (2)
76
var
identifierGenerator = new IdentifierGenerator(editor.SemanticModel, node.SpanStart);
87
private static bool TryRewriteMethodCall(SyntaxNode node, DocumentEditor editor,
IdentifierGenerator
pointerIdentifierGenerator, bool addRenameAnnotation, CancellationToken ct)