Skip to content

Commit 3de679f

Browse files
Minor: add comment for CompilerMessageSeverity.OUTPUT
1 parent afa1e90 commit 3de679f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public enum CompilerMessageSeverity {
2929
WARNING,
3030
INFO,
3131
LOGGING,
32+
/**
33+
* Source to output files mapping messages (e.g A.kt->A.class).
34+
* It is needed for incremental compilation.
35+
*/
3236
OUTPUT;
3337

3438
public static final EnumSet<CompilerMessageSeverity> ERRORS = EnumSet.of(ERROR, EXCEPTION);

0 commit comments

Comments
 (0)