using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a With block statement. /// public sealed class WithBlockStatement : ExpressionBlockStatement { /// /// Constructs a new parse tree for a With 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 WithBlockStatement(Expression expression, StatementCollection statements, EndBlockStatement endStatement, Span span, IList comments) : base(TreeType.WithBlockStatement, expression, statements, endStatement, span, comments) { } }