コード例 #1
0
 public FuncStack(Core core)
 {
     this.stack = new VM_Stack <FuncFrame>(core);
 }
コード例 #2
0
 public ExecStack(Core core)
 {
     this.stack = new VM_Stack <ExecFrame>(core);
 }