diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/lscript/lscript_compile/lscript_tree.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/linden/indra/lscript/lscript_compile/lscript_tree.cpp b/linden/indra/lscript/lscript_compile/lscript_tree.cpp index df679ed..075418d 100644 --- a/linden/indra/lscript/lscript_compile/lscript_tree.cpp +++ b/linden/indra/lscript/lscript_compile/lscript_tree.cpp | |||
@@ -8957,8 +8957,12 @@ void LLScriptEventHandler::recurse(FILE *fp, S32 tabs, S32 tabsize, LSCRIPTCompi | |||
8957 | { | 8957 | { |
8958 | entrycount = 0; | 8958 | entrycount = 0; |
8959 | mStatement->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, mScopeEntry, entrycount, NULL); | 8959 | mStatement->recurse(fp, tabs, tabsize, pass, ptype, prunearg, scope, type, basetype, count, chunk, heap, stacksize, mScopeEntry, entrycount, NULL); |
8960 | fprintf(fp, "Function Args: %s\n", mScopeEntry->mFunctionArgs.mString); | 8960 | |
8961 | fprintf(fp, "Local List: %s\n", mScopeEntry->mLocals.mString); | 8961 | const char *function_args = mScopeEntry->mFunctionArgs.mString; |
8962 | fprintf(fp, "Function Args: %s\n", function_args?function_args:""); | ||
8963 | |||
8964 | const char *local_list = mScopeEntry->mLocals.mString; | ||
8965 | fprintf(fp, "Local List: %s\n", local_list?local_list:""); | ||
8962 | } | 8966 | } |
8963 | mStackSpace = (S32)count; | 8967 | mStackSpace = (S32)count; |
8964 | break; | 8968 | break; |