using System; using System.Collections.Immutable; namespace Cosmos.Debug.Symbols { public class LocalTypeGenericContext { public LocalTypeGenericContext(ImmutableArray typeParameters, ImmutableArray methodParameters) { MethodParameters = methodParameters; TypeParameters = typeParameters; } public ImmutableArray MethodParameters { get; } public ImmutableArray TypeParameters { get; } } }