using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a delegate Sub declaration. /// public sealed class DelegateSubDeclaration : DelegateDeclaration { /// /// Constructs a new parse tree for a delegate Sub declaration. /// /// The attributes for the parse tree. /// The modifiers for the parse tree. /// The location of the keyword. /// The location of the 'Sub'. /// The name of the declaration. /// The type parameters of the declaration, if any. /// The parameters of the declaration. /// The location of the parse tree. /// The comments for the parse tree. public DelegateSubDeclaration(AttributeBlockCollection attributes, ModifierCollection modifiers, Location keywordLocation, Location subLocation, SimpleName name, TypeParameterCollection typeParameters, ParameterCollection parameters, Span span, IList comments) : base(TreeType.DelegateSubDeclaration, attributes, modifiers, keywordLocation, subLocation, name, typeParameters, parameters, default(Location), null, null, span, comments) { } }