using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for an AddHandler statement. /// public sealed class AddHandlerStatement : HandlerStatement { /// /// Constructs a new parse tree for an AddHandler statement. /// /// The name of the event. /// The location of the ','. /// The delegate expression. /// The location of the parse tree. /// The comments for the parse tree. public AddHandlerStatement(Expression name, Location commaLocation, Expression delegateExpression, Span span, IList comments) : base(TreeType.AddHandlerStatement, name, commaLocation, delegateExpression, span, comments) { } }