diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java index c4e10b5ef70..6221b65e8c4 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/messages/CompilerMessageSeverity.java @@ -29,6 +29,10 @@ public enum CompilerMessageSeverity { WARNING, INFO, LOGGING, + /** + * Source to output files mapping messages (e.g A.kt->A.class). + * It is needed for incremental compilation. + */ OUTPUT; public static final EnumSet ERRORS = EnumSet.of(ERROR, EXCEPTION);