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