aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
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;