diff options
author | David Walter Seikel | 2012-01-31 15:49:34 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-31 15:49:34 +1000 |
commit | 5ec220d96d9b4c7e12eaa68f0ea56a90ace3692a (patch) | |
tree | ca405d592844f60c398e43d44b07bb085bc910af | |
parent | Put back function call stuff I removed before, and document why it needs to b... (diff) | |
download | SledjHamr-5ec220d96d9b4c7e12eaa68f0ea56a90ace3692a.zip SledjHamr-5ec220d96d9b4c7e12eaa68f0ea56a90ace3692a.tar.gz SledjHamr-5ec220d96d9b4c7e12eaa68f0ea56a90ace3692a.tar.bz2 SledjHamr-5ec220d96d9b4c7e12eaa68f0ea56a90ace3692a.tar.xz |
Commentry++.
-rw-r--r-- | LuaSL/src/LuaSL_LSL_tree.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h index 96ef5a9..d62c0b6 100644 --- a/LuaSL/src/LuaSL_LSL_tree.h +++ b/LuaSL/src/LuaSL_LSL_tree.h | |||
@@ -273,7 +273,10 @@ struct _LSL_FunctionCall | |||
273 | LSL_Function *function; | 273 | LSL_Function *function; |
274 | Eina_Inarray params; // Eina Inarray has not been released yet (Eina 1.2). | 274 | Eina_Inarray params; // Eina Inarray has not been released yet (Eina 1.2). |
275 | Eina_Clist dangler; // Entry for function calls used before the function is defined. | 275 | Eina_Clist dangler; // Entry for function calls used before the function is defined. |
276 | LSL_Leaf *call; // This is to stash the details for dangling ones, to search later. The line and column details are needed for bitching, so we need the leaf. Also need the stringValue for the search. | 276 | LSL_Leaf *call; // This is to stash the details for dangling ones, to search later. |
277 | // The line and column details are needed for bitching, so we need the leaf. | ||
278 | // Also need the stringValue for the search. | ||
279 | // On top of all that, the leaf is still used in expressions, so need to keep it around and update it when resolving danglers. | ||
277 | }; | 280 | }; |
278 | 281 | ||
279 | struct _LSL_State | 282 | struct _LSL_State |