From cc81b58cfd3924791c1746370f2199313599e0c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20Laferri=C3=A8re?= Date: Mon, 12 Sep 2016 13:26:16 -0400 Subject: [PATCH] json::serialization: desactivate docunit awaiting a fix for #2296 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/json/serialization.nit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/json/serialization.nit b/lib/json/serialization.nit index 6bcaccf792..3873df320f 100644 --- a/lib/json/serialization.nit +++ b/lib/json/serialization.nit @@ -734,7 +734,7 @@ redef class Text # Strip the `nullable` prefix and the params from the class name `self` # - # ~~~ + # ~~~nitish # assert "String".strip_nullable_and_params == "String" # assert "Array[Int]".strip_nullable_and_params == "Array" # assert "Map[Set[String], Set[Int]]".strip_nullable_and_params == "Map" @@ -1047,7 +1047,7 @@ private fun class_inheritance_metamodel_json: NativeString is intern redef class Sys # Class inheritance graph # - # ~~~ + # ~~~nitish # var hierarchy = class_inheritance_metamodel # assert hierarchy.has_edge("String", "Object") # assert not hierarchy.has_edge("Object", "String")