mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-10 05:28:19 -05:00
rename
This commit is contained in:
@@ -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() });
|
||||
|
||||
Reference in New Issue
Block a user