/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/VisualBasic/Portable/Compilation/PublicSemanticModel.vb
22 строки
857 B
AlekseyTs
VB: Align design around speculative semantic models with C#. (#64751)
18 окт 2022, 21:51
Не верифицирован
18 окт 2022, 21:51
3f694a3
Код
Авторство
О чём код?
' 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. Namespace Microsoft.CodeAnalysis.VisualBasic ''' <summary> ''' Instances of this <see cref="SemanticModel"/> can be exposed to external consumers. ''' Other types of <see cref="VBSemanticModel"/> are not designed for direct exposure ''' and their implementation might not be able to handle external requests properly. ''' </summary> Friend MustInherit Class PublicSemanticModel Inherits VBSemanticModel Friend NotOverridable Overrides ReadOnly Property ContainingPublicModelOrSelf As SemanticModel Get Return Me End Get End Property End Class End Namespace