lib/nitcorn: make session writable
authorAlexandre Terrasa <alexandre@moz-code.org>
Mon, 16 May 2016 15:44:51 +0000 (11:44 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Thu, 19 May 2016 21:33:52 +0000 (17:33 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/nitcorn/sessions.nit

index 4d54aa9..005a4dd 100644 (file)
@@ -72,7 +72,7 @@ end
 
 redef class HttpRequest
        # The `Session` associated to this request
-       var session: nullable Session = null
+       var session: nullable Session = null is writable
 end
 
 redef class HttpRequestParser