diff options
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -254,7 +254,7 @@ OP_SETTABLE,/* A B C R[A][R[B]] := RK(C) */ | |||
254 | OP_SETI,/* A B C R[A][B] := RK(C) */ | 254 | OP_SETI,/* A B C R[A][B] := RK(C) */ |
255 | OP_SETFIELD,/* A B C R[A][K[B]:shortstring] := RK(C) */ | 255 | OP_SETFIELD,/* A B C R[A][K[B]:shortstring] := RK(C) */ |
256 | 256 | ||
257 | OP_NEWTABLE,/* A B C k R[A] := {} */ | 257 | OP_NEWTABLE,/* A vB vC k R[A] := {} */ |
258 | 258 | ||
259 | OP_SELF,/* A B C R[A+1] := R[B]; R[A] := R[B][K[C]:shortstring] */ | 259 | OP_SELF,/* A B C R[A+1] := R[B]; R[A] := R[B][K[C]:shortstring] */ |
260 | 260 | ||
@@ -378,9 +378,9 @@ OP_EXTRAARG/* Ax extra (larger) argument for previous opcode */ | |||
378 | real C = EXTRAARG _ C (the bits of EXTRAARG concatenated with the | 378 | real C = EXTRAARG _ C (the bits of EXTRAARG concatenated with the |
379 | bits of C). | 379 | bits of C). |
380 | 380 | ||
381 | (*) In OP_NEWTABLE, B is log2 of the hash size (which is always a | 381 | (*) In OP_NEWTABLE, vB is log2 of the hash size (which is always a |
382 | power of 2) plus 1, or zero for size zero. If not k, the array size | 382 | power of 2) plus 1, or zero for size zero. If not k, the array size |
383 | is C. Otherwise, the array size is EXTRAARG _ C. | 383 | is vC. Otherwise, the array size is EXTRAARG _ vC. |
384 | 384 | ||
385 | (*) For comparisons, k specifies what condition the test should accept | 385 | (*) For comparisons, k specifies what condition the test should accept |
386 | (true or false). | 386 | (true or false). |