@@ -201,9 +201,9 @@ OP_MOVE,/* A B R[A] := R[B] */
201201OP_LOADI ,/* A sBx R[A] := sBx */
202202OP_LOADF ,/* A sBx R[A] := (lua_Number)sBx */
203203OP_LOADK ,/* A Bx R[A] := K[Bx] */
204- OP_LOADKX ,/* A R[A] := K[extra arg] */
205- OP_LOADFALSE ,/* A R[A] := false */
206- OP_LFALSESKIP ,/*A R[A] := false; pc++ */
204+ OP_LOADKX ,/* A R[A] := K[extra arg] */
205+ OP_LOADFALSE ,/* A R[A] := false */
206+ OP_LFALSESKIP ,/*A R[A] := false; pc++ */
207207OP_LOADTRUE ,/* A R[A] := true */
208208OP_LOADNIL ,/* A B R[A], R[A+1], ..., R[A+B] := nil */
209209OP_GETUPVAL ,/* A B R[A] := UpValue[B] */
@@ -263,11 +263,11 @@ OP_BNOT,/* A B R[A] := ~R[B] */
263263OP_NOT ,/* A B R[A] := not R[B] */
264264OP_LEN ,/* A B R[A] := length of R[B] */
265265
266- OP_CONCAT ,/* A B R[A] := R[A].. ... ..R[A + B - 1] */
266+ OP_CONCAT ,/* A B R[A] := R[A].. ... ..R[A + B - 1] */
267267
268268OP_CLOSE ,/* A close all upvalues >= R[A] */
269269OP_TBC ,/* A mark variable A "to be closed" */
270- OP_JMP ,/* sJ pc += sJ */
270+ OP_JMP ,/* sJ pc += sJ */
271271OP_EQ ,/* A B k if ((R[A] == R[B]) ~= k) then pc++ */
272272OP_LT ,/* A B k if ((R[A] < R[B]) ~= k) then pc++ */
273273OP_LE ,/* A B k if ((R[A] <= R[B]) ~= k) then pc++ */
@@ -279,15 +279,15 @@ OP_LEI,/* A sB k if ((R[A] <= sB) ~= k) then pc++ */
279279OP_GTI ,/* A sB k if ((R[A] > sB) ~= k) then pc++ */
280280OP_GEI ,/* A sB k if ((R[A] >= sB) ~= k) then pc++ */
281281
282- OP_TEST ,/* A k if (not R[A] == k) then pc++ */
282+ OP_TEST ,/* A k if (not R[A] == k) then pc++ */
283283OP_TESTSET ,/* A B k if (not R[B] == k) then pc++ else R[A] := R[B] */
284284
285285OP_CALL ,/* A B C R[A], ... ,R[A+C-2] := R[A](R[A+1], ... ,R[A+B-1]) */
286286OP_TAILCALL ,/* A B C k return R[A](R[A+1], ... ,R[A+B-1]) */
287287
288288OP_RETURN ,/* A B C k return R[A], ... ,R[A+B-2] (see note) */
289- OP_RETURN0 ,/* return */
290- OP_RETURN1 ,/* A return R[A] */
289+ OP_RETURN0 ,/* return */
290+ OP_RETURN1 ,/* A return R[A] */
291291
292292OP_FORLOOP ,/* A Bx update counters; if loop continues then pc-=Bx; */
293293OP_FORPREP ,/* A Bx <check values and prepare counters>;
@@ -301,9 +301,9 @@ OP_SETLIST,/* A B C k R[A][(C-1)*FPF+i] := R[A+i], 1 <= i <= B */
301301
302302OP_CLOSURE ,/* A Bx R[A] := closure(KPROTO[Bx]) */
303303
304- OP_VARARG ,/* A C R[A], R[A+1], ..., R[A+C-2] = vararg */
304+ OP_VARARG ,/* A C R[A], R[A+1], ..., R[A+C-2] = vararg */
305305
306- OP_VARARGPREP ,/*A (adjust vararg parameters) */
306+ OP_VARARGPREP ,/*A (adjust vararg parameters) */
307307
308308OP_EXTRAARG /* Ax extra (larger) argument for previous opcode */
309309} OpCode ;
0 commit comments