1 override of TypeExpression
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\LanguageServices\CSharpSyntaxGeneratorInternal.cs (1)
296public override SyntaxNode TypeExpression(ITypeSymbol typeSymbol, RefKind refKind)
5 references to TypeExpression
Microsoft.CodeAnalysis.Workspaces (5)
Editing\SyntaxGenerator.cs (4)
196returnType: method.ReturnType.IsSystemVoid() ? null : this.SyntaxGeneratorInternal.TypeExpression(method.ReturnType, method.RefKind), 288returnType: method.ReturnType.IsSystemVoid() ? null : this.SyntaxGeneratorInternal.TypeExpression(method.ReturnType, method.RefKind), 393this.SyntaxGeneratorInternal.TypeExpression(property.Type, property.RefKind), 454this.SyntaxGeneratorInternal.TypeExpression(indexer.Type, indexer.RefKind),
src\30958ef190fa2467\SyntaxGeneratorInternal.cs (1)
145=> TypeExpression(typeSymbol, RefKind.None);