diff options
Diffstat (limited to 'internal/lsp/protocol/tables.go')
| -rw-r--r-- | internal/lsp/protocol/tables.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/internal/lsp/protocol/tables.go b/internal/lsp/protocol/tables.go new file mode 100644 index 000000000..6a8fb99e0 --- /dev/null +++ b/internal/lsp/protocol/tables.go @@ -0,0 +1,30 @@ +package protocol + +var TableKindMap = map[SymbolKind]string{ + File: "File", + Module: "Module", + Namespace: "Namespace", + Package: "Package", + Class: "Class", + Method: "Method", + Property: "Property", + Field: "Field", + Constructor: "Constructor", + Enum: "Enum", + Interface: "Interface", + Function: "Function", + Variable: "Variable", + Constant: "Constant", + String: "String", + Number: "Number", + Boolean: "Boolean", + Array: "Array", + Object: "Object", + Key: "Key", + Null: "Null", + EnumMember: "EnumMember", + Struct: "Struct", + Event: "Event", + Operator: "Operator", + TypeParameter: "TypeParameter", +} |
