@jafreck/lore 0.3.5 → 0.3.7

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.
Files changed (401) hide show
  1. package/README.md +51 -58
  2. package/dist/cli.js +76 -22
  3. package/dist/cli.js.map +1 -1
  4. package/dist/{lore-server/db.d.ts → db/read-only.d.ts} +1 -1
  5. package/dist/db/read-only.d.ts.map +1 -0
  6. package/dist/{lore-server/db.js → db/read-only.js} +1 -1
  7. package/dist/db/read-only.js.map +1 -0
  8. package/dist/{indexer/db.d.ts → db/schema.d.ts} +1 -1
  9. package/dist/db/schema.d.ts.map +1 -0
  10. package/dist/{indexer/db.js → db/schema.js} +10 -3
  11. package/dist/db/schema.js.map +1 -0
  12. package/dist/{indexer → discovery}/poller.d.ts +27 -2
  13. package/dist/discovery/poller.d.ts.map +1 -0
  14. package/dist/{indexer → discovery}/poller.js +60 -1
  15. package/dist/discovery/poller.js.map +1 -0
  16. package/dist/{indexer → discovery}/walker.d.ts +1 -1
  17. package/dist/discovery/walker.d.ts.map +1 -0
  18. package/dist/{indexer → discovery}/walker.js +1 -1
  19. package/dist/discovery/walker.js.map +1 -0
  20. package/dist/{indexer → discovery}/watcher.d.ts +27 -2
  21. package/dist/discovery/watcher.d.ts.map +1 -0
  22. package/dist/{indexer → discovery}/watcher.js +62 -1
  23. package/dist/discovery/watcher.js.map +1 -0
  24. package/dist/docs/docs.d.ts.map +1 -0
  25. package/dist/docs/docs.js.map +1 -0
  26. package/dist/{indexer → embeddings}/embedder.d.ts +12 -8
  27. package/dist/embeddings/embedder.d.ts.map +1 -0
  28. package/dist/{indexer → embeddings}/embedder.js +35 -19
  29. package/dist/embeddings/embedder.js.map +1 -0
  30. package/dist/{indexer/git-history.d.ts → git/history.d.ts} +2 -2
  31. package/dist/git/history.d.ts.map +1 -0
  32. package/dist/{indexer/git-history.js → git/history.js} +2 -2
  33. package/dist/git/history.js.map +1 -0
  34. package/dist/{indexer/git-hooks.d.ts → git/hooks.d.ts} +2 -1
  35. package/dist/git/hooks.d.ts.map +1 -0
  36. package/dist/{indexer/git-hooks.js → git/hooks.js} +5 -4
  37. package/dist/git/hooks.js.map +1 -0
  38. package/dist/index.d.ts +29 -28
  39. package/dist/index.d.ts.map +1 -1
  40. package/dist/index.js +14 -14
  41. package/dist/index.js.map +1 -1
  42. package/dist/indexer/index.d.ts +9 -6
  43. package/dist/indexer/index.d.ts.map +1 -1
  44. package/dist/indexer/index.js +58 -17
  45. package/dist/indexer/index.js.map +1 -1
  46. package/dist/indexer/pipeline.d.ts +58 -20
  47. package/dist/indexer/pipeline.d.ts.map +1 -1
  48. package/dist/indexer/pipeline.js +53 -26
  49. package/dist/indexer/pipeline.js.map +1 -1
  50. package/dist/indexer/stages/dependency-api.js +4 -4
  51. package/dist/indexer/stages/dependency-api.js.map +1 -1
  52. package/dist/indexer/stages/docs-index.d.ts +2 -2
  53. package/dist/indexer/stages/docs-index.d.ts.map +1 -1
  54. package/dist/indexer/stages/docs-index.js +2 -2
  55. package/dist/indexer/stages/docs-index.js.map +1 -1
  56. package/dist/indexer/stages/embedding.js +2 -2
  57. package/dist/indexer/stages/embedding.js.map +1 -1
  58. package/dist/indexer/stages/import-resolution.js +1 -1
  59. package/dist/indexer/stages/import-resolution.js.map +1 -1
  60. package/dist/indexer/stages/index.d.ts +2 -0
  61. package/dist/indexer/stages/index.d.ts.map +1 -1
  62. package/dist/indexer/stages/index.js +2 -0
  63. package/dist/indexer/stages/index.js.map +1 -1
  64. package/dist/indexer/stages/lsp-enrichment.d.ts +3 -3
  65. package/dist/indexer/stages/lsp-enrichment.d.ts.map +1 -1
  66. package/dist/indexer/stages/lsp-enrichment.js +147 -18
  67. package/dist/indexer/stages/lsp-enrichment.js.map +1 -1
  68. package/dist/indexer/stages/scip-enrichment.d.ts +43 -0
  69. package/dist/indexer/stages/scip-enrichment.d.ts.map +1 -0
  70. package/dist/indexer/stages/scip-enrichment.js +172 -0
  71. package/dist/indexer/stages/scip-enrichment.js.map +1 -0
  72. package/dist/indexer/stages/scip-source.d.ts +117 -0
  73. package/dist/indexer/stages/scip-source.d.ts.map +1 -0
  74. package/dist/indexer/stages/scip-source.js +924 -0
  75. package/dist/indexer/stages/scip-source.js.map +1 -0
  76. package/dist/indexer/stages/source-index.d.ts +3 -3
  77. package/dist/indexer/stages/source-index.d.ts.map +1 -1
  78. package/dist/indexer/stages/source-index.js +126 -46
  79. package/dist/indexer/stages/source-index.js.map +1 -1
  80. package/dist/lsp/client.d.ts.map +1 -0
  81. package/dist/{indexer/lsp → lsp}/client.js +1 -1
  82. package/dist/lsp/client.js.map +1 -0
  83. package/dist/lsp/config.d.ts.map +1 -0
  84. package/dist/{indexer/lsp → lsp}/config.js +1 -1
  85. package/dist/lsp/config.js.map +1 -0
  86. package/dist/lsp/enrichment.d.ts.map +1 -0
  87. package/dist/lsp/enrichment.js.map +1 -0
  88. package/dist/lsp/registry.d.ts.map +1 -0
  89. package/dist/{indexer/lsp → lsp}/registry.js +1 -1
  90. package/dist/lsp/registry.js.map +1 -0
  91. package/dist/{indexer → parsing}/complexity.d.ts.map +1 -1
  92. package/dist/{indexer → parsing}/complexity.js.map +1 -1
  93. package/dist/{indexer → parsing}/config-parser.d.ts.map +1 -1
  94. package/dist/{indexer → parsing}/config-parser.js.map +1 -1
  95. package/dist/{indexer → parsing}/extractors/bash.d.ts.map +1 -1
  96. package/dist/{indexer → parsing}/extractors/bash.js.map +1 -1
  97. package/dist/{indexer → parsing}/extractors/c.d.ts.map +1 -1
  98. package/dist/{indexer → parsing}/extractors/c.js +4 -4
  99. package/dist/parsing/extractors/c.js.map +1 -0
  100. package/dist/{indexer → parsing}/extractors/cpp.d.ts.map +1 -1
  101. package/dist/{indexer → parsing}/extractors/cpp.js +6 -12
  102. package/dist/parsing/extractors/cpp.js.map +1 -0
  103. package/dist/{indexer → parsing}/extractors/csharp.d.ts.map +1 -1
  104. package/dist/{indexer → parsing}/extractors/csharp.js +1 -6
  105. package/dist/{indexer → parsing}/extractors/csharp.js.map +1 -1
  106. package/dist/{indexer → parsing}/extractors/elixir.d.ts.map +1 -1
  107. package/dist/{indexer → parsing}/extractors/elixir.js +10 -15
  108. package/dist/parsing/extractors/elixir.js.map +1 -0
  109. package/dist/{indexer → parsing}/extractors/elm.d.ts.map +1 -1
  110. package/dist/{indexer → parsing}/extractors/elm.js.map +1 -1
  111. package/dist/{indexer → parsing}/extractors/go.d.ts.map +1 -1
  112. package/dist/{indexer → parsing}/extractors/go.js +0 -1
  113. package/dist/parsing/extractors/go.js.map +1 -0
  114. package/dist/{indexer → parsing}/extractors/haskell.d.ts.map +1 -1
  115. package/dist/{indexer → parsing}/extractors/haskell.js +2 -4
  116. package/dist/parsing/extractors/haskell.js.map +1 -0
  117. package/dist/{indexer → parsing}/extractors/java.d.ts.map +1 -1
  118. package/dist/{indexer → parsing}/extractors/java.js.map +1 -1
  119. package/dist/{indexer → parsing}/extractors/javascript.d.ts.map +1 -1
  120. package/dist/{indexer → parsing}/extractors/javascript.js +23 -3
  121. package/dist/parsing/extractors/javascript.js.map +1 -0
  122. package/dist/{indexer → parsing}/extractors/julia.d.ts.map +1 -1
  123. package/dist/{indexer → parsing}/extractors/julia.js.map +1 -1
  124. package/dist/{indexer → parsing}/extractors/kotlin.d.ts.map +1 -1
  125. package/dist/{indexer → parsing}/extractors/kotlin.js +4 -3
  126. package/dist/{indexer → parsing}/extractors/kotlin.js.map +1 -1
  127. package/dist/{indexer → parsing}/extractors/lua.d.ts.map +1 -1
  128. package/dist/{indexer → parsing}/extractors/lua.js +1 -13
  129. package/dist/parsing/extractors/lua.js.map +1 -0
  130. package/dist/{indexer → parsing}/extractors/objc.d.ts.map +1 -1
  131. package/dist/{indexer → parsing}/extractors/objc.js +4 -6
  132. package/dist/parsing/extractors/objc.js.map +1 -0
  133. package/dist/{indexer → parsing}/extractors/ocaml.d.ts.map +1 -1
  134. package/dist/{indexer → parsing}/extractors/ocaml.js +2 -10
  135. package/dist/parsing/extractors/ocaml.js.map +1 -0
  136. package/dist/{indexer → parsing}/extractors/php.d.ts.map +1 -1
  137. package/dist/{indexer → parsing}/extractors/php.js.map +1 -1
  138. package/dist/{indexer → parsing}/extractors/python.d.ts.map +1 -1
  139. package/dist/{indexer → parsing}/extractors/python.js.map +1 -1
  140. package/dist/{indexer → parsing}/extractors/ruby.d.ts.map +1 -1
  141. package/dist/{indexer → parsing}/extractors/ruby.js.map +1 -1
  142. package/dist/{indexer → parsing}/extractors/rust.d.ts.map +1 -1
  143. package/dist/{indexer → parsing}/extractors/rust.js +1 -1
  144. package/dist/{indexer → parsing}/extractors/rust.js.map +1 -1
  145. package/dist/{indexer → parsing}/extractors/scala.d.ts.map +1 -1
  146. package/dist/{indexer → parsing}/extractors/scala.js.map +1 -1
  147. package/dist/{indexer → parsing}/extractors/swift.d.ts.map +1 -1
  148. package/dist/{indexer → parsing}/extractors/swift.js.map +1 -1
  149. package/dist/{indexer → parsing}/extractors/types.d.ts.map +1 -1
  150. package/dist/{indexer → parsing}/extractors/types.js.map +1 -1
  151. package/dist/{indexer → parsing}/extractors/typescript.d.ts.map +1 -1
  152. package/dist/{indexer → parsing}/extractors/typescript.js +61 -19
  153. package/dist/parsing/extractors/typescript.js.map +1 -0
  154. package/dist/{indexer → parsing}/extractors/zig.d.ts.map +1 -1
  155. package/dist/{indexer → parsing}/extractors/zig.js +0 -4
  156. package/dist/parsing/extractors/zig.js.map +1 -0
  157. package/dist/{indexer → parsing}/parser.d.ts.map +1 -1
  158. package/dist/{indexer → parsing}/parser.js.map +1 -1
  159. package/dist/{indexer → resolution}/call-graph.d.ts +15 -1
  160. package/dist/resolution/call-graph.d.ts.map +1 -0
  161. package/dist/{indexer → resolution}/call-graph.js +34 -0
  162. package/dist/resolution/call-graph.js.map +1 -0
  163. package/dist/{indexer → resolution}/graph-analysis.d.ts +1 -1
  164. package/dist/resolution/graph-analysis.d.ts.map +1 -0
  165. package/dist/resolution/graph-analysis.js.map +1 -0
  166. package/dist/{indexer → resolution}/resolution-method.d.ts +3 -1
  167. package/dist/resolution/resolution-method.d.ts.map +1 -0
  168. package/dist/{indexer → resolution}/resolution-method.js +4 -0
  169. package/dist/resolution/resolution-method.js.map +1 -0
  170. package/dist/{indexer → resolution}/resolver.d.ts +7 -1
  171. package/dist/resolution/resolver.d.ts.map +1 -0
  172. package/dist/{indexer → resolution}/resolver.js +21 -0
  173. package/dist/resolution/resolver.js.map +1 -0
  174. package/dist/runtime.d.ts +6 -3
  175. package/dist/runtime.d.ts.map +1 -1
  176. package/dist/runtime.js +5 -3
  177. package/dist/runtime.js.map +1 -1
  178. package/dist/scip/config.d.ts +32 -0
  179. package/dist/scip/config.d.ts.map +1 -0
  180. package/dist/scip/config.js +96 -0
  181. package/dist/scip/config.js.map +1 -0
  182. package/dist/scip/enrichment.d.ts +56 -0
  183. package/dist/scip/enrichment.d.ts.map +1 -0
  184. package/dist/scip/enrichment.js +258 -0
  185. package/dist/scip/enrichment.js.map +1 -0
  186. package/dist/scip/index-reader.d.ts +100 -0
  187. package/dist/scip/index-reader.d.ts.map +1 -0
  188. package/dist/scip/index-reader.js +225 -0
  189. package/dist/scip/index-reader.js.map +1 -0
  190. package/dist/scip/registry.d.ts +51 -0
  191. package/dist/scip/registry.d.ts.map +1 -0
  192. package/dist/scip/registry.js +131 -0
  193. package/dist/scip/registry.js.map +1 -0
  194. package/dist/scip/scip_pb.d.ts +2118 -0
  195. package/dist/scip/scip_pb.d.ts.map +1 -0
  196. package/dist/scip/scip_pb.js +1534 -0
  197. package/dist/scip/scip_pb.js.map +1 -0
  198. package/dist/{lore-server → server}/server.d.ts +3 -4
  199. package/dist/server/server.d.ts.map +1 -0
  200. package/dist/{lore-server → server}/server.js +4 -13
  201. package/dist/server/server.js.map +1 -0
  202. package/dist/{lore-server → server}/tool-registry.d.ts +2 -2
  203. package/dist/server/tool-registry.d.ts.map +1 -0
  204. package/dist/{lore-server → server}/tool-registry.js +1 -26
  205. package/dist/server/tool-registry.js.map +1 -0
  206. package/dist/{lore-server → server}/tools/blame.d.ts +1 -1
  207. package/dist/server/tools/blame.d.ts.map +1 -0
  208. package/dist/{lore-server → server}/tools/blame.js +1 -1
  209. package/dist/server/tools/blame.js.map +1 -0
  210. package/dist/{lore-server → server}/tools/docs.d.ts +3 -3
  211. package/dist/server/tools/docs.d.ts.map +1 -0
  212. package/dist/{lore-server → server}/tools/docs.js +1 -1
  213. package/dist/server/tools/docs.js.map +1 -0
  214. package/dist/{lore-server → server}/tools/graph.d.ts +32 -6
  215. package/dist/server/tools/graph.d.ts.map +1 -0
  216. package/dist/{lore-server → server}/tools/graph.js +115 -90
  217. package/dist/server/tools/graph.js.map +1 -0
  218. package/dist/{lore-server → server}/tools/history.d.ts +3 -3
  219. package/dist/server/tools/history.d.ts.map +1 -0
  220. package/dist/{lore-server → server}/tools/history.js +1 -1
  221. package/dist/server/tools/history.js.map +1 -0
  222. package/dist/{lore-server → server}/tools/lookup.d.ts +2 -2
  223. package/dist/server/tools/lookup.d.ts.map +1 -0
  224. package/dist/{lore-server → server}/tools/lookup.js +1 -1
  225. package/dist/server/tools/lookup.js.map +1 -0
  226. package/dist/server/tools/metrics.d.ts +48 -0
  227. package/dist/server/tools/metrics.d.ts.map +1 -0
  228. package/dist/server/tools/metrics.js +44 -0
  229. package/dist/server/tools/metrics.js.map +1 -0
  230. package/dist/{lore-server → server}/tools/notes.d.ts +1 -1
  231. package/dist/server/tools/notes.d.ts.map +1 -0
  232. package/dist/server/tools/notes.js.map +1 -0
  233. package/dist/{lore-server → server}/tools/routes.d.ts +2 -2
  234. package/dist/server/tools/routes.d.ts.map +1 -0
  235. package/dist/{lore-server → server}/tools/routes.js +1 -1
  236. package/dist/server/tools/routes.js.map +1 -0
  237. package/dist/{lore-server → server}/tools/search.d.ts +2 -2
  238. package/dist/server/tools/search.d.ts.map +1 -0
  239. package/dist/{lore-server → server}/tools/search.js +1 -1
  240. package/dist/server/tools/search.js.map +1 -0
  241. package/dist/{lore-server → server}/tools/snippet.d.ts +1 -1
  242. package/dist/server/tools/snippet.d.ts.map +1 -0
  243. package/dist/{lore-server → server}/tools/snippet.js +1 -1
  244. package/dist/server/tools/snippet.js.map +1 -0
  245. package/dist/{lore-server → server}/tools/test-map.d.ts +1 -1
  246. package/dist/server/tools/test-map.d.ts.map +1 -0
  247. package/dist/{lore-server → server}/tools/test-map.js +1 -1
  248. package/dist/server/tools/test-map.js.map +1 -0
  249. package/dist/{indexer → testing}/coverage.d.ts +1 -1
  250. package/dist/testing/coverage.d.ts.map +1 -0
  251. package/dist/{indexer → testing}/coverage.js.map +1 -1
  252. package/dist/{indexer → testing}/test-mapper.d.ts +1 -1
  253. package/dist/testing/test-mapper.d.ts.map +1 -0
  254. package/dist/{indexer → testing}/test-mapper.js.map +1 -1
  255. package/package.json +12 -9
  256. package/dist/indexer/call-graph.d.ts.map +0 -1
  257. package/dist/indexer/call-graph.js.map +0 -1
  258. package/dist/indexer/coverage.d.ts.map +0 -1
  259. package/dist/indexer/db.d.ts.map +0 -1
  260. package/dist/indexer/db.js.map +0 -1
  261. package/dist/indexer/docs.d.ts.map +0 -1
  262. package/dist/indexer/docs.js.map +0 -1
  263. package/dist/indexer/embedder.d.ts.map +0 -1
  264. package/dist/indexer/embedder.js.map +0 -1
  265. package/dist/indexer/extractors/c.js.map +0 -1
  266. package/dist/indexer/extractors/cpp.js.map +0 -1
  267. package/dist/indexer/extractors/elixir.js.map +0 -1
  268. package/dist/indexer/extractors/go.js.map +0 -1
  269. package/dist/indexer/extractors/haskell.js.map +0 -1
  270. package/dist/indexer/extractors/javascript.js.map +0 -1
  271. package/dist/indexer/extractors/lua.js.map +0 -1
  272. package/dist/indexer/extractors/objc.js.map +0 -1
  273. package/dist/indexer/extractors/ocaml.js.map +0 -1
  274. package/dist/indexer/extractors/typescript.js.map +0 -1
  275. package/dist/indexer/extractors/zig.js.map +0 -1
  276. package/dist/indexer/git-history.d.ts.map +0 -1
  277. package/dist/indexer/git-history.js.map +0 -1
  278. package/dist/indexer/git-hooks.d.ts.map +0 -1
  279. package/dist/indexer/git-hooks.js.map +0 -1
  280. package/dist/indexer/graph-analysis.d.ts.map +0 -1
  281. package/dist/indexer/graph-analysis.js.map +0 -1
  282. package/dist/indexer/lsp/client.d.ts.map +0 -1
  283. package/dist/indexer/lsp/client.js.map +0 -1
  284. package/dist/indexer/lsp/config.d.ts.map +0 -1
  285. package/dist/indexer/lsp/config.js.map +0 -1
  286. package/dist/indexer/lsp/enrichment.d.ts.map +0 -1
  287. package/dist/indexer/lsp/enrichment.js.map +0 -1
  288. package/dist/indexer/lsp/registry.d.ts.map +0 -1
  289. package/dist/indexer/lsp/registry.js.map +0 -1
  290. package/dist/indexer/poller.d.ts.map +0 -1
  291. package/dist/indexer/poller.js.map +0 -1
  292. package/dist/indexer/resolution-method.d.ts.map +0 -1
  293. package/dist/indexer/resolution-method.js.map +0 -1
  294. package/dist/indexer/resolver.d.ts.map +0 -1
  295. package/dist/indexer/resolver.js.map +0 -1
  296. package/dist/indexer/test-mapper.d.ts.map +0 -1
  297. package/dist/indexer/walker.d.ts.map +0 -1
  298. package/dist/indexer/walker.js.map +0 -1
  299. package/dist/indexer/watcher.d.ts.map +0 -1
  300. package/dist/indexer/watcher.js.map +0 -1
  301. package/dist/lore-server/db.d.ts.map +0 -1
  302. package/dist/lore-server/db.js.map +0 -1
  303. package/dist/lore-server/server.d.ts.map +0 -1
  304. package/dist/lore-server/server.js.map +0 -1
  305. package/dist/lore-server/tool-registry.d.ts.map +0 -1
  306. package/dist/lore-server/tool-registry.js.map +0 -1
  307. package/dist/lore-server/tools/annotations.d.ts +0 -40
  308. package/dist/lore-server/tools/annotations.d.ts.map +0 -1
  309. package/dist/lore-server/tools/annotations.js +0 -35
  310. package/dist/lore-server/tools/annotations.js.map +0 -1
  311. package/dist/lore-server/tools/architecture.d.ts +0 -67
  312. package/dist/lore-server/tools/architecture.d.ts.map +0 -1
  313. package/dist/lore-server/tools/architecture.js +0 -209
  314. package/dist/lore-server/tools/architecture.js.map +0 -1
  315. package/dist/lore-server/tools/blame.d.ts.map +0 -1
  316. package/dist/lore-server/tools/blame.js.map +0 -1
  317. package/dist/lore-server/tools/coverage.d.ts +0 -67
  318. package/dist/lore-server/tools/coverage.d.ts.map +0 -1
  319. package/dist/lore-server/tools/coverage.js +0 -74
  320. package/dist/lore-server/tools/coverage.js.map +0 -1
  321. package/dist/lore-server/tools/docs.d.ts.map +0 -1
  322. package/dist/lore-server/tools/docs.js.map +0 -1
  323. package/dist/lore-server/tools/graph-analysis.d.ts +0 -64
  324. package/dist/lore-server/tools/graph-analysis.d.ts.map +0 -1
  325. package/dist/lore-server/tools/graph-analysis.js +0 -82
  326. package/dist/lore-server/tools/graph-analysis.js.map +0 -1
  327. package/dist/lore-server/tools/graph.d.ts.map +0 -1
  328. package/dist/lore-server/tools/graph.js.map +0 -1
  329. package/dist/lore-server/tools/history.d.ts.map +0 -1
  330. package/dist/lore-server/tools/history.js.map +0 -1
  331. package/dist/lore-server/tools/lookup.d.ts.map +0 -1
  332. package/dist/lore-server/tools/lookup.js.map +0 -1
  333. package/dist/lore-server/tools/metrics.d.ts +0 -73
  334. package/dist/lore-server/tools/metrics.d.ts.map +0 -1
  335. package/dist/lore-server/tools/metrics.js +0 -79
  336. package/dist/lore-server/tools/metrics.js.map +0 -1
  337. package/dist/lore-server/tools/notes.d.ts.map +0 -1
  338. package/dist/lore-server/tools/notes.js.map +0 -1
  339. package/dist/lore-server/tools/routes.d.ts.map +0 -1
  340. package/dist/lore-server/tools/routes.js.map +0 -1
  341. package/dist/lore-server/tools/search.d.ts.map +0 -1
  342. package/dist/lore-server/tools/search.js.map +0 -1
  343. package/dist/lore-server/tools/snippet.d.ts.map +0 -1
  344. package/dist/lore-server/tools/snippet.js.map +0 -1
  345. package/dist/lore-server/tools/test-map.d.ts.map +0 -1
  346. package/dist/lore-server/tools/test-map.js.map +0 -1
  347. package/dist/lore-server/tools/writeback.d.ts +0 -49
  348. package/dist/lore-server/tools/writeback.d.ts.map +0 -1
  349. package/dist/lore-server/tools/writeback.js +0 -68
  350. package/dist/lore-server/tools/writeback.js.map +0 -1
  351. /package/dist/{indexer → docs}/docs.d.ts +0 -0
  352. /package/dist/{indexer → docs}/docs.js +0 -0
  353. /package/dist/{indexer/lsp → lsp}/client.d.ts +0 -0
  354. /package/dist/{indexer/lsp → lsp}/config.d.ts +0 -0
  355. /package/dist/{indexer/lsp → lsp}/enrichment.d.ts +0 -0
  356. /package/dist/{indexer/lsp → lsp}/enrichment.js +0 -0
  357. /package/dist/{indexer/lsp → lsp}/registry.d.ts +0 -0
  358. /package/dist/{indexer → parsing}/complexity.d.ts +0 -0
  359. /package/dist/{indexer → parsing}/complexity.js +0 -0
  360. /package/dist/{indexer → parsing}/config-parser.d.ts +0 -0
  361. /package/dist/{indexer → parsing}/config-parser.js +0 -0
  362. /package/dist/{indexer → parsing}/extractors/bash.d.ts +0 -0
  363. /package/dist/{indexer → parsing}/extractors/bash.js +0 -0
  364. /package/dist/{indexer → parsing}/extractors/c.d.ts +0 -0
  365. /package/dist/{indexer → parsing}/extractors/cpp.d.ts +0 -0
  366. /package/dist/{indexer → parsing}/extractors/csharp.d.ts +0 -0
  367. /package/dist/{indexer → parsing}/extractors/elixir.d.ts +0 -0
  368. /package/dist/{indexer → parsing}/extractors/elm.d.ts +0 -0
  369. /package/dist/{indexer → parsing}/extractors/elm.js +0 -0
  370. /package/dist/{indexer → parsing}/extractors/go.d.ts +0 -0
  371. /package/dist/{indexer → parsing}/extractors/haskell.d.ts +0 -0
  372. /package/dist/{indexer → parsing}/extractors/java.d.ts +0 -0
  373. /package/dist/{indexer → parsing}/extractors/java.js +0 -0
  374. /package/dist/{indexer → parsing}/extractors/javascript.d.ts +0 -0
  375. /package/dist/{indexer → parsing}/extractors/julia.d.ts +0 -0
  376. /package/dist/{indexer → parsing}/extractors/julia.js +0 -0
  377. /package/dist/{indexer → parsing}/extractors/kotlin.d.ts +0 -0
  378. /package/dist/{indexer → parsing}/extractors/lua.d.ts +0 -0
  379. /package/dist/{indexer → parsing}/extractors/objc.d.ts +0 -0
  380. /package/dist/{indexer → parsing}/extractors/ocaml.d.ts +0 -0
  381. /package/dist/{indexer → parsing}/extractors/php.d.ts +0 -0
  382. /package/dist/{indexer → parsing}/extractors/php.js +0 -0
  383. /package/dist/{indexer → parsing}/extractors/python.d.ts +0 -0
  384. /package/dist/{indexer → parsing}/extractors/python.js +0 -0
  385. /package/dist/{indexer → parsing}/extractors/ruby.d.ts +0 -0
  386. /package/dist/{indexer → parsing}/extractors/ruby.js +0 -0
  387. /package/dist/{indexer → parsing}/extractors/rust.d.ts +0 -0
  388. /package/dist/{indexer → parsing}/extractors/scala.d.ts +0 -0
  389. /package/dist/{indexer → parsing}/extractors/scala.js +0 -0
  390. /package/dist/{indexer → parsing}/extractors/swift.d.ts +0 -0
  391. /package/dist/{indexer → parsing}/extractors/swift.js +0 -0
  392. /package/dist/{indexer → parsing}/extractors/types.d.ts +0 -0
  393. /package/dist/{indexer → parsing}/extractors/types.js +0 -0
  394. /package/dist/{indexer → parsing}/extractors/typescript.d.ts +0 -0
  395. /package/dist/{indexer → parsing}/extractors/zig.d.ts +0 -0
  396. /package/dist/{indexer → parsing}/parser.d.ts +0 -0
  397. /package/dist/{indexer → parsing}/parser.js +0 -0
  398. /package/dist/{indexer → resolution}/graph-analysis.js +0 -0
  399. /package/dist/{lore-server → server}/tools/notes.js +0 -0
  400. /package/dist/{indexer → testing}/coverage.js +0 -0
  401. /package/dist/{indexer → testing}/test-mapper.js +0 -0
@@ -0,0 +1,2118 @@
1
+ import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
2
+ import type { Message } from "@bufbuild/protobuf";
3
+ /**
4
+ * Describes the file scip.proto.
5
+ */
6
+ export declare const file_scip: GenFile;
7
+ /**
8
+ * Index represents a complete SCIP index for a workspace this is rooted at a
9
+ * single directory. An Index message payload can have a large memory footprint
10
+ * and it's therefore recommended to emit and consume an Index payload one field
11
+ * value at a time. To permit streaming consumption of an Index payload, the
12
+ * `metadata` field must appear at the start of the stream and must only appear
13
+ * once in the stream. Other field values may appear in any order.
14
+ *
15
+ * @generated from message scip.Index
16
+ */
17
+ export type Index = Message<"scip.Index"> & {
18
+ /**
19
+ * Metadata about this index.
20
+ *
21
+ * @generated from field: scip.Metadata metadata = 1;
22
+ */
23
+ metadata?: Metadata;
24
+ /**
25
+ * Documents that belong to this index.
26
+ *
27
+ * @generated from field: repeated scip.Document documents = 2;
28
+ */
29
+ documents: Document[];
30
+ /**
31
+ * (optional) Symbols that are referenced from this index but are defined in
32
+ * an external package (a separate `Index` message). Leave this field empty
33
+ * if you assume the external package will get indexed separately. If the
34
+ * external package won't get indexed for some reason then you can use this
35
+ * field to provide hover documentation for those external symbols.
36
+ *
37
+ * IMPORTANT: When adding a new field to `Index` here, add a matching
38
+ * function in `IndexVisitor` and update `ParseStreaming`.
39
+ *
40
+ * @generated from field: repeated scip.SymbolInformation external_symbols = 3;
41
+ */
42
+ externalSymbols: SymbolInformation[];
43
+ };
44
+ /**
45
+ * Describes the message scip.Index.
46
+ * Use `create(IndexSchema)` to create a new message.
47
+ */
48
+ export declare const IndexSchema: GenMessage<Index>;
49
+ /**
50
+ * @generated from message scip.Metadata
51
+ */
52
+ export type Metadata = Message<"scip.Metadata"> & {
53
+ /**
54
+ * Which version of this protocol was used to generate this index?
55
+ *
56
+ * @generated from field: scip.ProtocolVersion version = 1;
57
+ */
58
+ version: ProtocolVersion;
59
+ /**
60
+ * Information about the tool that produced this index.
61
+ *
62
+ * @generated from field: scip.ToolInfo tool_info = 2;
63
+ */
64
+ toolInfo?: ToolInfo;
65
+ /**
66
+ * URI-encoded absolute path to the root directory of this index. All
67
+ * documents in this index must appear in a subdirectory of this root
68
+ * directory.
69
+ *
70
+ * @generated from field: string project_root = 3;
71
+ */
72
+ projectRoot: string;
73
+ /**
74
+ * Text encoding of the source files on disk that are referenced from
75
+ * `Document.relative_path`. This value is unrelated to the `Document.text`
76
+ * field, which is a Protobuf string and hence must be UTF-8 encoded.
77
+ *
78
+ * @generated from field: scip.TextEncoding text_document_encoding = 4;
79
+ */
80
+ textDocumentEncoding: TextEncoding;
81
+ };
82
+ /**
83
+ * Describes the message scip.Metadata.
84
+ * Use `create(MetadataSchema)` to create a new message.
85
+ */
86
+ export declare const MetadataSchema: GenMessage<Metadata>;
87
+ /**
88
+ * @generated from message scip.ToolInfo
89
+ */
90
+ export type ToolInfo = Message<"scip.ToolInfo"> & {
91
+ /**
92
+ * Name of the indexer that produced this index.
93
+ *
94
+ * @generated from field: string name = 1;
95
+ */
96
+ name: string;
97
+ /**
98
+ * Version of the indexer that produced this index.
99
+ *
100
+ * @generated from field: string version = 2;
101
+ */
102
+ version: string;
103
+ /**
104
+ * Command-line arguments that were used to invoke this indexer.
105
+ *
106
+ * @generated from field: repeated string arguments = 3;
107
+ */
108
+ arguments: string[];
109
+ };
110
+ /**
111
+ * Describes the message scip.ToolInfo.
112
+ * Use `create(ToolInfoSchema)` to create a new message.
113
+ */
114
+ export declare const ToolInfoSchema: GenMessage<ToolInfo>;
115
+ /**
116
+ * Document defines the metadata about a source file on disk.
117
+ *
118
+ * @generated from message scip.Document
119
+ */
120
+ export type Document = Message<"scip.Document"> & {
121
+ /**
122
+ * The string ID for the programming language this file is written in.
123
+ * The `Language` enum contains the names of most common programming languages.
124
+ * This field is typed as a string to permit any programming language, including
125
+ * ones that are not specified by the `Language` enum.
126
+ *
127
+ * @generated from field: string language = 4;
128
+ */
129
+ language: string;
130
+ /**
131
+ * (Required) Unique path to the text document.
132
+ *
133
+ * 1. The path must be relative to the directory supplied in the associated
134
+ * `Metadata.project_root`.
135
+ * 2. The path must not begin with a leading '/'.
136
+ * 3. The path must point to a regular file, not a symbolic link.
137
+ * 4. The path must use '/' as the separator, including on Windows.
138
+ * 5. The path must be canonical; it cannot include empty components ('//'),
139
+ * or '.' or '..'.
140
+ *
141
+ * @generated from field: string relative_path = 1;
142
+ */
143
+ relativePath: string;
144
+ /**
145
+ * Occurrences that appear in this file.
146
+ *
147
+ * @generated from field: repeated scip.Occurrence occurrences = 2;
148
+ */
149
+ occurrences: Occurrence[];
150
+ /**
151
+ * Symbols that are "defined" within this document.
152
+ *
153
+ * This should include symbols which technically do not have any definition,
154
+ * but have a reference and are defined by some other symbol (see
155
+ * Relationship.is_definition).
156
+ *
157
+ * @generated from field: repeated scip.SymbolInformation symbols = 3;
158
+ */
159
+ symbols: SymbolInformation[];
160
+ /**
161
+ * (optional) Text contents of the this document. Indexers are not expected to
162
+ * include the text by default. It's preferrable that clients read the text
163
+ * contents from the file system by resolving the absolute path from joining
164
+ * `Index.metadata.project_root` and `Document.relative_path`. This field was
165
+ * introduced to support `SymbolInformation.signature_documentation`, but it
166
+ * can be used for other purposes as well, for example testing or when working
167
+ * with virtual/in-memory documents.
168
+ *
169
+ * @generated from field: string text = 5;
170
+ */
171
+ text: string;
172
+ /**
173
+ * Specifies the encoding used for source ranges in this Document.
174
+ *
175
+ * Usually, this will match the type used to index the string type
176
+ * in the indexer's implementation language in O(1) time.
177
+ * - For an indexer implemented in JVM/.NET language or JavaScript/TypeScript,
178
+ * use UTF16CodeUnitOffsetFromLineStart.
179
+ * - For an indexer implemented in Python,
180
+ * use UTF32CodeUnitOffsetFromLineStart.
181
+ * - For an indexer implemented in Go, Rust or C++,
182
+ * use UTF8ByteOffsetFromLineStart.
183
+ *
184
+ * @generated from field: scip.PositionEncoding position_encoding = 6;
185
+ */
186
+ positionEncoding: PositionEncoding;
187
+ };
188
+ /**
189
+ * Describes the message scip.Document.
190
+ * Use `create(DocumentSchema)` to create a new message.
191
+ */
192
+ export declare const DocumentSchema: GenMessage<Document>;
193
+ /**
194
+ * Symbol is similar to a URI, it identifies a class, method, or a local
195
+ * variable. `SymbolInformation` contains rich metadata about symbols such as
196
+ * the docstring.
197
+ *
198
+ * Symbol has a standardized string representation, which can be used
199
+ * interchangeably with `Symbol`. The syntax for Symbol is the following:
200
+ * ```
201
+ * # (<x>)+ stands for one or more repetitions of <x>
202
+ * # (<x>)? stands for zero or one occurrence of <x>
203
+ * <symbol> ::= <scheme> ' ' <package> ' ' (<descriptor>)+ | 'local ' <local-id>
204
+ * <package> ::= <manager> ' ' <package-name> ' ' <version>
205
+ * <scheme> ::= any UTF-8, escape spaces with double space. Must not be empty nor start with 'local'
206
+ * <manager> ::= any UTF-8, escape spaces with double space. Use the placeholder '.' to indicate an empty value
207
+ * <package-name> ::= same as above
208
+ * <version> ::= same as above
209
+ * <descriptor> ::= <namespace> | <type> | <term> | <method> | <type-parameter> | <parameter> | <meta> | <macro>
210
+ * <namespace> ::= <name> '/'
211
+ * <type> ::= <name> '#'
212
+ * <term> ::= <name> '.'
213
+ * <meta> ::= <name> ':'
214
+ * <macro> ::= <name> '!'
215
+ * <method> ::= <name> '(' (<method-disambiguator>)? ').'
216
+ * <type-parameter> ::= '[' <name> ']'
217
+ * <parameter> ::= '(' <name> ')'
218
+ * <name> ::= <identifier>
219
+ * <method-disambiguator> ::= <simple-identifier>
220
+ * <identifier> ::= <simple-identifier> | <escaped-identifier>
221
+ * <simple-identifier> ::= (<identifier-character>)+
222
+ * <identifier-character> ::= '_' | '+' | '-' | '$' | ASCII letter or digit
223
+ * <escaped-identifier> ::= '`' (<escaped-character>)+ '`', must contain at least one non-<identifier-character>
224
+ * <escaped-characters> ::= any UTF-8, escape backticks with double backtick.
225
+ * <local-id> ::= <simple-identifier>
226
+ * ```
227
+ *
228
+ * The list of descriptors for a symbol should together form a fully
229
+ * qualified name for the symbol. That is, it should serve as a unique
230
+ * identifier across the package. Typically, it will include one descriptor
231
+ * for every node in the AST (along the ancestry path) between the root of
232
+ * the file and the node corresponding to the symbol.
233
+ *
234
+ * Local symbols MUST only be used for entities which are local to a Document,
235
+ * and cannot be accessed from outside the Document.
236
+ *
237
+ * @generated from message scip.Symbol
238
+ */
239
+ export type Symbol = Message<"scip.Symbol"> & {
240
+ /**
241
+ * @generated from field: string scheme = 1;
242
+ */
243
+ scheme: string;
244
+ /**
245
+ * @generated from field: scip.Package package = 2;
246
+ */
247
+ package?: Package;
248
+ /**
249
+ * @generated from field: repeated scip.Descriptor descriptors = 3;
250
+ */
251
+ descriptors: Descriptor[];
252
+ };
253
+ /**
254
+ * Describes the message scip.Symbol.
255
+ * Use `create(SymbolSchema)` to create a new message.
256
+ */
257
+ export declare const SymbolSchema: GenMessage<Symbol>;
258
+ /**
259
+ * Unit of packaging and distribution.
260
+ *
261
+ * NOTE: This corresponds to a module in Go and JVM languages.
262
+ *
263
+ * @generated from message scip.Package
264
+ */
265
+ export type Package = Message<"scip.Package"> & {
266
+ /**
267
+ * @generated from field: string manager = 1;
268
+ */
269
+ manager: string;
270
+ /**
271
+ * @generated from field: string name = 2;
272
+ */
273
+ name: string;
274
+ /**
275
+ * @generated from field: string version = 3;
276
+ */
277
+ version: string;
278
+ };
279
+ /**
280
+ * Describes the message scip.Package.
281
+ * Use `create(PackageSchema)` to create a new message.
282
+ */
283
+ export declare const PackageSchema: GenMessage<Package>;
284
+ /**
285
+ * @generated from message scip.Descriptor
286
+ */
287
+ export type Descriptor = Message<"scip.Descriptor"> & {
288
+ /**
289
+ * @generated from field: string name = 1;
290
+ */
291
+ name: string;
292
+ /**
293
+ * @generated from field: string disambiguator = 2;
294
+ */
295
+ disambiguator: string;
296
+ /**
297
+ * NOTE: If you add new fields here, make sure to update the prepareSlot()
298
+ * function responsible for parsing symbols.
299
+ *
300
+ * @generated from field: scip.Descriptor.Suffix suffix = 3;
301
+ */
302
+ suffix: Descriptor_Suffix;
303
+ };
304
+ /**
305
+ * Describes the message scip.Descriptor.
306
+ * Use `create(DescriptorSchema)` to create a new message.
307
+ */
308
+ export declare const DescriptorSchema: GenMessage<Descriptor>;
309
+ /**
310
+ * @generated from enum scip.Descriptor.Suffix
311
+ */
312
+ export declare enum Descriptor_Suffix {
313
+ /**
314
+ * @generated from enum value: UnspecifiedSuffix = 0;
315
+ */
316
+ UnspecifiedSuffix = 0,
317
+ /**
318
+ * Unit of code abstraction and/or namespacing.
319
+ *
320
+ * NOTE: This corresponds to a package in Go and JVM languages.
321
+ *
322
+ * @generated from enum value: Namespace = 1;
323
+ */
324
+ Namespace = 1,
325
+ /**
326
+ * Use Namespace instead.
327
+ *
328
+ * @generated from enum value: Package = 1 [deprecated = true];
329
+ * @deprecated
330
+ */
331
+ Package = 1,
332
+ /**
333
+ * @generated from enum value: Type = 2;
334
+ */
335
+ Type = 2,
336
+ /**
337
+ * @generated from enum value: Term = 3;
338
+ */
339
+ Term = 3,
340
+ /**
341
+ * @generated from enum value: Method = 4;
342
+ */
343
+ Method = 4,
344
+ /**
345
+ * @generated from enum value: TypeParameter = 5;
346
+ */
347
+ TypeParameter = 5,
348
+ /**
349
+ * @generated from enum value: Parameter = 6;
350
+ */
351
+ Parameter = 6,
352
+ /**
353
+ * Can be used for any purpose.
354
+ *
355
+ * @generated from enum value: Meta = 7;
356
+ */
357
+ Meta = 7,
358
+ /**
359
+ * @generated from enum value: Local = 8;
360
+ */
361
+ Local = 8,
362
+ /**
363
+ * @generated from enum value: Macro = 9;
364
+ */
365
+ Macro = 9
366
+ }
367
+ /**
368
+ * Describes the enum scip.Descriptor.Suffix.
369
+ */
370
+ export declare const Descriptor_SuffixSchema: GenEnum<Descriptor_Suffix>;
371
+ /**
372
+ * SymbolInformation defines metadata about a symbol, such as the symbol's
373
+ * docstring or what package it's defined it.
374
+ *
375
+ * @generated from message scip.SymbolInformation
376
+ */
377
+ export type SymbolInformation = Message<"scip.SymbolInformation"> & {
378
+ /**
379
+ * Identifier of this symbol, which can be referenced from `Occurence.symbol`.
380
+ * The string must be formatted according to the grammar in `Symbol`.
381
+ *
382
+ * @generated from field: string symbol = 1;
383
+ */
384
+ symbol: string;
385
+ /**
386
+ * (optional, but strongly recommended) The markdown-formatted documentation
387
+ * for this symbol. Use `SymbolInformation.signature_documentation` to
388
+ * document the method/class/type signature of this symbol.
389
+ * Due to historical reasons, indexers may include signature documentation in
390
+ * this field by rendering markdown code blocks. New indexers should only
391
+ * include non-code documentation in this field, for example docstrings.
392
+ *
393
+ * @generated from field: repeated string documentation = 3;
394
+ */
395
+ documentation: string[];
396
+ /**
397
+ * (optional) Relationships to other symbols (e.g., implements, type definition).
398
+ *
399
+ * @generated from field: repeated scip.Relationship relationships = 4;
400
+ */
401
+ relationships: Relationship[];
402
+ /**
403
+ * The kind of this symbol. Use this field instead of
404
+ * `SymbolDescriptor.Suffix` to determine whether something is, for example, a
405
+ * class or a method.
406
+ *
407
+ * @generated from field: scip.SymbolInformation.Kind kind = 5;
408
+ */
409
+ kind: SymbolInformation_Kind;
410
+ /**
411
+ * (optional) The name of this symbol as it should be displayed to the user.
412
+ * For example, the symbol "com/example/MyClass#myMethod(+1)." should have the
413
+ * display name "myMethod". The `symbol` field is not a reliable source of
414
+ * the display name for several reasons:
415
+ *
416
+ * - Local symbols don't encode the name.
417
+ * - Some languages have case-insensitive names, so the symbol is all-lowercase.
418
+ * - The symbol may encode names with special characters that should not be
419
+ * displayed to the user.
420
+ *
421
+ * @generated from field: string display_name = 6;
422
+ */
423
+ displayName: string;
424
+ /**
425
+ * (optional) The signature of this symbol as it's displayed in API
426
+ * documentation or in hover tooltips. For example, a Java method that adds
427
+ * two numbers this would have `Document.language = "java"` and `Document.text
428
+ * = "void add(int a, int b)". The `language` and `text` fields are required
429
+ * while other fields such as `Documentation.occurrences` can be optionally
430
+ * included to support hyperlinking referenced symbols in the signature.
431
+ *
432
+ * @generated from field: scip.Document signature_documentation = 7;
433
+ */
434
+ signatureDocumentation?: Document;
435
+ /**
436
+ * (optional) The enclosing symbol if this is a local symbol. For non-local
437
+ * symbols, the enclosing symbol should be parsed from the `symbol` field
438
+ * using the `Descriptor` grammar.
439
+ *
440
+ * The primary use-case for this field is to allow local symbol to be displayed
441
+ * in a symbol hierarchy for API documentation. It's OK to leave this field
442
+ * empty for local variables since local variables usually don't belong in API
443
+ * documentation. However, in the situation that you wish to include a local
444
+ * symbol in the hierarchy, then you can use `enclosing_symbol` to locate the
445
+ * "parent" or "owner" of this local symbol. For example, a Java indexer may
446
+ * choose to use local symbols for private class fields while providing an
447
+ * `enclosing_symbol` to reference the enclosing class to allow the field to
448
+ * be part of the class documentation hierarchy. From the perspective of an
449
+ * author of an indexer, the decision to use a local symbol or global symbol
450
+ * should exclusively be determined whether the local symbol is accessible
451
+ * outside the document, not by the capability to find the enclosing
452
+ * symbol.
453
+ *
454
+ * @generated from field: string enclosing_symbol = 8;
455
+ */
456
+ enclosingSymbol: string;
457
+ };
458
+ /**
459
+ * Describes the message scip.SymbolInformation.
460
+ * Use `create(SymbolInformationSchema)` to create a new message.
461
+ */
462
+ export declare const SymbolInformationSchema: GenMessage<SymbolInformation>;
463
+ /**
464
+ * (optional) Kind represents the fine-grained category of a symbol, suitable for presenting
465
+ * information about the symbol's meaning in the language.
466
+ *
467
+ * For example:
468
+ * - A Java method would have the kind `Method` while a Go function would
469
+ * have the kind `Function`, even if the symbols for these use the same
470
+ * syntax for the descriptor `SymbolDescriptor.Suffix.Method`.
471
+ * - A Go struct has the symbol kind `Struct` while a Java class has
472
+ * the symbol kind `Class` even if they both have the same descriptor:
473
+ * `SymbolDescriptor.Suffix.Type`.
474
+ *
475
+ * Since Kind is more fine-grained than Suffix:
476
+ * - If two symbols have the same Kind, they should share the same Suffix.
477
+ * - If two symbols have different Suffixes, they should have different Kinds.
478
+ *
479
+ * @generated from enum scip.SymbolInformation.Kind
480
+ */
481
+ export declare enum SymbolInformation_Kind {
482
+ /**
483
+ * @generated from enum value: UnspecifiedKind = 0;
484
+ */
485
+ UnspecifiedKind = 0,
486
+ /**
487
+ * A method which may or may not have a body. For Java, Kotlin etc.
488
+ *
489
+ * @generated from enum value: AbstractMethod = 66;
490
+ */
491
+ AbstractMethod = 66,
492
+ /**
493
+ * For Ruby's attr_accessor
494
+ *
495
+ * @generated from enum value: Accessor = 72;
496
+ */
497
+ Accessor = 72,
498
+ /**
499
+ * @generated from enum value: Array = 1;
500
+ */
501
+ Array = 1,
502
+ /**
503
+ * For Alloy
504
+ *
505
+ * @generated from enum value: Assertion = 2;
506
+ */
507
+ Assertion = 2,
508
+ /**
509
+ * @generated from enum value: AssociatedType = 3;
510
+ */
511
+ AssociatedType = 3,
512
+ /**
513
+ * For C++
514
+ *
515
+ * @generated from enum value: Attribute = 4;
516
+ */
517
+ Attribute = 4,
518
+ /**
519
+ * For Lean
520
+ *
521
+ * @generated from enum value: Axiom = 5;
522
+ */
523
+ Axiom = 5,
524
+ /**
525
+ * @generated from enum value: Boolean = 6;
526
+ */
527
+ Boolean = 6,
528
+ /**
529
+ * @generated from enum value: Class = 7;
530
+ */
531
+ Class = 7,
532
+ /**
533
+ * For C++
534
+ *
535
+ * @generated from enum value: Concept = 86;
536
+ */
537
+ Concept = 86,
538
+ /**
539
+ * @generated from enum value: Constant = 8;
540
+ */
541
+ Constant = 8,
542
+ /**
543
+ * @generated from enum value: Constructor = 9;
544
+ */
545
+ Constructor = 9,
546
+ /**
547
+ * For Solidity
548
+ *
549
+ * @generated from enum value: Contract = 62;
550
+ */
551
+ Contract = 62,
552
+ /**
553
+ * For Haskell
554
+ *
555
+ * @generated from enum value: DataFamily = 10;
556
+ */
557
+ DataFamily = 10,
558
+ /**
559
+ * For C# and F#
560
+ *
561
+ * @generated from enum value: Delegate = 73;
562
+ */
563
+ Delegate = 73,
564
+ /**
565
+ * @generated from enum value: Enum = 11;
566
+ */
567
+ Enum = 11,
568
+ /**
569
+ * @generated from enum value: EnumMember = 12;
570
+ */
571
+ EnumMember = 12,
572
+ /**
573
+ * @generated from enum value: Error = 63;
574
+ */
575
+ Error = 63,
576
+ /**
577
+ * @generated from enum value: Event = 13;
578
+ */
579
+ Event = 13,
580
+ /**
581
+ * For Dart
582
+ *
583
+ * @generated from enum value: Extension = 84;
584
+ */
585
+ Extension = 84,
586
+ /**
587
+ * For Alloy
588
+ *
589
+ * @generated from enum value: Fact = 14;
590
+ */
591
+ Fact = 14,
592
+ /**
593
+ * @generated from enum value: Field = 15;
594
+ */
595
+ Field = 15,
596
+ /**
597
+ * @generated from enum value: File = 16;
598
+ */
599
+ File = 16,
600
+ /**
601
+ * @generated from enum value: Function = 17;
602
+ */
603
+ Function = 17,
604
+ /**
605
+ * For 'get' in Swift, 'attr_reader' in Ruby
606
+ *
607
+ * @generated from enum value: Getter = 18;
608
+ */
609
+ Getter = 18,
610
+ /**
611
+ * For Raku
612
+ *
613
+ * @generated from enum value: Grammar = 19;
614
+ */
615
+ Grammar = 19,
616
+ /**
617
+ * For Purescript and Lean
618
+ *
619
+ * @generated from enum value: Instance = 20;
620
+ */
621
+ Instance = 20,
622
+ /**
623
+ * @generated from enum value: Interface = 21;
624
+ */
625
+ Interface = 21,
626
+ /**
627
+ * @generated from enum value: Key = 22;
628
+ */
629
+ Key = 22,
630
+ /**
631
+ * For Racket
632
+ *
633
+ * @generated from enum value: Lang = 23;
634
+ */
635
+ Lang = 23,
636
+ /**
637
+ * For Lean
638
+ *
639
+ * @generated from enum value: Lemma = 24;
640
+ */
641
+ Lemma = 24,
642
+ /**
643
+ * For solidity
644
+ *
645
+ * @generated from enum value: Library = 64;
646
+ */
647
+ Library = 64,
648
+ /**
649
+ * @generated from enum value: Macro = 25;
650
+ */
651
+ Macro = 25,
652
+ /**
653
+ * @generated from enum value: Method = 26;
654
+ */
655
+ Method = 26,
656
+ /**
657
+ * For Ruby
658
+ *
659
+ * @generated from enum value: MethodAlias = 74;
660
+ */
661
+ MethodAlias = 74,
662
+ /**
663
+ * Analogous to 'ThisParameter' and 'SelfParameter', but for languages
664
+ * like Go where the receiver doesn't have a conventional name.
665
+ *
666
+ * @generated from enum value: MethodReceiver = 27;
667
+ */
668
+ MethodReceiver = 27,
669
+ /**
670
+ * Analogous to 'AbstractMethod', for Go.
671
+ *
672
+ * @generated from enum value: MethodSpecification = 67;
673
+ */
674
+ MethodSpecification = 67,
675
+ /**
676
+ * For Protobuf
677
+ *
678
+ * @generated from enum value: Message = 28;
679
+ */
680
+ Message = 28,
681
+ /**
682
+ * For Dart
683
+ *
684
+ * @generated from enum value: Mixin = 85;
685
+ */
686
+ Mixin = 85,
687
+ /**
688
+ * For Solidity
689
+ *
690
+ * @generated from enum value: Modifier = 65;
691
+ */
692
+ Modifier = 65,
693
+ /**
694
+ * @generated from enum value: Module = 29;
695
+ */
696
+ Module = 29,
697
+ /**
698
+ * @generated from enum value: Namespace = 30;
699
+ */
700
+ Namespace = 30,
701
+ /**
702
+ * @generated from enum value: Null = 31;
703
+ */
704
+ Null = 31,
705
+ /**
706
+ * @generated from enum value: Number = 32;
707
+ */
708
+ Number = 32,
709
+ /**
710
+ * @generated from enum value: Object = 33;
711
+ */
712
+ Object = 33,
713
+ /**
714
+ * @generated from enum value: Operator = 34;
715
+ */
716
+ Operator = 34,
717
+ /**
718
+ * @generated from enum value: Package = 35;
719
+ */
720
+ Package = 35,
721
+ /**
722
+ * @generated from enum value: PackageObject = 36;
723
+ */
724
+ PackageObject = 36,
725
+ /**
726
+ * @generated from enum value: Parameter = 37;
727
+ */
728
+ Parameter = 37,
729
+ /**
730
+ * @generated from enum value: ParameterLabel = 38;
731
+ */
732
+ ParameterLabel = 38,
733
+ /**
734
+ * For Haskell's PatternSynonyms
735
+ *
736
+ * @generated from enum value: Pattern = 39;
737
+ */
738
+ Pattern = 39,
739
+ /**
740
+ * For Alloy
741
+ *
742
+ * @generated from enum value: Predicate = 40;
743
+ */
744
+ Predicate = 40,
745
+ /**
746
+ * @generated from enum value: Property = 41;
747
+ */
748
+ Property = 41,
749
+ /**
750
+ * Analogous to 'Trait' and 'TypeClass', for Swift and Objective-C
751
+ *
752
+ * @generated from enum value: Protocol = 42;
753
+ */
754
+ Protocol = 42,
755
+ /**
756
+ * Analogous to 'AbstractMethod', for Swift and Objective-C.
757
+ *
758
+ * @generated from enum value: ProtocolMethod = 68;
759
+ */
760
+ ProtocolMethod = 68,
761
+ /**
762
+ * Analogous to 'AbstractMethod', for C++.
763
+ *
764
+ * @generated from enum value: PureVirtualMethod = 69;
765
+ */
766
+ PureVirtualMethod = 69,
767
+ /**
768
+ * For Haskell
769
+ *
770
+ * @generated from enum value: Quasiquoter = 43;
771
+ */
772
+ Quasiquoter = 43,
773
+ /**
774
+ * 'self' in Python, Rust, Swift etc.
775
+ *
776
+ * @generated from enum value: SelfParameter = 44;
777
+ */
778
+ SelfParameter = 44,
779
+ /**
780
+ * For 'set' in Swift, 'attr_writer' in Ruby
781
+ *
782
+ * @generated from enum value: Setter = 45;
783
+ */
784
+ Setter = 45,
785
+ /**
786
+ * For Alloy, analogous to 'Struct'.
787
+ *
788
+ * @generated from enum value: Signature = 46;
789
+ */
790
+ Signature = 46,
791
+ /**
792
+ * For Ruby
793
+ *
794
+ * @generated from enum value: SingletonClass = 75;
795
+ */
796
+ SingletonClass = 75,
797
+ /**
798
+ * Analogous to 'StaticMethod', for Ruby.
799
+ *
800
+ * @generated from enum value: SingletonMethod = 76;
801
+ */
802
+ SingletonMethod = 76,
803
+ /**
804
+ * Analogous to 'StaticField', for C++
805
+ *
806
+ * @generated from enum value: StaticDataMember = 77;
807
+ */
808
+ StaticDataMember = 77,
809
+ /**
810
+ * For C#
811
+ *
812
+ * @generated from enum value: StaticEvent = 78;
813
+ */
814
+ StaticEvent = 78,
815
+ /**
816
+ * For C#
817
+ *
818
+ * @generated from enum value: StaticField = 79;
819
+ */
820
+ StaticField = 79,
821
+ /**
822
+ * For Java, C#, C++ etc.
823
+ *
824
+ * @generated from enum value: StaticMethod = 80;
825
+ */
826
+ StaticMethod = 80,
827
+ /**
828
+ * For C#, TypeScript etc.
829
+ *
830
+ * @generated from enum value: StaticProperty = 81;
831
+ */
832
+ StaticProperty = 81,
833
+ /**
834
+ * For C, C++
835
+ *
836
+ * @generated from enum value: StaticVariable = 82;
837
+ */
838
+ StaticVariable = 82,
839
+ /**
840
+ * @generated from enum value: String = 48;
841
+ */
842
+ String = 48,
843
+ /**
844
+ * @generated from enum value: Struct = 49;
845
+ */
846
+ Struct = 49,
847
+ /**
848
+ * For Swift
849
+ *
850
+ * @generated from enum value: Subscript = 47;
851
+ */
852
+ Subscript = 47,
853
+ /**
854
+ * For Lean
855
+ *
856
+ * @generated from enum value: Tactic = 50;
857
+ */
858
+ Tactic = 50,
859
+ /**
860
+ * For Lean
861
+ *
862
+ * @generated from enum value: Theorem = 51;
863
+ */
864
+ Theorem = 51,
865
+ /**
866
+ * Method receiver for languages
867
+ * 'this' in JavaScript, C++, Java etc.
868
+ *
869
+ * @generated from enum value: ThisParameter = 52;
870
+ */
871
+ ThisParameter = 52,
872
+ /**
873
+ * Analogous to 'Protocol' and 'TypeClass', for Rust, Scala etc.
874
+ *
875
+ * @generated from enum value: Trait = 53;
876
+ */
877
+ Trait = 53,
878
+ /**
879
+ * Analogous to 'AbstractMethod', for Rust, Scala etc.
880
+ *
881
+ * @generated from enum value: TraitMethod = 70;
882
+ */
883
+ TraitMethod = 70,
884
+ /**
885
+ * Data type definition for languages like OCaml which use `type`
886
+ * rather than separate keywords like `struct` and `enum`.
887
+ *
888
+ * @generated from enum value: Type = 54;
889
+ */
890
+ Type = 54,
891
+ /**
892
+ * @generated from enum value: TypeAlias = 55;
893
+ */
894
+ TypeAlias = 55,
895
+ /**
896
+ * Analogous to 'Trait' and 'Protocol', for Haskell, Purescript etc.
897
+ *
898
+ * @generated from enum value: TypeClass = 56;
899
+ */
900
+ TypeClass = 56,
901
+ /**
902
+ * Analogous to 'AbstractMethod', for Haskell, Purescript etc.
903
+ *
904
+ * @generated from enum value: TypeClassMethod = 71;
905
+ */
906
+ TypeClassMethod = 71,
907
+ /**
908
+ * For Haskell
909
+ *
910
+ * @generated from enum value: TypeFamily = 57;
911
+ */
912
+ TypeFamily = 57,
913
+ /**
914
+ * @generated from enum value: TypeParameter = 58;
915
+ */
916
+ TypeParameter = 58,
917
+ /**
918
+ * For C, C++, Capn Proto
919
+ *
920
+ * @generated from enum value: Union = 59;
921
+ */
922
+ Union = 59,
923
+ /**
924
+ * @generated from enum value: Value = 60;
925
+ */
926
+ Value = 60,
927
+ /**
928
+ * Next = 87;
929
+ * Feel free to open a PR proposing new language-specific kinds.
930
+ *
931
+ * @generated from enum value: Variable = 61;
932
+ */
933
+ Variable = 61
934
+ }
935
+ /**
936
+ * Describes the enum scip.SymbolInformation.Kind.
937
+ */
938
+ export declare const SymbolInformation_KindSchema: GenEnum<SymbolInformation_Kind>;
939
+ /**
940
+ * @generated from message scip.Relationship
941
+ */
942
+ export type Relationship = Message<"scip.Relationship"> & {
943
+ /**
944
+ * @generated from field: string symbol = 1;
945
+ */
946
+ symbol: string;
947
+ /**
948
+ * When resolving "Find references", this field documents what other symbols
949
+ * should be included together with this symbol. For example, consider the
950
+ * following TypeScript code that defines two symbols `Animal#sound()` and
951
+ * `Dog#sound()`:
952
+ * ```ts
953
+ * interface Animal {
954
+ * ^^^^^^ definition Animal#
955
+ * sound(): string
956
+ * ^^^^^ definition Animal#sound()
957
+ * }
958
+ * class Dog implements Animal {
959
+ * ^^^ definition Dog#, relationships = [{symbol: "Animal#", is_implementation: true}]
960
+ * public sound(): string { return "woof" }
961
+ * ^^^^^ definition Dog#sound(), references_symbols = Animal#sound(), relationships = [{symbol: "Animal#sound()", is_implementation:true, is_reference: true}]
962
+ * }
963
+ * const animal: Animal = new Dog()
964
+ * ^^^^^^ reference Animal#
965
+ * console.log(animal.sound())
966
+ * ^^^^^ reference Animal#sound()
967
+ * ```
968
+ * Doing "Find references" on the symbol `Animal#sound()` should return
969
+ * references to the `Dog#sound()` method as well. Vice-versa, doing "Find
970
+ * references" on the `Dog#sound()` method should include references to the
971
+ * `Animal#sound()` method as well.
972
+ *
973
+ * @generated from field: bool is_reference = 2;
974
+ */
975
+ isReference: boolean;
976
+ /**
977
+ * Similar to `is_reference` but for "Find implementations".
978
+ * It's common for `is_implementation` and `is_reference` to both be true but
979
+ * it's not always the case.
980
+ * In the TypeScript example above, observe that `Dog#` has an
981
+ * `is_implementation` relationship with `"Animal#"` but not `is_reference`.
982
+ * This is because "Find references" on the "Animal#" symbol should not return
983
+ * "Dog#". We only want "Dog#" to return as a result for "Find
984
+ * implementations" on the "Animal#" symbol.
985
+ *
986
+ * @generated from field: bool is_implementation = 3;
987
+ */
988
+ isImplementation: boolean;
989
+ /**
990
+ * Similar to `references_symbols` but for "Go to type definition".
991
+ *
992
+ * @generated from field: bool is_type_definition = 4;
993
+ */
994
+ isTypeDefinition: boolean;
995
+ /**
996
+ * Allows overriding the behavior of "Go to definition" and "Find references"
997
+ * for symbols which do not have a definition of their own or could
998
+ * potentially have multiple definitions.
999
+ *
1000
+ * For example, in a language with single inheritance and no field overriding,
1001
+ * inherited fields can reuse the same symbol as the ancestor which declares
1002
+ * the field. In such a situation, is_definition is not needed.
1003
+ *
1004
+ * On the other hand, in languages with single inheritance and some form
1005
+ * of mixins, you can use is_definition to relate the symbol to the
1006
+ * matching symbol in ancestor classes, and is_reference to relate the
1007
+ * symbol to the matching symbol in mixins.
1008
+ *
1009
+ * Update registerInverseRelationships on adding a new field here.
1010
+ *
1011
+ * @generated from field: bool is_definition = 5;
1012
+ */
1013
+ isDefinition: boolean;
1014
+ };
1015
+ /**
1016
+ * Describes the message scip.Relationship.
1017
+ * Use `create(RelationshipSchema)` to create a new message.
1018
+ */
1019
+ export declare const RelationshipSchema: GenMessage<Relationship>;
1020
+ /**
1021
+ * Occurrence associates a source position with a symbol and/or highlighting
1022
+ * information.
1023
+ *
1024
+ * If possible, indexers should try to bundle logically related information
1025
+ * across occurrences into a single occurrence to reduce payload sizes.
1026
+ *
1027
+ * @generated from message scip.Occurrence
1028
+ */
1029
+ export type Occurrence = Message<"scip.Occurrence"> & {
1030
+ /**
1031
+ * Half-open [start, end) range of this occurrence. Must be exactly three or four
1032
+ * elements:
1033
+ *
1034
+ * - Four elements: `[startLine, startCharacter, endLine, endCharacter]`
1035
+ * - Three elements: `[startLine, startCharacter, endCharacter]`. The end line
1036
+ * is inferred to have the same value as the start line.
1037
+ *
1038
+ * It is allowed for the range to be empty (i.e. start==end).
1039
+ *
1040
+ * Line numbers and characters are always 0-based. Make sure to increment the
1041
+ * line/character values before displaying them in an editor-like UI because
1042
+ * editors conventionally use 1-based numbers.
1043
+ *
1044
+ * The 'character' value is interpreted based on the PositionEncoding for
1045
+ * the Document.
1046
+ *
1047
+ * Historical note: the original draft of this schema had a `Range` message
1048
+ * type with `start` and `end` fields of type `Position`, mirroring LSP.
1049
+ * Benchmarks revealed that this encoding was inefficient and that we could
1050
+ * reduce the total payload size of an index by 50% by using `repeated int32`
1051
+ * instead. The `repeated int32` encoding is admittedly more embarrassing to
1052
+ * work with in some programming languages but we hope the performance
1053
+ * improvements make up for it.
1054
+ *
1055
+ * @generated from field: repeated int32 range = 1;
1056
+ */
1057
+ range: number[];
1058
+ /**
1059
+ * (optional) The symbol that appears at this position. See
1060
+ * `SymbolInformation.symbol` for how to format symbols as strings.
1061
+ *
1062
+ * @generated from field: string symbol = 2;
1063
+ */
1064
+ symbol: string;
1065
+ /**
1066
+ * (optional) Bitset containing `SymbolRole`s in this occurrence.
1067
+ * See `SymbolRole`'s documentation for how to read and write this field.
1068
+ *
1069
+ * @generated from field: int32 symbol_roles = 3;
1070
+ */
1071
+ symbolRoles: number;
1072
+ /**
1073
+ * (optional) CommonMark-formatted documentation for this specific range. If
1074
+ * empty, the `Symbol.documentation` field is used instead. One example
1075
+ * where this field might be useful is when the symbol represents a generic
1076
+ * function (with abstract type parameters such as `List<T>`) and at this
1077
+ * occurrence we know the exact values (such as `List<String>`).
1078
+ *
1079
+ * This field can also be used for dynamically or gradually typed languages,
1080
+ * which commonly allow for type-changing assignment.
1081
+ *
1082
+ * @generated from field: repeated string override_documentation = 4;
1083
+ */
1084
+ overrideDocumentation: string[];
1085
+ /**
1086
+ * (optional) What syntax highlighting class should be used for this range?
1087
+ *
1088
+ * @generated from field: scip.SyntaxKind syntax_kind = 5;
1089
+ */
1090
+ syntaxKind: SyntaxKind;
1091
+ /**
1092
+ * (optional) Diagnostics that have been reported for this specific range.
1093
+ *
1094
+ * @generated from field: repeated scip.Diagnostic diagnostics = 6;
1095
+ */
1096
+ diagnostics: Diagnostic[];
1097
+ /**
1098
+ * (optional) Using the same encoding as the sibling `range` field, half-open
1099
+ * source range of the nearest non-trivial enclosing AST node. This range must
1100
+ * enclose the `range` field. Example applications that make use of the
1101
+ * enclosing_range field:
1102
+ *
1103
+ * - Call hierarchies: to determine what symbols are references from the body
1104
+ * of a function
1105
+ * - Symbol outline: to display breadcrumbs from the cursor position to the
1106
+ * root of the file
1107
+ * - Expand selection: to select the nearest enclosing AST node.
1108
+ * - Highlight range: to indicate the AST expression that is associated with a
1109
+ * hover popover
1110
+ *
1111
+ * For definition occurrences, the enclosing range should indicate the
1112
+ * start/end bounds of the entire definition AST node, including
1113
+ * documentation.
1114
+ * ```
1115
+ * const n = 3
1116
+ * ^ range
1117
+ * ^^^^^^^^^^^ enclosing_range
1118
+ *
1119
+ * /** Parses the string into something *\/
1120
+ * ^ enclosing_range start --------------------------------------|
1121
+ * function parse(input string): string { |
1122
+ * ^^^^^ range |
1123
+ * return input.slice(n) |
1124
+ * } |
1125
+ * ^ enclosing_range end <---------------------------------------|
1126
+ * ```
1127
+ *
1128
+ * Any attributes/decorators/attached macros should also be part of the
1129
+ * enclosing range.
1130
+ *
1131
+ * ```python
1132
+ * @cache
1133
+ * ^ enclosing_range start---------------------|
1134
+ * def factorial(n): |
1135
+ * return n * factorial(n-1) if n else 1 |
1136
+ * < enclosing_range end-----------------------|
1137
+ *
1138
+ * ```
1139
+ *
1140
+ * For reference occurrences, the enclosing range should indicate the start/end
1141
+ * bounds of the parent expression.
1142
+ * ```
1143
+ * const a = a.b
1144
+ * ^ range
1145
+ * ^^^ enclosing_range
1146
+ * const b = a.b(41).f(42).g(43)
1147
+ * ^ range
1148
+ * ^^^^^^^^^^^^^ enclosing_range
1149
+ * ```
1150
+ *
1151
+ * @generated from field: repeated int32 enclosing_range = 7;
1152
+ */
1153
+ enclosingRange: number[];
1154
+ };
1155
+ /**
1156
+ * Describes the message scip.Occurrence.
1157
+ * Use `create(OccurrenceSchema)` to create a new message.
1158
+ */
1159
+ export declare const OccurrenceSchema: GenMessage<Occurrence>;
1160
+ /**
1161
+ * Represents a diagnostic, such as a compiler error or warning, which should be
1162
+ * reported for a document.
1163
+ *
1164
+ * @generated from message scip.Diagnostic
1165
+ */
1166
+ export type Diagnostic = Message<"scip.Diagnostic"> & {
1167
+ /**
1168
+ * Should this diagnostic be reported as an error, warning, info, or hint?
1169
+ *
1170
+ * @generated from field: scip.Severity severity = 1;
1171
+ */
1172
+ severity: Severity;
1173
+ /**
1174
+ * (optional) Code of this diagnostic, which might appear in the user interface.
1175
+ *
1176
+ * @generated from field: string code = 2;
1177
+ */
1178
+ code: string;
1179
+ /**
1180
+ * Message of this diagnostic.
1181
+ *
1182
+ * @generated from field: string message = 3;
1183
+ */
1184
+ message: string;
1185
+ /**
1186
+ * (optional) Human-readable string describing the source of this diagnostic, e.g.
1187
+ * 'typescript' or 'super lint'.
1188
+ *
1189
+ * @generated from field: string source = 4;
1190
+ */
1191
+ source: string;
1192
+ /**
1193
+ * @generated from field: repeated scip.DiagnosticTag tags = 5;
1194
+ */
1195
+ tags: DiagnosticTag[];
1196
+ };
1197
+ /**
1198
+ * Describes the message scip.Diagnostic.
1199
+ * Use `create(DiagnosticSchema)` to create a new message.
1200
+ */
1201
+ export declare const DiagnosticSchema: GenMessage<Diagnostic>;
1202
+ /**
1203
+ * @generated from enum scip.ProtocolVersion
1204
+ */
1205
+ export declare enum ProtocolVersion {
1206
+ /**
1207
+ * @generated from enum value: UnspecifiedProtocolVersion = 0;
1208
+ */
1209
+ UnspecifiedProtocolVersion = 0
1210
+ }
1211
+ /**
1212
+ * Describes the enum scip.ProtocolVersion.
1213
+ */
1214
+ export declare const ProtocolVersionSchema: GenEnum<ProtocolVersion>;
1215
+ /**
1216
+ * @generated from enum scip.TextEncoding
1217
+ */
1218
+ export declare enum TextEncoding {
1219
+ /**
1220
+ * @generated from enum value: UnspecifiedTextEncoding = 0;
1221
+ */
1222
+ UnspecifiedTextEncoding = 0,
1223
+ /**
1224
+ * @generated from enum value: UTF8 = 1;
1225
+ */
1226
+ UTF8 = 1,
1227
+ /**
1228
+ * @generated from enum value: UTF16 = 2;
1229
+ */
1230
+ UTF16 = 2
1231
+ }
1232
+ /**
1233
+ * Describes the enum scip.TextEncoding.
1234
+ */
1235
+ export declare const TextEncodingSchema: GenEnum<TextEncoding>;
1236
+ /**
1237
+ * Encoding used to interpret the 'character' value in source ranges.
1238
+ *
1239
+ * @generated from enum scip.PositionEncoding
1240
+ */
1241
+ export declare enum PositionEncoding {
1242
+ /**
1243
+ * Default value. This value should not be used by new SCIP indexers
1244
+ * so that a consumer can process the SCIP index without ambiguity.
1245
+ *
1246
+ * @generated from enum value: UnspecifiedPositionEncoding = 0;
1247
+ */
1248
+ UnspecifiedPositionEncoding = 0,
1249
+ /**
1250
+ * The 'character' value is interpreted as an offset in terms
1251
+ * of UTF-8 code units (i.e. bytes).
1252
+ *
1253
+ * Example: For the string "🚀 Woo" in UTF-8, the bytes are
1254
+ * [240, 159, 154, 128, 32, 87, 111, 111], so the offset for 'W'
1255
+ * would be 5.
1256
+ *
1257
+ * @generated from enum value: UTF8CodeUnitOffsetFromLineStart = 1;
1258
+ */
1259
+ UTF8CodeUnitOffsetFromLineStart = 1,
1260
+ /**
1261
+ * The 'character' value is interpreted as an offset in terms
1262
+ * of UTF-16 code units (each is 2 bytes).
1263
+ *
1264
+ * Example: For the string "🚀 Woo", the UTF-16 code units are
1265
+ * ['\ud83d', '\ude80', ' ', 'W', 'o', 'o'], so the offset for 'W'
1266
+ * would be 3.
1267
+ *
1268
+ * @generated from enum value: UTF16CodeUnitOffsetFromLineStart = 2;
1269
+ */
1270
+ UTF16CodeUnitOffsetFromLineStart = 2,
1271
+ /**
1272
+ * The 'character' value is interpreted as an offset in terms
1273
+ * of UTF-32 code units (each is 4 bytes).
1274
+ *
1275
+ * Example: For the string "🚀 Woo", the UTF-32 code units are
1276
+ * ['🚀', ' ', 'W', 'o', 'o'], so the offset for 'W' would be 2.
1277
+ *
1278
+ * @generated from enum value: UTF32CodeUnitOffsetFromLineStart = 3;
1279
+ */
1280
+ UTF32CodeUnitOffsetFromLineStart = 3
1281
+ }
1282
+ /**
1283
+ * Describes the enum scip.PositionEncoding.
1284
+ */
1285
+ export declare const PositionEncodingSchema: GenEnum<PositionEncoding>;
1286
+ /**
1287
+ * SymbolRole declares what "role" a symbol has in an occurrence. A role is
1288
+ * encoded as a bitset where each bit represents a different role. For example,
1289
+ * to determine if the `Import` role is set, test whether the second bit of the
1290
+ * enum value is defined. In pseudocode, this can be implemented with the
1291
+ * logic: `const isImportRole = (role.value & SymbolRole.Import.value) > 0`.
1292
+ *
1293
+ * @generated from enum scip.SymbolRole
1294
+ */
1295
+ export declare enum SymbolRole {
1296
+ /**
1297
+ * This case is not meant to be used; it only exists to avoid an error
1298
+ * from the Protobuf code generator.
1299
+ *
1300
+ * @generated from enum value: UnspecifiedSymbolRole = 0;
1301
+ */
1302
+ UnspecifiedSymbolRole = 0,
1303
+ /**
1304
+ * Is the symbol defined here? If not, then this is a symbol reference.
1305
+ *
1306
+ * @generated from enum value: Definition = 1;
1307
+ */
1308
+ Definition = 1,
1309
+ /**
1310
+ * Is the symbol imported here?
1311
+ *
1312
+ * @generated from enum value: Import = 2;
1313
+ */
1314
+ Import = 2,
1315
+ /**
1316
+ * Is the symbol written here?
1317
+ *
1318
+ * @generated from enum value: WriteAccess = 4;
1319
+ */
1320
+ WriteAccess = 4,
1321
+ /**
1322
+ * Is the symbol read here?
1323
+ *
1324
+ * @generated from enum value: ReadAccess = 8;
1325
+ */
1326
+ ReadAccess = 8,
1327
+ /**
1328
+ * Is the symbol in generated code?
1329
+ *
1330
+ * @generated from enum value: Generated = 16;
1331
+ */
1332
+ Generated = 16,
1333
+ /**
1334
+ * Is the symbol in test code?
1335
+ *
1336
+ * @generated from enum value: Test = 32;
1337
+ */
1338
+ Test = 32,
1339
+ /**
1340
+ * Is this a signature for a symbol that is defined elsewhere?
1341
+ *
1342
+ * Applies to forward declarations for languages like C, C++
1343
+ * and Objective-C, as well as `val` declarations in interface
1344
+ * files in languages like SML and OCaml.
1345
+ *
1346
+ * @generated from enum value: ForwardDefinition = 64;
1347
+ */
1348
+ ForwardDefinition = 64
1349
+ }
1350
+ /**
1351
+ * Describes the enum scip.SymbolRole.
1352
+ */
1353
+ export declare const SymbolRoleSchema: GenEnum<SymbolRole>;
1354
+ /**
1355
+ * @generated from enum scip.SyntaxKind
1356
+ */
1357
+ export declare enum SyntaxKind {
1358
+ /**
1359
+ * @generated from enum value: UnspecifiedSyntaxKind = 0;
1360
+ */
1361
+ UnspecifiedSyntaxKind = 0,
1362
+ /**
1363
+ * Comment, including comment markers and text
1364
+ *
1365
+ * @generated from enum value: Comment = 1;
1366
+ */
1367
+ Comment = 1,
1368
+ /**
1369
+ * `;` `.` `,`
1370
+ *
1371
+ * @generated from enum value: PunctuationDelimiter = 2;
1372
+ */
1373
+ PunctuationDelimiter = 2,
1374
+ /**
1375
+ * (), {}, [] when used syntactically
1376
+ *
1377
+ * @generated from enum value: PunctuationBracket = 3;
1378
+ */
1379
+ PunctuationBracket = 3,
1380
+ /**
1381
+ * `if`, `else`, `return`, `class`, etc.
1382
+ *
1383
+ * @generated from enum value: Keyword = 4;
1384
+ */
1385
+ Keyword = 4,
1386
+ /**
1387
+ * @generated from enum value: IdentifierKeyword = 4 [deprecated = true];
1388
+ * @deprecated
1389
+ */
1390
+ IdentifierKeyword = 4,
1391
+ /**
1392
+ * `+`, `*`, etc.
1393
+ *
1394
+ * @generated from enum value: IdentifierOperator = 5;
1395
+ */
1396
+ IdentifierOperator = 5,
1397
+ /**
1398
+ * non-specific catch-all for any identifier not better described elsewhere
1399
+ *
1400
+ * @generated from enum value: Identifier = 6;
1401
+ */
1402
+ Identifier = 6,
1403
+ /**
1404
+ * Identifiers builtin to the language: `min`, `print` in Python.
1405
+ *
1406
+ * @generated from enum value: IdentifierBuiltin = 7;
1407
+ */
1408
+ IdentifierBuiltin = 7,
1409
+ /**
1410
+ * Identifiers representing `null`-like values: `None` in Python, `nil` in Go.
1411
+ *
1412
+ * @generated from enum value: IdentifierNull = 8;
1413
+ */
1414
+ IdentifierNull = 8,
1415
+ /**
1416
+ * `xyz` in `const xyz = "hello"`
1417
+ *
1418
+ * @generated from enum value: IdentifierConstant = 9;
1419
+ */
1420
+ IdentifierConstant = 9,
1421
+ /**
1422
+ * `var X = "hello"` in Go
1423
+ *
1424
+ * @generated from enum value: IdentifierMutableGlobal = 10;
1425
+ */
1426
+ IdentifierMutableGlobal = 10,
1427
+ /**
1428
+ * Parameter definition and references
1429
+ *
1430
+ * @generated from enum value: IdentifierParameter = 11;
1431
+ */
1432
+ IdentifierParameter = 11,
1433
+ /**
1434
+ * Identifiers for variable definitions and references within a local scope
1435
+ *
1436
+ * @generated from enum value: IdentifierLocal = 12;
1437
+ */
1438
+ IdentifierLocal = 12,
1439
+ /**
1440
+ * Identifiers that shadow other identifiers in an outer scope
1441
+ *
1442
+ * @generated from enum value: IdentifierShadowed = 13;
1443
+ */
1444
+ IdentifierShadowed = 13,
1445
+ /**
1446
+ * Identifier representing a unit of code abstraction and/or namespacing.
1447
+ *
1448
+ * NOTE: This corresponds to a package in Go and JVM languages,
1449
+ * and a module in languages like Python and JavaScript.
1450
+ *
1451
+ * @generated from enum value: IdentifierNamespace = 14;
1452
+ */
1453
+ IdentifierNamespace = 14,
1454
+ /**
1455
+ * @generated from enum value: IdentifierModule = 14 [deprecated = true];
1456
+ * @deprecated
1457
+ */
1458
+ IdentifierModule = 14,
1459
+ /**
1460
+ * Function references, including calls
1461
+ *
1462
+ * @generated from enum value: IdentifierFunction = 15;
1463
+ */
1464
+ IdentifierFunction = 15,
1465
+ /**
1466
+ * Function definition only
1467
+ *
1468
+ * @generated from enum value: IdentifierFunctionDefinition = 16;
1469
+ */
1470
+ IdentifierFunctionDefinition = 16,
1471
+ /**
1472
+ * Macro references, including invocations
1473
+ *
1474
+ * @generated from enum value: IdentifierMacro = 17;
1475
+ */
1476
+ IdentifierMacro = 17,
1477
+ /**
1478
+ * Macro definition only
1479
+ *
1480
+ * @generated from enum value: IdentifierMacroDefinition = 18;
1481
+ */
1482
+ IdentifierMacroDefinition = 18,
1483
+ /**
1484
+ * non-builtin types
1485
+ *
1486
+ * @generated from enum value: IdentifierType = 19;
1487
+ */
1488
+ IdentifierType = 19,
1489
+ /**
1490
+ * builtin types only, such as `str` for Python or `int` in Go
1491
+ *
1492
+ * @generated from enum value: IdentifierBuiltinType = 20;
1493
+ */
1494
+ IdentifierBuiltinType = 20,
1495
+ /**
1496
+ * Python decorators, c-like __attribute__
1497
+ *
1498
+ * @generated from enum value: IdentifierAttribute = 21;
1499
+ */
1500
+ IdentifierAttribute = 21,
1501
+ /**
1502
+ * `\b`
1503
+ *
1504
+ * @generated from enum value: RegexEscape = 22;
1505
+ */
1506
+ RegexEscape = 22,
1507
+ /**
1508
+ * `*`, `+`
1509
+ *
1510
+ * @generated from enum value: RegexRepeated = 23;
1511
+ */
1512
+ RegexRepeated = 23,
1513
+ /**
1514
+ * `.`
1515
+ *
1516
+ * @generated from enum value: RegexWildcard = 24;
1517
+ */
1518
+ RegexWildcard = 24,
1519
+ /**
1520
+ * `(`, `)`, `[`, `]`
1521
+ *
1522
+ * @generated from enum value: RegexDelimiter = 25;
1523
+ */
1524
+ RegexDelimiter = 25,
1525
+ /**
1526
+ * `|`, `-`
1527
+ *
1528
+ * @generated from enum value: RegexJoin = 26;
1529
+ */
1530
+ RegexJoin = 26,
1531
+ /**
1532
+ * Literal strings: "Hello, world!"
1533
+ *
1534
+ * @generated from enum value: StringLiteral = 27;
1535
+ */
1536
+ StringLiteral = 27,
1537
+ /**
1538
+ * non-regex escapes: "\t", "\n"
1539
+ *
1540
+ * @generated from enum value: StringLiteralEscape = 28;
1541
+ */
1542
+ StringLiteralEscape = 28,
1543
+ /**
1544
+ * datetimes within strings, special words within a string, `{}` in format strings
1545
+ *
1546
+ * @generated from enum value: StringLiteralSpecial = 29;
1547
+ */
1548
+ StringLiteralSpecial = 29,
1549
+ /**
1550
+ * "key" in { "key": "value" }, useful for example in JSON
1551
+ *
1552
+ * @generated from enum value: StringLiteralKey = 30;
1553
+ */
1554
+ StringLiteralKey = 30,
1555
+ /**
1556
+ * 'c' or similar, in languages that differentiate strings and characters
1557
+ *
1558
+ * @generated from enum value: CharacterLiteral = 31;
1559
+ */
1560
+ CharacterLiteral = 31,
1561
+ /**
1562
+ * Literal numbers, both floats and integers
1563
+ *
1564
+ * @generated from enum value: NumericLiteral = 32;
1565
+ */
1566
+ NumericLiteral = 32,
1567
+ /**
1568
+ * `true`, `false`
1569
+ *
1570
+ * @generated from enum value: BooleanLiteral = 33;
1571
+ */
1572
+ BooleanLiteral = 33,
1573
+ /**
1574
+ * Used for XML-like tags
1575
+ *
1576
+ * @generated from enum value: Tag = 34;
1577
+ */
1578
+ Tag = 34,
1579
+ /**
1580
+ * Attribute name in XML-like tags
1581
+ *
1582
+ * @generated from enum value: TagAttribute = 35;
1583
+ */
1584
+ TagAttribute = 35,
1585
+ /**
1586
+ * Delimiters for XML-like tags
1587
+ *
1588
+ * @generated from enum value: TagDelimiter = 36;
1589
+ */
1590
+ TagDelimiter = 36
1591
+ }
1592
+ /**
1593
+ * Describes the enum scip.SyntaxKind.
1594
+ */
1595
+ export declare const SyntaxKindSchema: GenEnum<SyntaxKind>;
1596
+ /**
1597
+ * @generated from enum scip.Severity
1598
+ */
1599
+ export declare enum Severity {
1600
+ /**
1601
+ * @generated from enum value: UnspecifiedSeverity = 0;
1602
+ */
1603
+ UnspecifiedSeverity = 0,
1604
+ /**
1605
+ * @generated from enum value: Error = 1;
1606
+ */
1607
+ Error = 1,
1608
+ /**
1609
+ * @generated from enum value: Warning = 2;
1610
+ */
1611
+ Warning = 2,
1612
+ /**
1613
+ * @generated from enum value: Information = 3;
1614
+ */
1615
+ Information = 3,
1616
+ /**
1617
+ * @generated from enum value: Hint = 4;
1618
+ */
1619
+ Hint = 4
1620
+ }
1621
+ /**
1622
+ * Describes the enum scip.Severity.
1623
+ */
1624
+ export declare const SeveritySchema: GenEnum<Severity>;
1625
+ /**
1626
+ * @generated from enum scip.DiagnosticTag
1627
+ */
1628
+ export declare enum DiagnosticTag {
1629
+ /**
1630
+ * @generated from enum value: UnspecifiedDiagnosticTag = 0;
1631
+ */
1632
+ UnspecifiedDiagnosticTag = 0,
1633
+ /**
1634
+ * @generated from enum value: Unnecessary = 1;
1635
+ */
1636
+ Unnecessary = 1,
1637
+ /**
1638
+ * @generated from enum value: Deprecated = 2;
1639
+ */
1640
+ Deprecated = 2
1641
+ }
1642
+ /**
1643
+ * Describes the enum scip.DiagnosticTag.
1644
+ */
1645
+ export declare const DiagnosticTagSchema: GenEnum<DiagnosticTag>;
1646
+ /**
1647
+ * Language standardises names of common programming languages that can be used
1648
+ * for the `Document.language` field. The primary purpose of this enum is to
1649
+ * prevent a situation where we have a single programming language ends up with
1650
+ * multiple string representations. For example, the C++ language uses the name
1651
+ * "CPP" in this enum and other names such as "cpp" are incompatible.
1652
+ * Feel free to send a pull-request to add missing programming languages.
1653
+ *
1654
+ * @generated from enum scip.Language
1655
+ */
1656
+ export declare enum Language {
1657
+ /**
1658
+ * @generated from enum value: UnspecifiedLanguage = 0;
1659
+ */
1660
+ UnspecifiedLanguage = 0,
1661
+ /**
1662
+ * @generated from enum value: ABAP = 60;
1663
+ */
1664
+ ABAP = 60,
1665
+ /**
1666
+ * @generated from enum value: Apex = 96;
1667
+ */
1668
+ Apex = 96,
1669
+ /**
1670
+ * @generated from enum value: APL = 49;
1671
+ */
1672
+ APL = 49,
1673
+ /**
1674
+ * @generated from enum value: Ada = 39;
1675
+ */
1676
+ Ada = 39,
1677
+ /**
1678
+ * @generated from enum value: Agda = 45;
1679
+ */
1680
+ Agda = 45,
1681
+ /**
1682
+ * @generated from enum value: AsciiDoc = 86;
1683
+ */
1684
+ AsciiDoc = 86,
1685
+ /**
1686
+ * @generated from enum value: Assembly = 58;
1687
+ */
1688
+ Assembly = 58,
1689
+ /**
1690
+ * @generated from enum value: Awk = 66;
1691
+ */
1692
+ Awk = 66,
1693
+ /**
1694
+ * @generated from enum value: Bat = 68;
1695
+ */
1696
+ Bat = 68,
1697
+ /**
1698
+ * @generated from enum value: BibTeX = 81;
1699
+ */
1700
+ BibTeX = 81,
1701
+ /**
1702
+ * @generated from enum value: C = 34;
1703
+ */
1704
+ C = 34,
1705
+ /**
1706
+ * @generated from enum value: COBOL = 59;
1707
+ */
1708
+ COBOL = 59,
1709
+ /**
1710
+ * C++ (the name "CPP" was chosen for consistency with LSP)
1711
+ *
1712
+ * @generated from enum value: CPP = 35;
1713
+ */
1714
+ CPP = 35,
1715
+ /**
1716
+ * @generated from enum value: CSS = 26;
1717
+ */
1718
+ CSS = 26,
1719
+ /**
1720
+ * @generated from enum value: CSharp = 1;
1721
+ */
1722
+ CSharp = 1,
1723
+ /**
1724
+ * @generated from enum value: Clojure = 8;
1725
+ */
1726
+ Clojure = 8,
1727
+ /**
1728
+ * @generated from enum value: Coffeescript = 21;
1729
+ */
1730
+ Coffeescript = 21,
1731
+ /**
1732
+ * @generated from enum value: CommonLisp = 9;
1733
+ */
1734
+ CommonLisp = 9,
1735
+ /**
1736
+ * @generated from enum value: Coq = 47;
1737
+ */
1738
+ Coq = 47,
1739
+ /**
1740
+ * @generated from enum value: CUDA = 97;
1741
+ */
1742
+ CUDA = 97,
1743
+ /**
1744
+ * @generated from enum value: Dart = 3;
1745
+ */
1746
+ Dart = 3,
1747
+ /**
1748
+ * @generated from enum value: Delphi = 57;
1749
+ */
1750
+ Delphi = 57,
1751
+ /**
1752
+ * @generated from enum value: Diff = 88;
1753
+ */
1754
+ Diff = 88,
1755
+ /**
1756
+ * @generated from enum value: Dockerfile = 80;
1757
+ */
1758
+ Dockerfile = 80,
1759
+ /**
1760
+ * @generated from enum value: Dyalog = 50;
1761
+ */
1762
+ Dyalog = 50,
1763
+ /**
1764
+ * @generated from enum value: Elixir = 17;
1765
+ */
1766
+ Elixir = 17,
1767
+ /**
1768
+ * @generated from enum value: Erlang = 18;
1769
+ */
1770
+ Erlang = 18,
1771
+ /**
1772
+ * @generated from enum value: FSharp = 42;
1773
+ */
1774
+ FSharp = 42,
1775
+ /**
1776
+ * @generated from enum value: Fish = 65;
1777
+ */
1778
+ Fish = 65,
1779
+ /**
1780
+ * @generated from enum value: Flow = 24;
1781
+ */
1782
+ Flow = 24,
1783
+ /**
1784
+ * @generated from enum value: Fortran = 56;
1785
+ */
1786
+ Fortran = 56,
1787
+ /**
1788
+ * @generated from enum value: Git_Commit = 91;
1789
+ */
1790
+ Git_Commit = 91,
1791
+ /**
1792
+ * @generated from enum value: Git_Config = 89;
1793
+ */
1794
+ Git_Config = 89,
1795
+ /**
1796
+ * @generated from enum value: Git_Rebase = 92;
1797
+ */
1798
+ Git_Rebase = 92,
1799
+ /**
1800
+ * @generated from enum value: Go = 33;
1801
+ */
1802
+ Go = 33,
1803
+ /**
1804
+ * @generated from enum value: GraphQL = 98;
1805
+ */
1806
+ GraphQL = 98,
1807
+ /**
1808
+ * @generated from enum value: Groovy = 7;
1809
+ */
1810
+ Groovy = 7,
1811
+ /**
1812
+ * @generated from enum value: HTML = 30;
1813
+ */
1814
+ HTML = 30,
1815
+ /**
1816
+ * @generated from enum value: Hack = 20;
1817
+ */
1818
+ Hack = 20,
1819
+ /**
1820
+ * @generated from enum value: Handlebars = 90;
1821
+ */
1822
+ Handlebars = 90,
1823
+ /**
1824
+ * @generated from enum value: Haskell = 44;
1825
+ */
1826
+ Haskell = 44,
1827
+ /**
1828
+ * @generated from enum value: Idris = 46;
1829
+ */
1830
+ Idris = 46,
1831
+ /**
1832
+ * @generated from enum value: Ini = 72;
1833
+ */
1834
+ Ini = 72,
1835
+ /**
1836
+ * @generated from enum value: J = 51;
1837
+ */
1838
+ J = 51,
1839
+ /**
1840
+ * @generated from enum value: JSON = 75;
1841
+ */
1842
+ JSON = 75,
1843
+ /**
1844
+ * @generated from enum value: Java = 6;
1845
+ */
1846
+ Java = 6,
1847
+ /**
1848
+ * @generated from enum value: JavaScript = 22;
1849
+ */
1850
+ JavaScript = 22,
1851
+ /**
1852
+ * @generated from enum value: JavaScriptReact = 93;
1853
+ */
1854
+ JavaScriptReact = 93,
1855
+ /**
1856
+ * @generated from enum value: Jsonnet = 76;
1857
+ */
1858
+ Jsonnet = 76,
1859
+ /**
1860
+ * @generated from enum value: Julia = 55;
1861
+ */
1862
+ Julia = 55,
1863
+ /**
1864
+ * @generated from enum value: Justfile = 109;
1865
+ */
1866
+ Justfile = 109,
1867
+ /**
1868
+ * @generated from enum value: Kotlin = 4;
1869
+ */
1870
+ Kotlin = 4,
1871
+ /**
1872
+ * @generated from enum value: LaTeX = 83;
1873
+ */
1874
+ LaTeX = 83,
1875
+ /**
1876
+ * @generated from enum value: Lean = 48;
1877
+ */
1878
+ Lean = 48,
1879
+ /**
1880
+ * @generated from enum value: Less = 27;
1881
+ */
1882
+ Less = 27,
1883
+ /**
1884
+ * @generated from enum value: Lua = 12;
1885
+ */
1886
+ Lua = 12,
1887
+ /**
1888
+ * @generated from enum value: Luau = 108;
1889
+ */
1890
+ Luau = 108,
1891
+ /**
1892
+ * @generated from enum value: Makefile = 79;
1893
+ */
1894
+ Makefile = 79,
1895
+ /**
1896
+ * @generated from enum value: Markdown = 84;
1897
+ */
1898
+ Markdown = 84,
1899
+ /**
1900
+ * @generated from enum value: Matlab = 52;
1901
+ */
1902
+ Matlab = 52,
1903
+ /**
1904
+ * https://nickel-lang.org/
1905
+ *
1906
+ * @generated from enum value: Nickel = 110;
1907
+ */
1908
+ Nickel = 110,
1909
+ /**
1910
+ * @generated from enum value: Nix = 77;
1911
+ */
1912
+ Nix = 77,
1913
+ /**
1914
+ * @generated from enum value: OCaml = 41;
1915
+ */
1916
+ OCaml = 41,
1917
+ /**
1918
+ * @generated from enum value: Objective_C = 36;
1919
+ */
1920
+ Objective_C = 36,
1921
+ /**
1922
+ * @generated from enum value: Objective_CPP = 37;
1923
+ */
1924
+ Objective_CPP = 37,
1925
+ /**
1926
+ * @generated from enum value: Pascal = 99;
1927
+ */
1928
+ Pascal = 99,
1929
+ /**
1930
+ * @generated from enum value: PHP = 19;
1931
+ */
1932
+ PHP = 19,
1933
+ /**
1934
+ * @generated from enum value: PLSQL = 70;
1935
+ */
1936
+ PLSQL = 70,
1937
+ /**
1938
+ * @generated from enum value: Perl = 13;
1939
+ */
1940
+ Perl = 13,
1941
+ /**
1942
+ * @generated from enum value: PowerShell = 67;
1943
+ */
1944
+ PowerShell = 67,
1945
+ /**
1946
+ * @generated from enum value: Prolog = 71;
1947
+ */
1948
+ Prolog = 71,
1949
+ /**
1950
+ * @generated from enum value: Protobuf = 100;
1951
+ */
1952
+ Protobuf = 100,
1953
+ /**
1954
+ * @generated from enum value: Python = 15;
1955
+ */
1956
+ Python = 15,
1957
+ /**
1958
+ * @generated from enum value: R = 54;
1959
+ */
1960
+ R = 54,
1961
+ /**
1962
+ * @generated from enum value: Racket = 11;
1963
+ */
1964
+ Racket = 11,
1965
+ /**
1966
+ * @generated from enum value: Raku = 14;
1967
+ */
1968
+ Raku = 14,
1969
+ /**
1970
+ * @generated from enum value: Razor = 62;
1971
+ */
1972
+ Razor = 62,
1973
+ /**
1974
+ * Internal language for testing SCIP
1975
+ *
1976
+ * @generated from enum value: Repro = 102;
1977
+ */
1978
+ Repro = 102,
1979
+ /**
1980
+ * @generated from enum value: ReST = 85;
1981
+ */
1982
+ ReST = 85,
1983
+ /**
1984
+ * @generated from enum value: Ruby = 16;
1985
+ */
1986
+ Ruby = 16,
1987
+ /**
1988
+ * @generated from enum value: Rust = 40;
1989
+ */
1990
+ Rust = 40,
1991
+ /**
1992
+ * @generated from enum value: SAS = 61;
1993
+ */
1994
+ SAS = 61,
1995
+ /**
1996
+ * @generated from enum value: SCSS = 29;
1997
+ */
1998
+ SCSS = 29,
1999
+ /**
2000
+ * @generated from enum value: SML = 43;
2001
+ */
2002
+ SML = 43,
2003
+ /**
2004
+ * @generated from enum value: SQL = 69;
2005
+ */
2006
+ SQL = 69,
2007
+ /**
2008
+ * @generated from enum value: Sass = 28;
2009
+ */
2010
+ Sass = 28,
2011
+ /**
2012
+ * @generated from enum value: Scala = 5;
2013
+ */
2014
+ Scala = 5,
2015
+ /**
2016
+ * @generated from enum value: Scheme = 10;
2017
+ */
2018
+ Scheme = 10,
2019
+ /**
2020
+ * Bash
2021
+ *
2022
+ * @generated from enum value: ShellScript = 64;
2023
+ */
2024
+ ShellScript = 64,
2025
+ /**
2026
+ * @generated from enum value: Skylark = 78;
2027
+ */
2028
+ Skylark = 78,
2029
+ /**
2030
+ * @generated from enum value: Slang = 107;
2031
+ */
2032
+ Slang = 107,
2033
+ /**
2034
+ * @generated from enum value: Solidity = 95;
2035
+ */
2036
+ Solidity = 95,
2037
+ /**
2038
+ * @generated from enum value: Svelte = 106;
2039
+ */
2040
+ Svelte = 106,
2041
+ /**
2042
+ * @generated from enum value: Swift = 2;
2043
+ */
2044
+ Swift = 2,
2045
+ /**
2046
+ * @generated from enum value: Tcl = 101;
2047
+ */
2048
+ Tcl = 101,
2049
+ /**
2050
+ * @generated from enum value: TOML = 73;
2051
+ */
2052
+ TOML = 73,
2053
+ /**
2054
+ * @generated from enum value: TeX = 82;
2055
+ */
2056
+ TeX = 82,
2057
+ /**
2058
+ * @generated from enum value: Thrift = 103;
2059
+ */
2060
+ Thrift = 103,
2061
+ /**
2062
+ * @generated from enum value: TypeScript = 23;
2063
+ */
2064
+ TypeScript = 23,
2065
+ /**
2066
+ * @generated from enum value: TypeScriptReact = 94;
2067
+ */
2068
+ TypeScriptReact = 94,
2069
+ /**
2070
+ * @generated from enum value: Verilog = 104;
2071
+ */
2072
+ Verilog = 104,
2073
+ /**
2074
+ * @generated from enum value: VHDL = 105;
2075
+ */
2076
+ VHDL = 105,
2077
+ /**
2078
+ * @generated from enum value: VisualBasic = 63;
2079
+ */
2080
+ VisualBasic = 63,
2081
+ /**
2082
+ * @generated from enum value: Vue = 25;
2083
+ */
2084
+ Vue = 25,
2085
+ /**
2086
+ * @generated from enum value: Wolfram = 53;
2087
+ */
2088
+ Wolfram = 53,
2089
+ /**
2090
+ * @generated from enum value: XML = 31;
2091
+ */
2092
+ XML = 31,
2093
+ /**
2094
+ * @generated from enum value: XSL = 32;
2095
+ */
2096
+ XSL = 32,
2097
+ /**
2098
+ * @generated from enum value: YAML = 74;
2099
+ */
2100
+ YAML = 74,
2101
+ /**
2102
+ * NextLanguage = 111;
2103
+ * Steps add a new language:
2104
+ * 1. Copy-paste the "NextLanguage = N" line above
2105
+ * 2. Increment "NextLanguage = N" to "NextLanguage = N+1"
2106
+ * 3. Replace "NextLanguage = N" with the name of the new language.
2107
+ * 4. Move the new language to the correct line above using alphabetical order
2108
+ * 5. (optional) Add a brief comment behind the language if the name is not self-explanatory
2109
+ *
2110
+ * @generated from enum value: Zig = 38;
2111
+ */
2112
+ Zig = 38
2113
+ }
2114
+ /**
2115
+ * Describes the enum scip.Language.
2116
+ */
2117
+ export declare const LanguageSchema: GenEnum<Language>;
2118
+ //# sourceMappingURL=scip_pb.d.ts.map