// 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; namespace Microsoft.CodeAnalysis.FindSymbols { /// /// Information about all the declarations defined within a document. Each declaration in the /// document get a single item in . /// internal interface IDeclarationInfo { ImmutableArray DeclaredSymbolInfos { get; } } }