aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_yaccer.y
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-10 02:47:49 +1000
committerDavid Walter Seikel2012-01-10 02:47:49 +1000
commit21ae463bfa5ff2398734605fb04fb8d585ee879f (patch)
treea04724543034085aaa0c2ae4f561313e2d2ca436 /LuaSL/src/LuaSL_yaccer.y
parentAlmost got white space and comments working. Still a bug left somewhere, I t... (diff)
downloadSledjHamr-21ae463bfa5ff2398734605fb04fb8d585ee879f.zip
SledjHamr-21ae463bfa5ff2398734605fb04fb8d585ee879f.tar.gz
SledjHamr-21ae463bfa5ff2398734605fb04fb8d585ee879f.tar.bz2
SledjHamr-21ae463bfa5ff2398734605fb04fb8d585ee879f.tar.xz
Move more things into the LSL_Leaf structure, and some clean up related to that.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_yaccer.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_yaccer.y b/LuaSL/src/LuaSL_yaccer.y
index ed69dd3..2176065 100644
--- a/LuaSL/src/LuaSL_yaccer.y
+++ b/LuaSL/src/LuaSL_yaccer.y
@@ -11,6 +11,11 @@
11 11
12 12
13%token <value.spaceValue> LSL_SPACE /* Never actually emitted, but we need it in the token table. */ 13%token <value.spaceValue> LSL_SPACE /* Never actually emitted, but we need it in the token table. */
14%token <value.commentValue> LSL_COMMENT /* Never actually emitted, but we need it in the token table. */
15%token <value.commentValue> LSL_COMMENT_LINE /* Never actually emitted, but we need it in the token table. */
16%token <value.unknownValue> LSL_UNKNOWN /* Never actually emitted, but we need it in the token table. */
17
18%token <value.variableValue> LSL_IDENTIFIER
14 19
15%type <value.expressionValue> expr 20%type <value.expressionValue> expr
16%left LSL_BOOL_AND 21%left LSL_BOOL_AND