This commit is contained in:
BeniBenj
2025-11-26 00:28:22 +01:00
parent f3acb0e0d5
commit 857a688d8d

View File

@@ -501,13 +501,13 @@ export class InlineSuggestData {
);
}
private performance = new Performance();
private performance = new InlineSuggestionsPerformance();
public addPerformanceMarker(marker: string): void {
this.performance.mark(marker);
}
}
class Performance {
class InlineSuggestionsPerformance {
private markers: { name: string; timeStamp: number }[] = [];
constructor() {
this.markers.push({ name: 'start', timeStamp: Date.now() });