using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a While block statement. /// public sealed class WhileBlockStatement : ExpressionBlockStatement { /// /// Constructs a new parse tree for a While statement block. /// /// The expression. /// The statements in the block. /// The End statement for the block, if any. /// The location of the parse tree. /// The comments for the parse tree. public WhileBlockStatement(Expression expression, StatementCollection statements, EndBlockStatement endStatement, Span span, IList comments) : base(TreeType.WhileBlockStatement, expression, statements, endStatement, span, comments) { } }