You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/CodeTransformTelemetryManager.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -84,9 +84,9 @@ class CodeTransformTelemetryManager(private val project: Project) {
Copy file name to clipboardExpand all lines: plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/telemetry/CodeWhispererUserModificationTracker.kt
+33-15Lines changed: 33 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,21 @@ data class AcceptedSuggestionEntry(
57
57
valconnection:ToolkitConnection?
58
58
) : UserModificationTrackingEntry
59
59
60
+
data classCodeInsertionDiff(
61
+
valoriginal:String,
62
+
valmodified:String,
63
+
valdiff:Double
64
+
)
65
+
66
+
fun CodeInsertionDiff?.percentage(): Double=when {
Copy file name to clipboardExpand all lines: plugins/amazonq/codewhisperer/jetbrains-community/tst/software/aws/toolkits/jetbrains/services/codewhisperer/CodeWhispererUserModificationTrackerTest.kt
0 commit comments