From 18b9d69577f19f209a330a074bf00e38c12e2053 Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Mon, 15 Oct 2012 19:09:01 +0400 Subject: [PATCH] added comment for 'INVISIBLE_REFERENCE' error --- .../frontend/src/org/jetbrains/jet/lang/diagnostics/Errors.java | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/diagnostics/Errors.java b/compiler/frontend/src/org/jetbrains/jet/lang/diagnostics/Errors.java index 2f83cbfde6c..a670f188960 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/diagnostics/Errors.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/diagnostics/Errors.java @@ -58,6 +58,7 @@ public interface Errors { UnresolvedReferenceDiagnosticFactory UNRESOLVED_REFERENCE = UnresolvedReferenceDiagnosticFactory.create(); //Elements with "INVISIBLE_REFERENCE" error are marked as unresolved, unlike elements with "INVISIBLE_MEMBER" error + //"INVISIBLE_REFERENCE" is used for invisible classes references and references in import DiagnosticFactory3 INVISIBLE_REFERENCE = DiagnosticFactory3.create(ERROR); DiagnosticFactory3 INVISIBLE_MEMBER = DiagnosticFactory3.create(ERROR, CALL_ELEMENT);