26 lines
1.4 KiB
C#
26 lines
1.4 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace AspClassic.Parser;
|
|
|
|
/// <summary>
|
|
/// A parse tree for a Interface declaration.
|
|
/// </summary>
|
|
public sealed class InterfaceDeclaration : GenericBlockDeclaration
|
|
{
|
|
/// <summary>
|
|
/// Constructs a new parse tree for a Interface declaration.
|
|
/// </summary>
|
|
/// <param name="attributes">The attributes for the parse tree.</param>
|
|
/// <param name="modifiers">The modifiers for the parse tree.</param>
|
|
/// <param name="keywordLocation">The location of the keyword.</param>
|
|
/// <param name="name">The name of the declaration.</param>
|
|
/// <param name="typeParameters">The type parameters on the declaration, if any.</param>
|
|
/// <param name="declarations">The declarations in the block.</param>
|
|
/// <param name="endStatement">The end block declaration, if any.</param>
|
|
/// <param name="span">The location of the parse tree.</param>
|
|
/// <param name="comments">The comments for the parse tree.</param>
|
|
public InterfaceDeclaration(AttributeBlockCollection attributes, ModifierCollection modifiers, Location keywordLocation, SimpleName name, TypeParameterCollection typeParameters, DeclarationCollection declarations, EndBlockDeclaration endStatement, Span span, IList<Comment> comments)
|
|
: base(TreeType.InterfaceDeclaration, attributes, modifiers, keywordLocation, name, typeParameters, declarations, endStatement, span, comments)
|
|
{
|
|
}
|
|
}
|