mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
34 lines
575 B
C#
34 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EcmaCil
|
|
{
|
|
public class MethodBodyMeta
|
|
{
|
|
public LocalVariableMeta[] LocalVariables
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public ExceptionHandlingClauseMeta[] ExceptionHandlingClauses
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool InitLocals
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public IL.BaseInstruction[] Instructions
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|