|
' Licensed to the .NET Foundation under one or more agreements.
' The .NET Foundation licenses this file to you under the MIT license.
' See the LICENSE file in the project root for more information.
Imports System.Threading
Imports Microsoft.CodeAnalysis.DocumentationComments
Imports Microsoft.CodeAnalysis.LanguageService
Imports Microsoft.CodeAnalysis.SignatureHelp
Imports Microsoft.CodeAnalysis.VisualBasic.Syntax
Namespace Microsoft.CodeAnalysis.VisualBasic.SignatureHelp
Partial Friend Class InvocationExpressionSignatureHelpProvider
Private Shared Function GetElementAccessItems(leftExpression As ExpressionSyntax,
semanticModel As SemanticModel,
structuralTypeDisplayService As IStructuralTypeDisplayService,
documentationCommentFormattingService As IDocumentationCommentFormattingService,
within As ISymbol,
defaultProperties As IList(Of IPropertySymbol),
cancellationToken As CancellationToken) As IEnumerable(Of SignatureHelpItem)
Dim throughType As ITypeSymbol = Nothing
If leftExpression IsNot Nothing Then
throughType = semanticModel.GetTypeInfo(leftExpression, cancellationToken).Type
End If
Dim accessibleDefaultProperties = defaultProperties.Where(Function(m) m.IsAccessibleWithin(within, throughType:=throughType)).ToList()
If accessibleDefaultProperties.Count = 0 Then
Return SpecializedCollections.EmptyEnumerable(Of SignatureHelpItem)()
End If
Return accessibleDefaultProperties.Select(
Function(s) ConvertIndexer(s, leftExpression.SpanStart, semanticModel, structuralTypeDisplayService, documentationCommentFormattingService))
End Function
Private Shared Function ConvertIndexer(indexer As IPropertySymbol,
position As Integer,
semanticModel As SemanticModel,
structuralTypeDisplayService As IStructuralTypeDisplayService,
documentationCommentFormattingService As IDocumentationCommentFormattingService) As SignatureHelpItem
Dim item = CreateItem(
indexer, semanticModel, position,
structuralTypeDisplayService,
indexer.IsParams(),
indexer.GetDocumentationPartsFactory(semanticModel, position, documentationCommentFormattingService),
GetIndexerPreambleParts(indexer, semanticModel, position),
GetSeparatorParts(),
GetIndexerPostambleParts(indexer, semanticModel, position),
indexer.Parameters.Select(Function(p) Convert(p, semanticModel, position, documentationCommentFormattingService)).ToList())
Return item
End Function
Private Shared Function GetIndexerPreambleParts(symbol As IPropertySymbol, semanticModel As SemanticModel, position As Integer) As IList(Of SymbolDisplayPart)
Dim result = New List(Of SymbolDisplayPart)()
result.AddRange(symbol.ContainingType.ToMinimalDisplayParts(semanticModel, position))
result.Add(Punctuation(SyntaxKind.OpenParenToken))
Return result
End Function
Private Shared Function GetIndexerPostambleParts(symbol As IPropertySymbol,
semanticModel As SemanticModel,
position As Integer) As IList(Of SymbolDisplayPart)
Dim parts = New List(Of SymbolDisplayPart)
parts.Add(Punctuation(SyntaxKind.CloseParenToken))
Dim [property] = DirectCast(symbol, IPropertySymbol)
parts.Add(Space())
parts.Add(Keyword(SyntaxKind.AsKeyword))
parts.Add(Space())
parts.AddRange([property].Type.ToMinimalDisplayParts(semanticModel, position))
Return parts
End Function
End Class
End Namespace
|