Fix java code generator including adding tail call support.

This commit is contained in:
James Roseborough
2010-07-26 05:58:34 +00:00
parent 69bbae70a1
commit 6364b002e4
4 changed files with 49 additions and 13 deletions

View File

@@ -135,7 +135,7 @@ local p = function( s,e )
print( s, e and aliases[tostring(e)] or e )
end
p(pcall(fib_bad, 30))
p((pcall(fib_bad, 25000)))
--p((pcall(fib_bad, 25000)))
p(pcall(fib_good, 30))
p(pcall(fib_good, 25000))