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: src/vs/workbench/contrib/editTelemetry/browser/telemetry/arcTelemetrySender.ts
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,7 @@ export class ChatArcTelemetrySender extends Disposable {
146
146
originalLineCount: number;
147
147
currentLineCount: number;
148
148
originalDeletedLineCount: number;
149
+
currentDeletedLineCount: number;
149
150
},{
150
151
owner: 'hediet';
151
152
comment: 'Reports the accepted and retained character count for an inline completion/edit.';
@@ -168,6 +169,7 @@ export class ChatArcTelemetrySender extends Disposable {
168
169
originalLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original line count before any edits.'};
169
170
currentLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current line count after edits.'};
170
171
originalDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The original deleted line count before any edits.'};
172
+
currentDeletedLineCount: {classification: 'SystemMetaData';purpose: 'FeatureInsight';isMeasurement: true;comment: 'The current deleted line count after edits.'};
0 commit comments