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