I'm writing a Flex/Bison parser for a language which contains for loop pre-processor directives, which should replicate loop content. Example:
for (i=0; i<2; i++)
record$i = value$i;
endfor
my pre-processor should generate the following output
record0 = value0;
record1 = value1;
I need to support nested loops. Can anyone suggest an idea how to implement this using Flex/Bison.
Thx a lot!