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