@codingame/monaco-vscode-performance-service-override 31.0.0 → 32.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-performance-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "32.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - performance service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "32.0.0"
|
|
19
19
|
},
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"module": "index.js",
|
|
@@ -35,7 +35,7 @@ registerAction2(class extends Action2 {
|
|
|
35
35
|
constructor() {
|
|
36
36
|
super({
|
|
37
37
|
id: "perfview.show",
|
|
38
|
-
title: ( localize2(
|
|
38
|
+
title: ( localize2(12028, "Startup Performance")),
|
|
39
39
|
category: Categories.Developer,
|
|
40
40
|
f1: true
|
|
41
41
|
});
|
|
@@ -52,7 +52,7 @@ registerAction2(class PrintServiceCycles extends Action2 {
|
|
|
52
52
|
constructor() {
|
|
53
53
|
super({
|
|
54
54
|
id: "perf.insta.printAsyncCycles",
|
|
55
|
-
title: ( localize2(
|
|
55
|
+
title: ( localize2(12029, "Print Service Cycles")),
|
|
56
56
|
category: Categories.Developer,
|
|
57
57
|
f1: true
|
|
58
58
|
});
|
|
@@ -73,7 +73,7 @@ registerAction2(class PrintServiceTraces extends Action2 {
|
|
|
73
73
|
constructor() {
|
|
74
74
|
super({
|
|
75
75
|
id: "perf.insta.printTraces",
|
|
76
|
-
title: ( localize2(
|
|
76
|
+
title: ( localize2(12030, "Print Service Traces")),
|
|
77
77
|
category: Categories.Developer,
|
|
78
78
|
f1: true
|
|
79
79
|
});
|
|
@@ -92,7 +92,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
|
|
|
92
92
|
constructor() {
|
|
93
93
|
super({
|
|
94
94
|
id: "perf.event.profiling",
|
|
95
|
-
title: ( localize2(
|
|
95
|
+
title: ( localize2(12031, "Print Emitter Profiles")),
|
|
96
96
|
category: Categories.Developer,
|
|
97
97
|
f1: true
|
|
98
98
|
});
|
|
@@ -113,7 +113,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
|
|
|
113
113
|
( Registry.as(Extensions$1.Configuration)).registerConfiguration({
|
|
114
114
|
id: "performance",
|
|
115
115
|
order: 101,
|
|
116
|
-
title: ( localize(
|
|
116
|
+
title: ( localize(12032, "Performance")),
|
|
117
117
|
type: "object",
|
|
118
118
|
properties: {
|
|
119
119
|
"telemetry.performance.inputLatencySamplingProbability": {
|
|
@@ -123,7 +123,7 @@ registerAction2(class PrintEventProfiling extends Action2 {
|
|
|
123
123
|
maximum: 1,
|
|
124
124
|
tags: ["experimental"],
|
|
125
125
|
markdownDescription: ( localize(
|
|
126
|
-
|
|
126
|
+
12033,
|
|
127
127
|
"Probability (0 to 1) that input latency telemetry is reported for this session. Set to 0 to disable, 1 to always report."
|
|
128
128
|
)),
|
|
129
129
|
experiment: {
|
|
@@ -80,7 +80,7 @@ let PerfviewInput = class PerfviewInput extends TextResourceEditorInput {
|
|
|
80
80
|
textResourceConfigurationService,
|
|
81
81
|
customEditorLabelService
|
|
82
82
|
) {
|
|
83
|
-
super(PerfviewContrib.get().getInputUri(), ( localize(
|
|
83
|
+
super(PerfviewContrib.get().getInputUri(), ( localize(12034, "Startup Performance")), undefined, undefined, undefined, textModelResolverService, textFileService, editorService, fileService, labelService, filesConfigurationService, textResourceConfigurationService, customEditorLabelService);
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
86
|
PerfviewInput = PerfviewInput_1 = ( __decorate([( __param(0, ITextModelService)), ( __param(1, ITextFileService)), ( __param(2, IEditorService)), ( __param(3, IFileService)), ( __param(4, ILabelService)), ( __param(5, IFilesConfigurationService)), ( __param(6, ITextResourceConfigurationService)), ( __param(7, ICustomEditorLabelService))], PerfviewInput));
|