Merge from vscode 718331d6f3ebd1b571530ab499edb266ddd493d5

This commit is contained in:
ADS Merger
2020-02-08 04:50:58 +00:00
parent 8c61538a27
commit 2af13c18d2
752 changed files with 16458 additions and 10063 deletions

View File

@@ -227,8 +227,6 @@ export interface IStartupMetrics {
* * Reading of package.json-files is avoided by caching them all in a single file (after the read,
* until another extension is installed)
* * Happens in parallel to other things, depends on async timing
*
* todo@joh/ramya this measures an artifical dealy we have added, see https://github.com/Microsoft/vscode/blob/2f07ddae8bf56e969e3f4ba1447258ebc999672f/src/vs/workbench/services/extensions/electron-browser/extensionService.ts#L311-L326
*/
readonly ellapsedExtensions: number;
@@ -264,8 +262,6 @@ export interface IStartupMetrics {
* * Measured with the `willRestoreEditors` and `didRestoreEditors` performance marks.
* * This should be looked at per editor and per editor type.
* * Happens in parallel to other things, depends on async timing
*
* todo@joh/ramya We should probably measures each editor individually?
*/
readonly ellapsedEditorRestore: number;
@@ -274,8 +270,6 @@ export interface IStartupMetrics {
*
* * Happens in the renderer-process
* * Measured with the `willStartWorkbench` and `didStartWorkbench` performance marks.
*
* todo@joh/ramya Not sure if this is useful because this includes too much
*/
readonly ellapsedWorkbench: number;