/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/Core/Test/Completion/VisualBasicMockCompletionProvider.vb
28 строк
989 B
Tomáš Matoušek
Pass completion options explicitly throughout the implementation of completion providers (#57058)
22 окт 2021, 21:32
Не верифицирован
22 окт 2021, 21:32
8b0b8c9
Код
Авторство
О чём код?
' 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 Microsoft.CodeAnalysis Imports Microsoft.CodeAnalysis.Completion Imports Microsoft.CodeAnalysis.Host.Mef Namespace Microsoft.VisualStudio.LanguageServices.UnitTests.Completion <ExportCompletionProvider(NameOf(VisualBasicMockCompletionProvider), LanguageNames.VisualBasic)> <[Shared]> <PartNotDiscoverable> Friend Class VisualBasicMockCompletionProvider Inherits MockCompletionProvider <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New() End Sub Friend Overrides ReadOnly Property Language As String Get Return LanguageNames.VisualBasic End Get End Property End Class End Namespace