changed: now [for] statements with the same function can be nested

sample:
[for my_function]
 [for my_function]
   foo
 [end]
[end]

changed: FunInfo::iter has a value from the last [for] statement now
sample:
[for my_function]
 [other_function]
[end]

void other_function(Info &i)
{
// here i.iter is the number of iteration
// previously was always zero
}

changed: small optimization in [for]
the proper function is being looking for only once at the beginning
previously it was searched in each iteration



git-svn-id: svn://ttmath.org/publicrep/ezc/trunk@331 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2011-01-14 23:59:30 +00:00
parent c4f5f79218
commit fd2194623a
4 changed files with 82 additions and 65 deletions
+1 -7
View File
@@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2007-2010, Tomasz Sowa
* Copyright (c) 2007-2011, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -754,12 +754,6 @@ void Pattern::ReadDirectiveIfindex(Item & item)
item.functions.clear();
temp_function.params.clear();
// reading function name
if( !ReadName(temp_function.name) )
return;
item.functions.push_back(temp_function);
// reading: odd, even, first or a number (without quotes)
if( !ReadName(temp_function.name) )
return;