using System.Collections.Generic; namespace AspClassic.Parser; /// /// A parse tree for a SyncLock block statement. /// public sealed class SyncLockBlockStatement : ExpressionBlockStatement { /// /// Constructs a new parse tree for a SyncLock statement block. /// /// The expression. /// The statements in the block. /// The End statement for the block, if any. /// The location of the parse tree. /// The comments for the parse tree. public SyncLockBlockStatement(Expression expression, StatementCollection statements, EndBlockStatement endStatement, Span span, IList comments) : base(TreeType.SyncLockBlockStatement, expression, statements, endStatement, span, comments) { } }