From edf467febff9c073037d9efe24caebaa92305c4a Mon Sep 17 00:00:00 2001 From: Anton Yalyshev Date: Mon, 17 Jun 2019 20:19:14 +0300 Subject: [PATCH] added lists of possible values for Evaluator collector --- .../kotlin/idea/statistics/FUSEventGroups.kt | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt b/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt index df6be73ffbd..d823fedf565 100644 --- a/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt +++ b/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt @@ -18,7 +18,7 @@ enum class FUSEventGroups(groupIdSuffix: String, val events: Set = hashS Refactoring("ide.action.refactoring", refactoringEvents), NewFileTemplate("ide.newFileTempl", newFileTemplateEvents), NPWizards("ide.npwizards", NPWizardsEvents), - DebugEval("ide.debugger.eval"); + DebugEval("ide.debugger.eval", debugEvalEvents); val GROUP_ID: String = "kotlin.$groupIdSuffix" } @@ -108,4 +108,18 @@ val NPWizardsEvents = hashSetOf( "KotlinDslGradleKotlinJSFrameworkSupportProvider", "KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider", "KotlinDslGradleKotlinJSNodeFrameworkSupportProvider" +) +val debugEvalEvents = hashSetOf( + "Success", + "NoFrameProxy", + "ThreadNotAvailable", + "ThreadNotSuspended", + "ProcessCancelledException", + "InterpretingException", + "EvaluateException", + "SpecialException", + "GenericException", + "FrontendException", + "BackendException", + "ErrorsInCode" ) \ No newline at end of file