aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-28 10:02:35 +1000
committerDavid Walter Seikel2012-01-28 10:02:35 +1000
commit794212fc5dc48db3d5a9e5d0f00bd98ffeb73d4e (patch)
treeedd2caa6d1e890729297a00c4b970516179827f8 /LuaSL/src/LuaSL_LSL_tree.h
parentSome more commentry while I think things through. (diff)
downloadSledjHamr-794212fc5dc48db3d5a9e5d0f00bd98ffeb73d4e.zip
SledjHamr-794212fc5dc48db3d5a9e5d0f00bd98ffeb73d4e.tar.gz
SledjHamr-794212fc5dc48db3d5a9e5d0f00bd98ffeb73d4e.tar.bz2
SledjHamr-794212fc5dc48db3d5a9e5d0f00bd98ffeb73d4e.tar.xz
Now I remember what that was for. Need caffeine. lol
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-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};