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