aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-21 10:08:06 +1000
committerDavid Walter Seikel2012-01-21 10:08:06 +1000
commit7cec8639839e7e48d274570c7a9c915d6565c8cb (patch)
tree725c603da23f6649d561bec815f9e359272cc4df /LuaSL/src/LuaSL_LSL_tree.h
parentSome extra debugging. (diff)
downloadSledjHamr-7cec8639839e7e48d274570c7a9c915d6565c8cb.zip
SledjHamr-7cec8639839e7e48d274570c7a9c915d6565c8cb.tar.gz
SledjHamr-7cec8639839e7e48d274570c7a9c915d6565c8cb.tar.bz2
SledjHamr-7cec8639839e7e48d274570c7a9c915d6565c8cb.tar.xz
A better way to do function parameters. NOTE - using an unreleased Eina API from SVN.
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index be3896e..2bda3b4 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -207,8 +207,10 @@ struct _LSL_Function
207{ 207{
208 const char *name; 208 const char *name;
209 LSL_Leaf *type; 209 LSL_Leaf *type;
210 LSL_Leaf *params; // Probably should be some sort of eina list. 210#ifdef LUASL_DIFF_CHECK
211 Eina_Hash *variables; // And this actually duplicates params. 211 LSL_Leaf *params; // So we store the parenthesis, and their ignorables.
212#endif
213 Eina_Inarray vars; // Eina Inarray has not been released yet (Eina 1.2).
212 LSL_Leaf *block; 214 LSL_Leaf *block;
213}; 215};
214 216