// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Options; using Microsoft.CodeAnalysis.Structure; namespace Microsoft.CodeAnalysis.CSharp.Structure { internal class DelegateDeclarationStructureProvider : AbstractSyntaxNodeStructureProvider { protected override void CollectBlockSpans( DelegateDeclarationSyntax delegateDeclaration, ArrayBuilder spans, OptionSet options, CancellationToken cancellationToken) { CSharpStructureHelpers.CollectCommentBlockSpans(delegateDeclaration, spans); } } }