mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[debugger] Fix breakpoints statistics: set the full list of jvm-related breakpoint types
GitOrigin-RevId: 28981b6c85597fa488d35c7e90d737af3ef13d0f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
638a4d290d
commit
8992e2c8da
@@ -10,11 +10,17 @@ import kotlin.math.roundToLong
|
||||
object DebuggerStatistics : CounterUsagesCollector() {
|
||||
override fun getGroup(): EventLogGroup = GROUP
|
||||
|
||||
private val GROUP = EventLogGroup("java.debugger", 3)
|
||||
private val GROUP = EventLogGroup("java.debugger", 4)
|
||||
|
||||
// fields
|
||||
|
||||
/**
|
||||
* These are XBreakpointType IDs related to JVM languages.
|
||||
*
|
||||
* Use [XBreakpointType.EXTENSION_POINT_NAME.extensions.map { it.id }] to get the full list.
|
||||
*/
|
||||
private val breakpointTypeField = EventFields.String("type", listOf(
|
||||
"java-exception", "java-collection",
|
||||
"java-exception", "java-collection", "java-wildcard-method",
|
||||
"java-line", "java-field", "java-method",
|
||||
"kotlin-line", "kotlin-field", "kotlin-function",
|
||||
))
|
||||
|
||||
Reference in New Issue
Block a user