aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-31 13:01:24 +1000
committerDavid Walter Seikel2012-01-31 13:01:24 +1000
commit8ca98d77a10adfc26d2038655dcb0acd4712ca62 (patch)
tree34a50bda7cd2d23e6e28c40e7a7b00142302fc32 /LuaSL/src/LuaSL_LSL_tree.h
parentStatements now have an ignorable array. (diff)
downloadSledjHamr-8ca98d77a10adfc26d2038655dcb0acd4712ca62.zip
SledjHamr-8ca98d77a10adfc26d2038655dcb0acd4712ca62.tar.gz
SledjHamr-8ca98d77a10adfc26d2038655dcb0acd4712ca62.tar.bz2
SledjHamr-8ca98d77a10adfc26d2038655dcb0acd4712ca62.tar.xz
ignorableText -> ignorable coz it's neater. lol
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_LSL_tree.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/LuaSL/src/LuaSL_LSL_tree.h b/LuaSL/src/LuaSL_LSL_tree.h
index 18a4d81..931537c 100644
--- a/LuaSL/src/LuaSL_LSL_tree.h
+++ b/LuaSL/src/LuaSL_LSL_tree.h
@@ -165,7 +165,7 @@ struct _LSL_Text
165{ 165{
166 const char *text; 166 const char *text;
167#if LUASL_DIFF_CHECK 167#if LUASL_DIFF_CHECK
168 Eina_Strbuf *ignorableText; 168 Eina_Strbuf *ignorable;
169#endif 169#endif
170}; 170};
171 171
@@ -175,7 +175,7 @@ struct _LSL_Leaf
175 LSL_Leaf *right; 175 LSL_Leaf *right;
176 LSL_Token *toKen; 176 LSL_Token *toKen;
177#if LUASL_DIFF_CHECK 177#if LUASL_DIFF_CHECK
178 Eina_Strbuf *ignorableText; 178 Eina_Strbuf *ignorable;
179#endif 179#endif
180 int line, column, len; 180 int line, column, len;
181 opType basicType; 181 opType basicType;
@@ -203,7 +203,7 @@ struct _LSL_Parenthesis
203{ 203{
204 LSL_Leaf *contents; 204 LSL_Leaf *contents;
205#if LUASL_DIFF_CHECK 205#if LUASL_DIFF_CHECK
206 Eina_Strbuf *rightIgnorableText; 206 Eina_Strbuf *rightIgnorable;
207#endif 207#endif
208 LSL_Type type; 208 LSL_Type type;
209}; 209};
@@ -251,8 +251,8 @@ struct _LSL_Block
251 Eina_Hash *variables; // Those variables in this scope. 251 Eina_Hash *variables; // Those variables in this scope.
252 LSL_Function *function; // A pointer to the function if this block is a function. 252 LSL_Function *function; // A pointer to the function if this block is a function.
253#if LUASL_DIFF_CHECK 253#if LUASL_DIFF_CHECK
254 Eina_Strbuf *openIgnorableText; 254 Eina_Strbuf *openIgnorable;
255 Eina_Strbuf *closeIgnorableText; 255 Eina_Strbuf *closeIgnorable;
256#endif 256#endif
257}; 257};
258 258
@@ -370,7 +370,7 @@ typedef struct
370 LSL_Leaf *ast; 370 LSL_Leaf *ast;
371 LSL_Script script; 371 LSL_Script script;
372#if LUASL_DIFF_CHECK 372#if LUASL_DIFF_CHECK
373 Eina_Strbuf *ignorableText; 373 Eina_Strbuf *ignorable;
374#endif 374#endif
375 LSL_Leaf *lval; 375 LSL_Leaf *lval;
376 LSL_Block *currentBlock; 376 LSL_Block *currentBlock;