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