added lists of possible values for Evaluator collector

This commit is contained in:
Anton Yalyshev
2019-06-17 20:19:14 +03:00
parent 1a4a6bb0ff
commit edf467febf
@@ -18,7 +18,7 @@ enum class FUSEventGroups(groupIdSuffix: String, val events: Set<String> = hashS
Refactoring("ide.action.refactoring", refactoringEvents), Refactoring("ide.action.refactoring", refactoringEvents),
NewFileTemplate("ide.newFileTempl", newFileTemplateEvents), NewFileTemplate("ide.newFileTempl", newFileTemplateEvents),
NPWizards("ide.npwizards", NPWizardsEvents), NPWizards("ide.npwizards", NPWizardsEvents),
DebugEval("ide.debugger.eval"); DebugEval("ide.debugger.eval", debugEvalEvents);
val GROUP_ID: String = "kotlin.$groupIdSuffix" val GROUP_ID: String = "kotlin.$groupIdSuffix"
} }
@@ -109,3 +109,17 @@ val NPWizardsEvents = hashSetOf(
"KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider", "KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider",
"KotlinDslGradleKotlinJSNodeFrameworkSupportProvider" "KotlinDslGradleKotlinJSNodeFrameworkSupportProvider"
) )
val debugEvalEvents = hashSetOf(
"Success",
"NoFrameProxy",
"ThreadNotAvailable",
"ThreadNotSuspended",
"ProcessCancelledException",
"InterpretingException",
"EvaluateException",
"SpecialException",
"GenericException",
"FrontendException",
"BackendException",
"ErrorsInCode"
)