Cosmos/source/Cosmos.IL2CPU/Extensions/ExceptionRegionExtensions.cs
José Pedro fc9a412652 Compiler fixes.
Moved XSharp implementation to XSharp.Common.
2017-01-08 20:55:52 +00:00

15 lines
349 B
C#

using System;
using System.Reflection;
using System.Reflection.Metadata;
namespace Cosmos.IL2CPU
{
public static class ExceptionRegionExtensions
{
//TODO: Move this to Cosmos.IL2CPU
public static Type GetCatchType(this ExceptionRegion aThis)
{
throw new Exception("NetCore Fix Me");
}
}
}