Revert "continuations: add typing."

This reverts commit 34d3f878cd.
db4
John Benediktsson 2012-07-27 19:21:47 -07:00
parent 87f8505736
commit be2269e219
1 changed files with 3 additions and 8 deletions

View File

@ -1,7 +1,7 @@
! Copyright (C) 2003, 2011 Slava Pestov. ! Copyright (C) 2003, 2011 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: accessors arrays assocs combinators combinators.private USING: accessors assocs combinators combinators.private kernel
kernel kernel.private make namespaces sequences vectors ; kernel.private make namespaces sequences vectors ;
IN: continuations IN: continuations
: with-datastack ( stack quot -- new-stack ) : with-datastack ( stack quot -- new-stack )
@ -35,12 +35,7 @@ SYMBOL: restarts
PRIVATE> PRIVATE>
TUPLE: continuation TUPLE: continuation data call retain name catch ;
{ data array }
{ call callstack }
{ retain array }
{ name vector }
{ catch vector } ;
C: <continuation> continuation C: <continuation> continuation