You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the concrete Scheme interpreter now uses TailCalls to avoid StackOverflowExceptions, it is still does not allow for reification of its continuations. This is necessary to support first-class continuation values and the corresponding Scheme primitive call/cc (which is already support by our ModF analyses).
Therefore, it might be necessary to rewrite the concrete Scheme interpreter manually in CPS-style.
The text was updated successfully, but these errors were encountered:
While the concrete Scheme interpreter now uses
TailCalls
to avoidStackOverflowException
s, it is still does not allow for reification of its continuations. This is necessary to support first-class continuation values and the corresponding Scheme primitivecall/cc
(which is already support by our ModF analyses).Therefore, it might be necessary to rewrite the concrete Scheme interpreter manually in CPS-style.
The text was updated successfully, but these errors were encountered: