aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_lemon_yaccer.y
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-19 15:32:43 +1000
committerDavid Walter Seikel2012-01-19 15:32:43 +1000
commitaed05a974f1111ce7f7d63315244edb275e1e758 (patch)
tree6e610f931c81052ce4e28b4b6c636cf4c1ff2c8b /LuaSL/src/LuaSL_lemon_yaccer.y
parentMore notes about Lua quirks. (diff)
downloadSledjHamr-aed05a974f1111ce7f7d63315244edb275e1e758.zip
SledjHamr-aed05a974f1111ce7f7d63315244edb275e1e758.tar.gz
SledjHamr-aed05a974f1111ce7f7d63315244edb275e1e758.tar.bz2
SledjHamr-aed05a974f1111ce7f7d63315244edb275e1e758.tar.xz
More quirk comments.
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_lemon_yaccer.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_lemon_yaccer.y b/LuaSL/src/LuaSL_lemon_yaccer.y
index a0defc5..eafab12 100644
--- a/LuaSL/src/LuaSL_lemon_yaccer.y
+++ b/LuaSL/src/LuaSL_lemon_yaccer.y
@@ -163,7 +163,7 @@ expr ::= identifier LSL_ASSIGNMENT_MODULO expr.
163expr ::= identifier LSL_ASSIGNMENT_DIVIDE expr. 163expr ::= identifier LSL_ASSIGNMENT_DIVIDE expr.
164expr ::= identifier LSL_ASSIGNMENT_PLAIN expr. 164expr ::= identifier LSL_ASSIGNMENT_PLAIN expr.
165 165
166// Hmm think this can have commas seperating the assignment parts. 166// Hmm think this can have commas seperating the assignment parts, or is that only in C?. If so, best to separate them when converting to Lua, as it uses that syntax for something else.
167statement(A) ::= type(B) LSL_IDENTIFIER(C) LSL_ASSIGNMENT_PLAIN(D) expr(E) LSL_STATEMENT(F). { A = addStatement(F, LSL_IDENTIFIER, addVariable(compiler, B, C, D, E)); } 167statement(A) ::= type(B) LSL_IDENTIFIER(C) LSL_ASSIGNMENT_PLAIN(D) expr(E) LSL_STATEMENT(F). { A = addStatement(F, LSL_IDENTIFIER, addVariable(compiler, B, C, D, E)); }
168statement(A) ::= type(B) LSL_IDENTIFIER(C) LSL_STATEMENT(F). { A = addStatement(F, LSL_IDENTIFIER, addVariable(compiler, B, C, NULL, NULL)); } 168statement(A) ::= type(B) LSL_IDENTIFIER(C) LSL_STATEMENT(F). { A = addStatement(F, LSL_IDENTIFIER, addVariable(compiler, B, C, NULL, NULL)); }
169 169