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