25 lines
No EOL
891 B
VB.net
25 lines
No EOL
891 B
VB.net
'
|
|
' Visual Basic .NET Parser
|
|
'
|
|
' Copyright (C) 2005, Microsoft Corporation. All rights reserved.
|
|
'
|
|
' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
' EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
|
|
' MERCHANTIBILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
'
|
|
|
|
''' <summary>
|
|
''' A parse tree for an empty declaration.
|
|
''' </summary>
|
|
Public NotInheritable Class EmptyDeclaration
|
|
Inherits Declaration
|
|
|
|
''' <summary>
|
|
''' Constructs a new parse tree for an empty declaration.
|
|
''' </summary>
|
|
''' <param name="span">The location of the parse tree.</param>
|
|
''' <param name="comments">The comments for the parse tree.</param>
|
|
Public Sub New(ByVal span As Span, ByVal comments As IList(Of Comment))
|
|
MyBase.New(TreeType.EmptyDeclaration, span, comments)
|
|
End Sub
|
|
End Class |