model_filters: make all options writable
authorAlexandre Terrasa <alexandre@moz-code.org>
Tue, 15 May 2018 16:49:55 +0000 (12:49 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Thu, 14 Jun 2018 20:33:09 +0000 (16:33 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/model/model_filters.nit

index 2c6cead..85f1042 100644 (file)
@@ -184,7 +184,7 @@ class ModelFilter
        # Accept examples?
        #
        # Default is `true`.
-       var accept_example = true is optional
+       var accept_example = true is optional, writable
 
        # Accept only entities that are not example related
        fun accept_mentity_example(mentity: MEntity): Bool do
@@ -193,7 +193,7 @@ class ModelFilter
        end
 
        # If set, accept only entities local to `accept_inherited`
-       var accept_inherited: nullable MEntity = null is optional
+       var accept_inherited: nullable MEntity = null is optional, writable
 
        # Accept only entities local to `accept_inherited`
        #