mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
17 lines
494 B
C#
17 lines
494 B
C#
using System;
|
|
using System.Collections.Immutable;
|
|
|
|
namespace Cosmos.Debug.Symbols
|
|
{
|
|
public class LocalTypeGenericContext
|
|
{
|
|
public LocalTypeGenericContext(ImmutableArray<Type> typeParameters, ImmutableArray<Type> methodParameters)
|
|
{
|
|
MethodParameters = methodParameters;
|
|
TypeParameters = typeParameters;
|
|
}
|
|
|
|
public ImmutableArray<Type> MethodParameters { get; }
|
|
public ImmutableArray<Type> TypeParameters { get; }
|
|
}
|
|
}
|