aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 6d122d4..4ad5707 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -207,7 +207,7 @@ struct _LSL_Identifier // For variables and function parameters.
207 207
208struct _LSL_Statement 208struct _LSL_Statement
209{ 209{
210 Eina_Clist statement; // For statement lists, perhaps this is just duplicating the one in LSL_Block? Not actually being used at the moment, except to collect them. On the other hand, I might have been half way through that part. lol 210 Eina_Clist statement; // For block statement lists, this is the entry.
211 union 211 union
212 { 212 {
213 LSL_Identifier *identifier; 213 LSL_Identifier *identifier;
@@ -235,7 +235,7 @@ while expr, block, parens
235struct _LSL_Block 235struct _LSL_Block
236{ 236{
237 LSL_Block *outerBlock; 237 LSL_Block *outerBlock;
238 Eina_Clist statements; // For statement lists. 238 Eina_Clist statements; // For statement lists, this is the HEAD.
239 Eina_Hash *variables; // Those variables in this scope. 239 Eina_Hash *variables; // Those variables in this scope.
240 LSL_Function *function; // A pointer to the function if this block is a function. 240 LSL_Function *function; // A pointer to the function if this block is a function.
241}; 241};