/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/VisualBasic/Portable/BracePairs/VisualBasicBracePairsService.vb
21 строка
854 B
Cyrus Najmabadi
Add VB impl
10 янв 2023, 22:42
10 янв 2023, 22:42
8572ab6
Код
Авторство
О чём код?
' 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.BracePairs Imports Microsoft.CodeAnalysis.Host.Mef Imports Microsoft.CodeAnalysis.VisualBasic.LanguageService Namespace Microsoft.CodeAnalysis.VisualBasic.BracePairs <ExportLanguageService(GetType(IBracePairsService), LanguageNames.VisualBasic), [Shared]> Friend NotInheritable Class VisualBasicBracePairsService Inherits AbstractBracePairsService <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New() MyBase.New(VisualBasicSyntaxKinds.Instance) End Sub End Class End Namespace