/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/VisualBasic/Portable/Declarations/GlobalNamespaceDeclaration.vb
39 строк
1 KB
Jonathon Marolf
update headers
23 янв 2020, 04:01
Не верифицирован
23 янв 2020, 04:01
91571a3
Код
Авторство
О чём код?
' 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 Imports System.Collections.Generic Imports System.Collections.Immutable Imports System.Diagnostics Imports System.Linq Imports System.Text Imports System.Threading Imports Microsoft.CodeAnalysis.Collections Imports Microsoft.CodeAnalysis.Text Imports Microsoft.CodeAnalysis.VisualBasic.Symbols Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Namespace Microsoft.CodeAnalysis.VisualBasic.Symbols ''' <summary> ''' Represents global namespace. Namespace's name is always empty ''' </summary> ''' <remarks></remarks> Friend Class GlobalNamespaceDeclaration Inherits SingleNamespaceDeclaration Public Sub New(hasImports As Boolean, syntaxReference As SyntaxReference, nameLocation As Location, children As ImmutableArray(Of SingleNamespaceOrTypeDeclaration)) MyBase.New(String.Empty, hasImports, syntaxReference, nameLocation, children) End Sub Public Overrides ReadOnly Property IsGlobalNamespace As Boolean Get Return True End Get End Property End Class End Namespace