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