]> gitweb.factorcode.org Git - factor.git/commitdiff
struct mirrors were not ready yet
authorDoug Coleman <doug.coleman@gmail.com>
Tue, 1 Sep 2009 00:10:48 +0000 (19:10 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Tue, 1 Sep 2009 00:10:48 +0000 (19:10 -0500)
basis/mirrors/mirrors.factor

index c081e1015e16adda4743460ffed8084b9bb252b7..7190d612409a5e9a04553671669f3954a956a938 100644 (file)
@@ -3,7 +3,8 @@
 USING: accessors arrays assocs classes classes.struct
 classes.struct.prettyprint.private classes.tuple
 classes.tuple.private combinators generic hashtables kernel
-math quotations sequences slots slots.private vectors words ;
+math quotations sequences slots slots.private vectors words
+continuations fry ;
 IN: mirrors
 
 TUPLE: mirror { object read-only } ;
@@ -55,6 +56,3 @@ M: array make-mirror <enum> ;
 M: vector make-mirror <enum> ;
 M: quotation make-mirror <enum> ;
 M: object make-mirror <mirror> ;
-
-M: struct make-mirror struct>assoc
-    [ [ [ name>> ] [ c-type>> ] bi 2array ] dip ] assoc-map ;