aspclassic-core/AspClassic.Parser/StopStatement.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

19 lines
515 B
C#

using System.Collections.Generic;
namespace AspClassic.Parser;
/// <summary>
/// A parse tree for a Stop statement.
/// </summary>
public sealed class StopStatement : Statement
{
/// <summary>
/// Constructs a new parse tree for a Stop statement.
/// </summary>
/// <param name="span">The location of the parse tree.</param>
/// <param name="comments">The comments for the parse tree.</param>
public StopStatement(Span span, IList<Comment> comments)
: base(TreeType.StopStatement, span, comments)
{
}
}