diff options
author | David Walter Seikel | 2012-01-21 17:22:01 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-21 17:22:01 +1000 |
commit | 0efb154f4bfbc9bb40d3a30fbf80e54d1e7060ad (patch) | |
tree | e00480925476ecf80464090148a2feb21d01641b | |
parent | Ah, there ARE key to key operators. (diff) | |
download | SledjHamr-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.c | 1 |
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. | ||
294 | LSL_Leaf *checkFunction(LuaSL_compiler *compiler, LSL_Leaf *identifier) | 295 | LSL_Leaf *checkFunction(LuaSL_compiler *compiler, LSL_Leaf *identifier) |
295 | { | 296 | { |
296 | gameGlobals *game = compiler->game; | 297 | gameGlobals *game = compiler->game; |