Building plugin fdoc2html
SYSTEM FAILURE
Recursion limit exceeded expanding macros

What macros? Hmmm .. ok so the new code has a bit
more nesting .. but the recursion limit at the top level is 5000.
And I upped the inner one from 50 to 500 and still get this.

If I comment out 15 "elif" cases it goes away.

It's true, if .. do .. elif .. done is handled by recursion
during macro processing.

There is no if .. do in Felix, we only have ifgoto and ifnotgoto so 
the former is macro processed to the latter, and, of course
elif is just else (if .. do .. ) so for N conditionals in a chain
you will get N * M levels of nesting, for some constant M.

But N*M > 5000 seems far fetched ..


--
john skaller
skal...@users.sourceforge.net
http://felix-lang.org




------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk
_______________________________________________
Felix-language mailing list
Felix-language@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/felix-language

Reply via email to