lib/serialization: `SimpleCollection` and `Map` are `Serializable`
authorAlexis Laferrière <alexis.laf@xymus.net>
Sun, 17 May 2015 01:57:32 +0000 (21:57 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Tue, 19 May 2015 21:38:48 +0000 (17:38 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

lib/serialization/serialization.nit

index 2795d80..6e5ce12 100644 (file)
@@ -162,4 +162,5 @@ redef class Int super DirectSerializable end
 redef class Float super DirectSerializable end
 redef class NativeString super DirectSerializable end
 redef class String super DirectSerializable end
-redef class Array[E] super Serializable end
+redef class SimpleCollection[E] super Serializable end
+redef class Map[K, V] super Serializable end