We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afa1e90 commit 3de679fCopy full SHA for 3de679f
compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java
@@ -29,6 +29,10 @@ public enum CompilerMessageSeverity {
29
WARNING,
30
INFO,
31
LOGGING,
32
+ /**
33
+ * Source to output files mapping messages (e.g A.kt->A.class).
34
+ * It is needed for incremental compilation.
35
+ */
36
OUTPUT;
37
38
public static final EnumSet<CompilerMessageSeverity> ERRORS = EnumSet.of(ERROR, EXCEPTION);
0 commit comments