diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-09 15:00:38 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-05-09 15:00:38 -0300 |
| commit | 94e5545806515bc830982dedc4966bd2756a023e (patch) | |
| tree | 0e5c3433b060aa30b900fe69346993fa761089b7 | |
| parent | 78b40bf57db59aa35c9f1cbbd6482dc17e4306de (diff) | |
| download | lua-94e5545806515bc830982dedc4966bd2756a023e.tar.gz lua-94e5545806515bc830982dedc4966bd2756a023e.tar.bz2 lua-94e5545806515bc830982dedc4966bd2756a023e.zip | |
comment
| -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 | ||
