src/model: add `is_broken` filter
[nit.git] / src / model / mmodule.nit
index 44eaffb..a410236 100644 (file)
@@ -248,8 +248,11 @@ class MModule
                end
        end
 
-       # Is `self` a unit test module used by `nitunit`?
-       var is_test_suite: Bool = false is writable
+       # Is `self` a module generated by a tool?
+       #
+       # This flag has no effect on the semantic.
+       # It is only intended on software engineering software to discriminate computer-generated modules from human-written ones.
+       var is_generated: Bool = false is writable
 
        # Get the non-`is_fictive` module on which `self` is based on.
        #