Cosmos/source2/Users/Matthijs/Testing/IRs/EcmaCil/ExceptionHandlingClauseMeta.cs
mterwoord_cp d42206e826
2011-02-10 14:41:03 +00:00

53 lines
No EOL
840 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;
}
}
}