From: Lucas Bajolet Date: Fri, 6 May 2016 15:43:09 +0000 (-0400) Subject: lib/json: Implemented `pretty_json_visit` on JsonParseError X-Git-Url: http://nitlanguage.org lib/json: Implemented `pretty_json_visit` on JsonParseError Signed-off-by: Lucas Bajolet --- diff --git a/lib/json/static.nit b/lib/json/static.nit index 7c0e2cf..565da1f 100644 --- a/lib/json/static.nit +++ b/lib/json/static.nit @@ -439,6 +439,11 @@ redef class JsonParseError "\"position\":{position.to_json}," + "\"message\":{message.to_json}\}" end + + redef fun pretty_json_visit(buf, indents) do + buf.clear + buf.append(to_json) + end end redef class Position