tables.go 759 B

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