aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-03 13:20:48 +1000
committerDavid Walter Seikel2012-02-03 13:20:48 +1000
commitef0f7b7843110c329a2ff0906729d3e616d86b75 (patch)
tree0062ca7878707823161c42afb87e13891b738cd3 /LuaSL/src/LuaSL_LSL_tree.h
parentHalf arsed Lua crement implementation. (diff)
downloadSledjHamr-ef0f7b7843110c329a2ff0906729d3e616d86b75.zip
SledjHamr-ef0f7b7843110c329a2ff0906729d3e616d86b75.tar.gz
SledjHamr-ef0f7b7843110c329a2ff0906729d3e616d86b75.tar.bz2
SledjHamr-ef0f7b7843110c329a2ff0906729d3e616d86b75.tar.xz
Lua locals.
Diffstat (limited to 'LuaSL/src/LuaSL_LSL_tree.h')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 6273d60..3e80f50 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -146,6 +146,12 @@ typedef enum
146 ST_MODULO = 8192 // % %= 146 ST_MODULO = 8192 // % %=
147} opSubType; 147} opSubType;
148 148
149typedef enum
150{
151 MF_NONE = 0,
152 MF_LOCAL = 1
153} miscFlags;
154
149struct _allowedTypes 155struct _allowedTypes
150{ 156{
151 opType result; 157 opType result;
@@ -181,6 +187,7 @@ struct _LSL_Leaf
181#endif 187#endif
182 int line, column, len; 188 int line, column, len;
183 opType basicType; 189 opType basicType;
190 miscFlags flags;
184 union 191 union
185 { 192 {
186 float floatValue; 193 float floatValue;