using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for an empty declaration. /// public sealed class EmptyDeclaration : Declaration { /// /// Constructs a new parse tree for an empty declaration. /// /// The location of the parse tree. /// The comments for the parse tree. public EmptyDeclaration(Span span, IList comments) : base(TreeType.EmptyDeclaration, span, comments) { } }