summaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-02 17:43:08 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-02 17:43:08 -0300
commit13ab5a6bb1258d640bda2e6d776d5a38f3fa867b (patch)
tree22e8c2e5c1d10001d0abdeced6046e4489962f27 /lcode.h
parentcd99bbcd0d88e7b5864ea9c9634ce8abd9bdedda (diff)
downloadlua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.gz
lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.tar.bz2
lua-13ab5a6bb1258d640bda2e6d776d5a38f3fa867b.zip
details
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lcode.h b/lcode.h
index ae4dd34f..4bc50c51 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.28 2002/03/08 19:10:32 roberto Exp roberto $ 2** $Id: lcode.h,v 1.29 2002/03/21 20:31:43 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -26,7 +26,8 @@
26typedef enum BinOpr { 26typedef enum BinOpr {
27 OPR_ADD, OPR_SUB, OPR_MULT, OPR_DIV, OPR_POW, 27 OPR_ADD, OPR_SUB, OPR_MULT, OPR_DIV, OPR_POW,
28 OPR_CONCAT, 28 OPR_CONCAT,
29 OPR_NE, OPR_EQ, OPR_LT, OPR_LE, OPR_GT, OPR_GE, 29 OPR_NE, OPR_EQ,
30 OPR_LT, OPR_LE, OPR_GT, OPR_GE,
30 OPR_AND, OPR_OR, 31 OPR_AND, OPR_OR,
31 OPR_NOBINOPR 32 OPR_NOBINOPR
32} BinOpr; 33} BinOpr;