created FUS Group for Debugger Evaluator

This commit is contained in:
Anton Yalyshev
2019-04-25 00:40:15 +09:00
committed by Yan Zhulanow
parent 6fdcb69b43
commit 8a5fd44a55
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -80,5 +80,6 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
<statistics.counterUsagesCollector groupId="kotlin.ide.action.refactoring" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.newFileTempl" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.npwizards" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger.eval" version="1"/>
</extensions>
</idea-plugin>
+1
View File
@@ -80,5 +80,6 @@ The Kotlin plugin provides language support in IntelliJ IDEA and Android Studio.
<statistics.counterUsagesCollector groupId="kotlin.ide.action.refactoring" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.newFileTempl" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.npwizards" version="1"/>
<statistics.counterUsagesCollector groupId="kotlin.ide.debugger.eval" version="1"/>
</extensions>
</idea-plugin>
@@ -13,7 +13,8 @@ enum class FUSEventGroups(groupIdSuffix: String) {
JPSTarget("jps.target"),
Refactoring("ide.action.refactoring"),
NewFileTemplate("ide.newFileTempl"),
NPWizards("ide.npwizards");
NPWizards("ide.npwizards"),
DebugEval("ide.debugger.eval");
val GROUP_ID: String = "kotlin.$groupIdSuffix"
}