mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
376 B
C#
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);
|
|
}
|
|
}
|
|
}
|