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