X-Git-Url: http://nitlanguage.org diff --git a/src/loader.nit b/src/loader.nit index 1502c40..125866a 100644 --- a/src/loader.nit +++ b/src/loader.nit @@ -135,6 +135,7 @@ redef class ModelBuilder alpha_comparator.sort(fs) # Try each entry as a group or a module for f in fs do + if f.first == '.' then continue var af = a/f mgroup = identify_group(af) if mgroup != null then @@ -636,6 +637,7 @@ redef class ModelBuilder var files = p.files alpha_comparator.sort(files) for f in files do + if f.first == '.' then continue var fp = p/f var g = identify_group(fp) # Recursively scan for groups of the same package @@ -810,8 +812,6 @@ redef class ModelBuilder mmodule.mdoc = mdoc mdoc.original_mentity = mmodule end - # Is the module a test suite? - mmodule.is_test_suite = not decl.get_annotations("test_suite").is_empty # Is the module generated? mmodule.is_generated = not decl.get_annotations("generated").is_empty end