added lists of possible values for Evaluator collector
This commit is contained in:
@@ -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"
|
||||||
}
|
}
|
||||||
@@ -108,4 +108,18 @@ val NPWizardsEvents = hashSetOf(
|
|||||||
"KotlinDslGradleKotlinJSFrameworkSupportProvider",
|
"KotlinDslGradleKotlinJSFrameworkSupportProvider",
|
||||||
"KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider",
|
"KotlinDslGradleKotlinJSBrowserFrameworkSupportProvider",
|
||||||
"KotlinDslGradleKotlinJSNodeFrameworkSupportProvider"
|
"KotlinDslGradleKotlinJSNodeFrameworkSupportProvider"
|
||||||
|
)
|
||||||
|
val debugEvalEvents = hashSetOf(
|
||||||
|
"Success",
|
||||||
|
"NoFrameProxy",
|
||||||
|
"ThreadNotAvailable",
|
||||||
|
"ThreadNotSuspended",
|
||||||
|
"ProcessCancelledException",
|
||||||
|
"InterpretingException",
|
||||||
|
"EvaluateException",
|
||||||
|
"SpecialException",
|
||||||
|
"GenericException",
|
||||||
|
"FrontendException",
|
||||||
|
"BackendException",
|
||||||
|
"ErrorsInCode"
|
||||||
)
|
)
|
||||||
Reference in New Issue
Block a user