コード例 #1
0
ファイル: PapyrusMethodBody.cs プロジェクト: madawe/Paprus
 public PapyrusMethodBody(PapyrusMethodDefinition method)
 {
     this.method  = method;
     Instructions = new PapyrusInstructionCollection(method);
     Variables    = new List <PapyrusVariableReference>();
     //TempVariables = new List<PapyrusVariableReference>();
 }
コード例 #2
0
 public PapyrusInstructionCollection(PapyrusMethodDefinition method)
 {
     this.method = method;
 }