using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a Finally statement. /// public sealed class FinallyStatement : Statement { /// /// Constructs a new parse tree for a Finally statement. /// /// The location of the parse tree. /// The comments for the parse tree. public FinallyStatement(Span span, IList comments) : base(TreeType.FinallyStatement, span, comments) { } }