From: Jean Privat Date: Wed, 25 Jan 2012 16:15:11 +0000 (-0500) Subject: syntax: error on hidden module gives the right module X-Git-Tag: v0.5~32^2~30 X-Git-Url: http://nitlanguage.org syntax: error on hidden module gives the right module Signed-off-by: Jean Privat --- diff --git a/src/syntax/syntax_base.nit b/src/syntax/syntax_base.nit index ab3020e..87595e1 100644 --- a/src/syntax/syntax_base.nit +++ b/src/syntax/syntax_base.nit @@ -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.")