aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h5
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
279struct _LSL_State 282struct _LSL_State