Minor: add comment for CompilerMessageSeverity.OUTPUT

This commit is contained in:
Alexey Tsvetkov
2017-05-16 20:12:39 +03:00
parent afa1e901a7
commit 3de679fb23
@@ -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<CompilerMessageSeverity> ERRORS = EnumSet.of(ERROR, EXCEPTION);