Change scripting Severity enums to order from DEBUG to FATAL.

#KT-39502 fixed
This commit is contained in:
Ryan Nett
2020-07-22 15:07:19 -07:00
committed by Ilya Chernikov
parent 59f6c0c273
commit b1173317c5
@@ -31,7 +31,7 @@ data class ScriptDiagnostic(
/**
* The diagnostic severity
*/
enum class Severity { FATAL, ERROR, WARNING, INFO, DEBUG }
enum class Severity { DEBUG, INFO, WARNING, ERROR, FATAL }
constructor(
code: Int,