2 instantiations of TypeSyntaxGeneratorVisitor
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.cs (2)
26private static readonly TypeSyntaxGeneratorVisitor NameOnlyInstance = new(nameOnly: true); 27private static readonly TypeSyntaxGeneratorVisitor NotNameOnlyInstance = new(nameOnly: false);
8 references to TypeSyntaxGeneratorVisitor
Microsoft.CodeAnalysis.CSharp.Workspaces (8)
ITypeSymbolExtensions.ExpressionSyntaxGeneratorVisitor.cs (3)
27=> symbol.Accept(TypeSyntaxGeneratorVisitor.Create(_nameOnly))!; 40if (!_nameOnly && TypeSyntaxGeneratorVisitor.TryCreateNativeIntegerType(symbol, out var typeSyntax)) 43typeSyntax = TypeSyntaxGeneratorVisitor.Create().CreateSimpleTypeSyntax(symbol);
ITypeSymbolExtensions.TypeSyntaxGeneratorVisitor.cs (3)
26private static readonly TypeSyntaxGeneratorVisitor NameOnlyInstance = new(nameOnly: true); 27private static readonly TypeSyntaxGeneratorVisitor NotNameOnlyInstance = new(nameOnly: false); 32public static TypeSyntaxGeneratorVisitor Create(bool nameOnly = false)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Extensions\ITypeSymbolExtensions.cs\ITypeSymbolExtensions.cs (2)
49? TypeSyntaxGeneratorVisitor.CreateSystemObject() 50: symbol.Accept(TypeSyntaxGeneratorVisitor.Create(nameSyntax))!