forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtelemetryContracts.ts
More file actions
31 lines (31 loc) · 1.03 KB
/
telemetryContracts.ts
File metadata and controls
31 lines (31 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export namespace Debugger {
export const Load = 'DEBUGGER_LOAD';
export const Attach = 'DEBUGGER_ATTACH';
}
export namespace Commands {
export const SortImports = 'COMMAND_SORT_IMPORTS';
export const UnitTests = 'COMMAND_UNIT_TEST';
}
export namespace IDE {
export const Completion = 'CODE_COMPLETION';
export const Definition = 'CODE_DEFINITION';
export const Format = 'CODE_FORMAT';
export const HoverDefinition = 'CODE_HOVER_DEFINITION';
export const Reference = 'CODE_REFERENCE';
export const Rename = 'CODE_RENAME';
export const Symbol = 'CODE_SYMBOL';
export const Lint = 'LINTING';
}
export namespace REFACTOR {
export const Rename = 'REFACTOR_RENAME';
export const ExtractVariable = 'REFACTOR_EXTRACT_VAR';
export const ExtractMethod = 'REFACTOR_EXTRACT_METHOD';
}
export namespace UnitTests {
export const Run = 'UNITTEST_RUN';
export const Discover = 'UNITTEST_DISCOVER';
}
export namespace Jupyter {
export const Usage = 'JUPYTER';
}
export const EVENT_LOAD = 'IDE_LOAD';