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