#define DEBUG using System.Diagnostics; namespace AspClassic.Parser; /// /// A parse tree for a special name (i.e. 'Global'). /// public sealed class SpecialName : Name { /// /// Constructs a new special name parse tree. /// /// The location of the parse tree. public SpecialName(TreeType type, Span span) : base(type, span) { Debug.Assert(type == TreeType.GlobalNamespaceName || type == TreeType.MeName || type == TreeType.MyBaseName); } }