From: John Benediktsson Date: Sat, 28 Jul 2012 02:21:47 +0000 (-0700) Subject: Revert "continuations: add typing." X-Git-Tag: 0.97~2743 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=be2269e21962945d56b5f86759e0c01483f7ad40 Revert "continuations: add typing." This reverts commit 34d3f878cd4b012cb9904ea1051ac4cb4c1fb152. --- diff --git a/core/continuations/continuations.factor b/core/continuations/continuations.factor index 249cc4c161..0d0c41c72d 100644 --- a/core/continuations/continuations.factor +++ b/core/continuations/continuations.factor @@ -1,7 +1,7 @@ ! Copyright (C) 2003, 2011 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: accessors arrays assocs combinators combinators.private -kernel kernel.private make namespaces sequences vectors ; +USING: accessors assocs combinators combinators.private kernel +kernel.private make namespaces sequences vectors ; IN: continuations : with-datastack ( stack quot -- new-stack ) @@ -35,12 +35,7 @@ SYMBOL: restarts PRIVATE> -TUPLE: continuation -{ data array } -{ call callstack } -{ retain array } -{ name vector } -{ catch vector } ; +TUPLE: continuation data call retain name catch ; C: continuation