diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-12-18 12:12:03 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2013-12-18 12:12:03 -0200 |
| commit | c0edab0f6de39ba5ae2e2f1540fa98f1b507afec (patch) | |
| tree | 9401b36cf92a0f37ae6a9cf052c99ff11787246e /lcode.h | |
| parent | a948054a1951cd526c732d6a0e16d99cae837d49 (diff) | |
| download | lua-github-c0edab0f6de39ba5ae2e2f1540fa98f1b507afec.tar.gz | |
first implementation of bitwise operators '&' (band), '|' (bor),
and '~' (bxor)
Diffstat (limited to 'lcode.h')
| -rw-r--r-- | lcode.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lcode.h,v 1.60 2013/04/26 13:07:53 roberto Exp roberto $ +** $Id: lcode.h,v 1.61 2013/12/16 19:06:52 roberto Exp roberto $ ** Code generator for Lua ** See Copyright Notice in lua.h */ @@ -27,6 +27,7 @@ typedef enum BinOpr { OPR_ADD, OPR_SUB, OPR_MUL, OPR_MOD, OPR_POW, OPR_DIV, OPR_IDIV, + OPR_BAND, OPR_BOR, OPR_BXOR, OPR_CONCAT, OPR_EQ, OPR_LT, OPR_LE, OPR_NE, OPR_GT, OPR_GE, |
