19 lines
515 B
C#
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)
|
|
{
|
|
}
|
|
}
|