diff options
-rw-r--r-- | lparser.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lparser.h,v 1.40 2002/03/14 18:01:52 roberto Exp roberto $ | 2 | ** $Id: lparser.h,v 1.41 2002/03/25 17:47:14 roberto Exp roberto $ |
3 | ** Lua Parser | 3 | ** Lua Parser |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -27,9 +27,9 @@ typedef enum { | |||
27 | VUPVAL, /* info = index of upvalue in `upvalues' */ | 27 | VUPVAL, /* info = index of upvalue in `upvalues' */ |
28 | VGLOBAL, /* info = index of table; aux = index of global name in `k' */ | 28 | VGLOBAL, /* info = index of table; aux = index of global name in `k' */ |
29 | VINDEXED, /* info = table register; aux = index register (or `k') */ | 29 | VINDEXED, /* info = table register; aux = index register (or `k') */ |
30 | VJMP, /* info = instruction pc */ | ||
30 | VRELOCABLE, /* info = instruction pc */ | 31 | VRELOCABLE, /* info = instruction pc */ |
31 | VNONRELOC, /* info = result register */ | 32 | VNONRELOC, /* info = result register */ |
32 | VJMP, /* info = result register */ | ||
33 | VCALL /* info = result register */ | 33 | VCALL /* info = result register */ |
34 | } expkind; | 34 | } expkind; |
35 | 35 | ||