コード例 #1
0
 public override string ToString(Context cx)
 {
     if (!ObjLuaFunction.DEBUG)
     {
         return("");
     }
     return("// " + R(A) + " = " + cx.Kst(BX));
 }
コード例 #2
0
 public void Run(Context cx)
 {
     cx.SetReg(A, cx.Gbl(cx.Kst(BX)));
     cx.SetSReg(A, Kst(BX));
 }
コード例 #3
0
 public void Run(Context cx)
 {
     cx.SetLocal(A, cx.Kst(BX));
     cx.SetSReg(A, cx.SKst(BX));
 }