using System.Collections.Generic;
namespace AspClassic.Parser;
///
/// A parse tree for a RemoveHandler statement.
///
public sealed class RemoveHandlerStatement : HandlerStatement
{
///
/// Constructs a new parse tree for a RemoveHandler 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 RemoveHandlerStatement(Expression name, Location commaLocation, Expression delegateExpression, Span span, IList comments)
: base(TreeType.RemoveHandlerStatement, name, commaLocation, delegateExpression, span, comments)
{
}
}