|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.CodeAnalysis
{
internal partial struct SymbolKey
{
private sealed class ModuleSymbolKey : AbstractSymbolKey<IModuleSymbol>
{
public static readonly ModuleSymbolKey Instance = new();
public sealed override void Create(IModuleSymbol symbol, SymbolKeyWriter visitor)
=> visitor.WriteSymbolKey(symbol.ContainingSymbol);
protected sealed override SymbolKeyResolution Resolve(
SymbolKeyReader reader, IModuleSymbol? contextualSymbol, out string? failureReason)
{
var containingSymbolResolution = reader.ReadSymbolKey(contextualSymbol?.ContainingSymbol, out var containingSymbolFailureReason);
if (containingSymbolFailureReason != null)
{
failureReason = $"({nameof(ModuleSymbolKey)} {nameof(containingSymbolResolution)} failed -> {containingSymbolFailureReason})";
return default;
}
using var result = PooledArrayBuilder<IModuleSymbol>.GetInstance();
foreach (var assembly in containingSymbolResolution.OfType<IAssemblySymbol>())
{
// Don't check ModuleIds for equality because in practice, no-one uses them,
// and there is no way to set netmodule name programmatically using Roslyn
result.AddValuesIfNotNull(assembly.Modules);
}
return CreateResolution(result, $"({nameof(ModuleSymbolKey)} failed)", out failureReason);
}
}
}
}
|