From a7cc5f6e33d066515160b766a7ecc0827c22a514 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Wed, 25 Jan 2012 11:15:11 -0500 Subject: [PATCH] syntax: error on hidden module gives the right module Signed-off-by: Jean Privat --- src/syntax/syntax_base.nit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.") -- 1.7.9.5