From 29b7ecf2405830c613a283df44932fd2baec3ffc Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Fri, 3 Feb 2012 15:17:56 +1000 Subject: Comment even tricksier bit crement cases. --- LuaSL/src/LuaSL_compile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'LuaSL/src/LuaSL_compile.c') diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c index 51d859e..9f1a374 100644 --- a/LuaSL/src/LuaSL_compile.c +++ b/LuaSL/src/LuaSL_compile.c @@ -1947,7 +1947,8 @@ static void outputCrementsToken(FILE *file, outputMode mode, LSL_Leaf *content) case LSL_INCREMENT_PRE : { /* TODO - - Damn, gotta put the function call out BEFORE the statment, which has alreadf been put out. + Damn, gotta put the function call out BEFORE the statment, which has already been put out. + Trickier case - while (++i) */ outputText(file, &(content->value.identifierValue->name), FALSE); if (LSL_DECREMENT_PRE == content->toKen->type) @@ -1967,6 +1968,7 @@ static void outputCrementsToken(FILE *file, outputMode mode, LSL_Leaf *content) { /* TODO - Find the end of the statement and put it there. + Bound to be a trickier case as above. lol */ outputText(file, &(content->value.identifierValue->name), FALSE); if (LSL_DECREMENT_POST == content->toKen->type) -- cgit v1.1