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