serialization: initialize `keep_going` to null
authorJean Privat <jean@pryen.org>
Thu, 6 Aug 2015 15:13:45 +0000 (11:13 -0400)
committerJean Privat <jean@pryen.org>
Thu, 6 Aug 2015 19:02:24 +0000 (15:02 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

lib/serialization/serialization.nit

index 1fec7e9..e3ca6b3 100644 (file)
@@ -131,7 +131,7 @@ abstract class Deserializer
        # When at `true`, this may cause the accumulation of a lot of entries in `errors`.
        #
        # Default at `true`.
-       var keep_going: nullable Bool is writable
+       var keep_going: nullable Bool = null is writable
 
        # Errors encountered in the last call to `deserialize`
        var errors = new Array[Error]