model: Fix comment for MVisibility
[nit.git] / src / model / mmodule.nit
index 2b7e5af..5cce237 100644 (file)
@@ -17,7 +17,6 @@
 # modules and module hierarchies in the metamodel
 module mmodule
 
-import poset
 import location
 import mproject
 private import more_collections
@@ -72,7 +71,7 @@ class MModule
        super MConcern
 
        # The model considered
-       var model: Model
+       redef var model: Model
 
        # placebo for old module nesting hierarchy
        # return null if self is not nested (ie. is a top-level module)
@@ -225,7 +224,7 @@ class MModule
        # Is the mmodule created for internal purpose?
        # Fictive module are instantied internally but they should not be
        # exposed to the final user
-       var is_fictive: Bool writable = false
+       var is_fictive: Bool = false is writable
 
        redef fun parent_concern do return mgroup
 end