using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a GoTo statement. /// public sealed class GotoStatement : LabelReferenceStatement { /// /// Constructs a parse tree for a GoTo 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 GotoStatement(SimpleName name, bool isLineNumber, Span span, IList comments) : base(TreeType.GotoStatement, name, isLineNumber, span, comments) { } }