3 instantiations of IdentifierGenerator
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (3)
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.FixAllProvider.cs (2)
47
identifierGenerator = new
IdentifierGenerator
(editor.SemanticModel, node.SpanStart);
51
identifierGenerator = scopeMap[block] = new
IdentifierGenerator
(editor.SemanticModel, block);
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.Fixer.cs (1)
77
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)
37
Dictionary<IBlockOperation,
IdentifierGenerator
> scopeMap = new();
44
IdentifierGenerator
identifierGenerator;
Microsoft.NetCore.Analyzers\InteropServices\CSharpDisableRuntimeMarshalling.Fixer.cs (2)
77
var
identifierGenerator = new IdentifierGenerator(editor.SemanticModel, node.SpanStart);
88
private static bool TryRewriteMethodCall(SyntaxNode node, DocumentEditor editor,
IdentifierGenerator
pointerIdentifierGenerator, bool addRenameAnnotation, CancellationToken ct)