syntax: error on hidden module gives the right module
authorJean Privat <jean@pryen.org>
Wed, 25 Jan 2012 16:15:11 +0000 (11:15 -0500)
committerJean Privat <jean@pryen.org>
Fri, 3 Feb 2012 16:11:55 +0000 (11:11 -0500)
Signed-off-by: Jean Privat <jean@pryen.org>

src/syntax/syntax_base.nit

index ab3020e..87595e1 100644 (file)
@@ -71,7 +71,7 @@ redef class MMGlobalClass
                if vpm == 3 then
                        return true
                else if vpm == 0 then
-                       v.error(n, "Visibility error: Class {self} comes from the hidden module {cm}.") # TODO: should not occur
+                       v.error(n, "Visibility error: Class {self} comes from the hidden module {pm}.") # TODO: should not occur
                        return false
                else if visibility_level >= 3 then
                        v.error(n, "Visibility error: Class {self} is private.")
@@ -111,7 +111,7 @@ redef class MMGlobalProperty
                        return true
                else if vpm == 0 then
                        # TODO: should not occurs 
-                       v.error(n, "Visibility error: Property {self} comes from the hidden module {cm}.")
+                       v.error(n, "Visibility error: Property {self} comes from the hidden module {pm}.")
                        return false
                else if visibility_level >= 3 then
                        v.error(n, "Visibility error: Property {self} is private.")