16 lines
368 B
C#
16 lines
368 B
C#
#define DEBUG
|
|
using System.Diagnostics;
|
|
|
|
namespace AspClassic.Parser;
|
|
|
|
/// <summary>
|
|
/// A parse tree for a case clause in a Select statement.
|
|
/// </summary>
|
|
public abstract class CaseClause : Tree
|
|
{
|
|
protected CaseClause(TreeType type, Span span)
|
|
: base(type, span)
|
|
{
|
|
Debug.Assert(type == TreeType.ComparisonCaseClause || type == TreeType.RangeCaseClause);
|
|
}
|
|
}
|