/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/VisualBasic/Portable/Recommendations/VisualBasicRecommendationService.vb
26 строк
1 KB
Cyrus Najmabadi
Improve completion results when dotting of lambda parameter
02 мар 2023, 02:40
02 мар 2023, 02:40
dbf8ace
Код
Авторство
О чём код?
' 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.Composition Imports System.Threading Imports Microsoft.CodeAnalysis.Host.Mef Imports Microsoft.CodeAnalysis.Recommendations Imports Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Namespace Microsoft.CodeAnalysis.VisualBasic.Recommendations <ExportLanguageService(GetType(IRecommendationService), LanguageNames.VisualBasic), [Shared]> Partial Friend Class VisualBasicRecommendationService Inherits AbstractRecommendationService(Of VisualBasicSyntaxContext, LambdaExpressionSyntax) <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New() End Sub Protected Overrides Function CreateRunner(context As VisualBasicSyntaxContext, filterOutOfScopeLocals As Boolean, cancellationToken As CancellationToken) As AbstractRecommendationServiceRunner Return New VisualBasicRecommendationServiceRunner(context, filterOutOfScopeLocals, cancellationToken) End Function End Class End Namespace