aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-21 17:22:01 +1000
committerDavid Walter Seikel2012-01-21 17:22:01 +1000
commit0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad (patch)
treee00480925476ecf80464090148a2feb21d01641b
parentAh, there ARE key to key operators. (diff)
downloadSledjHamr-0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad.zip
SledjHamr-0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad.tar.gz
SledjHamr-0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad.tar.bz2
SledjHamr-0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad.tar.xz
A comment about function declarations.
-rw-r--r--LuaSL/src/LuaSL_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index d265fd4..0148444 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -291,6 +291,7 @@ static LSL_Leaf *findVariable(LuaSL_compiler *compiler, const char *name)
291 return var; 291 return var;
292} 292}
293 293
294// TODO - Damn, you can reference functions declared later.
294LSL_Leaf *checkFunction(LuaSL_compiler *compiler, LSL_Leaf *identifier) 295LSL_Leaf *checkFunction(LuaSL_compiler *compiler, LSL_Leaf *identifier)
295{ 296{
296 gameGlobals *game = compiler->game; 297 gameGlobals *game = compiler->game;