`const' array in protos breaked in 3 arrays (for strings, numbers, and

prototypes).
This commit is contained in:
Roberto Ierusalimschy
2000-01-25 11:57:18 -02:00
parent 99e340b2ba
commit d11e5adf55
7 changed files with 86 additions and 80 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lopcodes.h,v 1.35 1999/12/27 17:33:22 roberto Exp roberto $
** $Id: lopcodes.h,v 1.36 1999/12/29 16:31:15 roberto Exp roberto $
** Opcodes for Lua virtual machine
** See Copyright Notice in lua.h
*/
@@ -33,8 +33,10 @@ PUSHNUMBER,/* b - (float)b */
PUSHNUMBERNEGW,/* w - (float)-w */
PUSHNUMBERNEG,/* b - (float)-b */
PUSHCONSTANTW,/*w - CNST[w] */
PUSHCONSTANT,/* b - CNST[b] */
PUSHSTRCNSTW,/* w - STRCNST[w] */
PUSHSTRCNST,/* b - STRCNST[b] */
PUSHNUMCNSTW,/* w - NUMCNST[w] */
PUSHNUMCNST,/* b - NUMCNST[b] */
PUSHUPVALUE,/* b - Closure[b] */