22 lines
709 B
VB.net
22 lines
709 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 a case clause in a Select statement.
|
|
''' </summary>
|
|
Public MustInherit Class CaseClause
|
|
Inherits Tree
|
|
|
|
Protected Sub New(ByVal type As TreeType, ByVal span As Span)
|
|
MyBase.New(type, span)
|
|
|
|
Debug.Assert(type = TreeType.ComparisonCaseClause OrElse type = TreeType.RangeCaseClause)
|
|
End Sub
|
|
End Class
|