using System.Collections.Generic;
namespace AspClassic.Parser;
///
/// A parse tree for a label declaration statement.
///
public sealed class LabelStatement : LabelReferenceStatement
{
///
/// Constructs a parse tree for a label declaration statement.
///
/// The label to branch to, if any.
/// Whether the label is a line number.
/// The location of the parse tree.
/// The comments for the parse tree.
public LabelStatement(SimpleName name, bool isLineNumber, Span span, IList comments)
: base(TreeType.LabelStatement, name, isLineNumber, span, comments)
{
}
}