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