1package protocol
2
3var TableKindMap = map[SymbolKind]string{
4 File: "File",
5 Module: "Module",
6 Namespace: "Namespace",
7 Package: "Package",
8 Class: "Class",
9 Method: "Method",
10 Property: "Property",
11 Field: "Field",
12 Constructor: "Constructor",
13 Enum: "Enum",
14 Interface: "Interface",
15 Function: "Function",
16 Variable: "Variable",
17 Constant: "Constant",
18 String: "String",
19 Number: "Number",
20 Boolean: "Boolean",
21 Array: "Array",
22 Object: "Object",
23 Key: "Key",
24 Null: "Null",
25 EnumMember: "EnumMember",
26 Struct: "Struct",
27 Event: "Event",
28 Operator: "Operator",
29 TypeParameter: "TypeParameter",
30}