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