aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-28 10:07:27 +1000
committerDavid Walter Seikel2012-01-28 10:07:27 +1000
commitf2b30eccfc6bf537233f9349c59ab9de3ac86317 (patch)
treedcd189c32189d0fb03ef8726f9121455dfa29c81 /LuaSL/src/LuaSL_LSL_tree.h
parentNow I remember what that was for. Need caffeine. lol (diff)
downloadSledjHamr-f2b30eccfc6bf537233f9349c59ab9de3ac86317.zip
SledjHamr-f2b30eccfc6bf537233f9349c59ab9de3ac86317.tar.gz
SledjHamr-f2b30eccfc6bf537233f9349c59ab9de3ac86317.tar.bz2
SledjHamr-f2b30eccfc6bf537233f9349c59ab9de3ac86317.tar.xz
Document the other Clist use, and change it's name while I'm at it.
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 4ad5707..f2fccd0 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -254,8 +254,8 @@ struct _LSL_Function
254struct _LSL_FunctionCall 254struct _LSL_FunctionCall
255{ 255{
256 LSL_Function *function; 256 LSL_Function *function;
257 Eina_Inarray params; // Eina Inarray has not been released yet (Eina 1.2). 257 Eina_Inarray params; // Eina Inarray has not been released yet (Eina 1.2).
258 Eina_Clist functionCall; 258 Eina_Clist dangler; // Entry for function calls used before the function is defined.
259 LSL_Leaf *call; 259 LSL_Leaf *call;
260}; 260};
261 261
@@ -356,7 +356,7 @@ typedef struct
356#endif 356#endif
357 LSL_Leaf *lval; 357 LSL_Leaf *lval;
358 LSL_Block *currentBlock; 358 LSL_Block *currentBlock;
359 Eina_Clist danglingCalls; 359 Eina_Clist danglingCalls; // HEAD for function calls used before the function is defined.
360 int column, line; 360 int column, line;
361 int undeclared; 361 int undeclared;
362} LuaSL_compiler; 362} LuaSL_compiler;