[jvm-l] Re: CPS languages in Java

2007-12-29 Thread John Cowan
On Dec 29, 2007 9:05 AM, Ola Bini [EMAIL PROTECTED] wrote: I'm looking at implementing a language that would be best represented using CPS. Now, I can't really find any references to full CPS implementations on the JVM anywhere. I'm looking at using the technique Kawa is planning for

[jvm-l] Re: CPS languages in Java

2007-12-29 Thread Ola Bini
John Cowan wrote: On Dec 29, 2007 9:05 AM, Ola Bini [EMAIL PROTECTED] wrote: I'm looking at implementing a language that would be best represented using CPS. Now, I can't really find any references to full CPS implementations on the JVM anywhere. I'm looking at using the technique Kawa

[jvm-l] Re: CPS languages in Java

2007-12-29 Thread Kelly Nawrocke
Ola, One more: http://www.ccs.neu.edu/scheme/pubs/stackhack4.html This one is a C# implementation of the ideas found in Continuations from Generalized Stack Inspection. The implementation doesn't access the stack directly and use exception handling to perform the capturing. Useful since