16 lines
355 B
C#
16 lines
355 B
C#
#define DEBUG
|
|
using System.Diagnostics;
|
|
|
|
namespace AspClassic.Parser;
|
|
|
|
/// <summary>
|
|
/// A parse tree for an initializer.
|
|
/// </summary>
|
|
public abstract class Initializer : Tree
|
|
{
|
|
protected Initializer(TreeType type, Span span)
|
|
: base(type, span)
|
|
{
|
|
Debug.Assert(type == TreeType.ExpressionInitializer || type == TreeType.AggregateInitializer);
|
|
}
|
|
}
|