Cosmos/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
2017-01-31 11:22:59 -06:00

15 lines
376 B
C#

using System;
using System.Reflection;
using System.Reflection.Metadata;
using Cosmos.Debug.Symbols;
namespace Cosmos.IL2CPU
{
public static class ExceptionRegionExtensions
{
public static Type GetCatchType(this _ExceptionRegionInfo aThis)
{
return DebugSymbolReader.GetCatchType(aThis.Module, aThis.ExceptionRegion);
}
}
}