using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a constructor declaration. /// public sealed class ConstructorDeclaration : MethodDeclaration { /// /// Creates a new parse tree for a constructor declaration. /// /// The attributes for the parse tree. /// The modifiers for the parse tree. /// The location of the keyword. /// The name of the declaration. /// The parameters of the declaration. /// The statements in the declaration. /// The end block declaration, if any. /// The location of the parse tree. /// The comments for the parse tree. public ConstructorDeclaration(AttributeBlockCollection attributes, ModifierCollection modifiers, Location keywordLocation, SimpleName name, ParameterCollection parameters, StatementCollection statements, EndBlockDeclaration endDeclaration, Span span, IList comments) : base(TreeType.ConstructorDeclaration, attributes, modifiers, keywordLocation, name, null, parameters, default(Location), null, null, null, null, statements, endDeclaration, span, comments) { } }