Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs

53 lines
No EOL
788 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil
{
public class ExceptionHandlingClauseMeta
{
public TypeMeta CatchType
{
get;
set;
}
public int FilterStart
{
get;
set;
}
public ExceptionHandlingClauseFlagsEnum Flags
{
get;
set;
}
public int HandlerEnd
{
get;
set;
}
public int HandlerStart
{
get;
set;
}
public int TryEnd
{
get;
set;
}
public int TryStart
{
get;
set;
}
}
}