@reqlan/language 1.4.0

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 (371) hide show
  1. package/README.md +24 -0
  2. package/out/file-path-rewrite.d.ts +25 -0
  3. package/out/file-path-rewrite.js +56 -0
  4. package/out/file-path-rewrite.js.map +1 -0
  5. package/out/generated/ast.d.ts +1157 -0
  6. package/out/generated/ast.js +980 -0
  7. package/out/generated/ast.js.map +1 -0
  8. package/out/generated/grammar.d.ts +7 -0
  9. package/out/generated/grammar.js +3071 -0
  10. package/out/generated/grammar.js.map +1 -0
  11. package/out/generated/module.d.ts +20 -0
  12. package/out/generated/module.js +32 -0
  13. package/out/generated/module.js.map +1 -0
  14. package/out/index.d.ts +34 -0
  15. package/out/index.js +35 -0
  16. package/out/index.js.map +1 -0
  17. package/out/reqlan-attribute-catalog.d.ts +19 -0
  18. package/out/reqlan-attribute-catalog.js +87 -0
  19. package/out/reqlan-attribute-catalog.js.map +1 -0
  20. package/out/reqlan-code-action-provider.d.ts +55 -0
  21. package/out/reqlan-code-action-provider.js +269 -0
  22. package/out/reqlan-code-action-provider.js.map +1 -0
  23. package/out/reqlan-code-lens-provider.d.ts +13 -0
  24. package/out/reqlan-code-lens-provider.js +27 -0
  25. package/out/reqlan-code-lens-provider.js.map +1 -0
  26. package/out/reqlan-code-lens-settings.d.ts +34 -0
  27. package/out/reqlan-code-lens-settings.js +12 -0
  28. package/out/reqlan-code-lens-settings.js.map +1 -0
  29. package/out/reqlan-comment-resolver.d.ts +35 -0
  30. package/out/reqlan-comment-resolver.js +308 -0
  31. package/out/reqlan-comment-resolver.js.map +1 -0
  32. package/out/reqlan-completion-context.d.ts +46 -0
  33. package/out/reqlan-completion-context.js +244 -0
  34. package/out/reqlan-completion-context.js.map +1 -0
  35. package/out/reqlan-completion-provider.d.ts +41 -0
  36. package/out/reqlan-completion-provider.js +317 -0
  37. package/out/reqlan-completion-provider.js.map +1 -0
  38. package/out/reqlan-definition-provider.d.ts +31 -0
  39. package/out/reqlan-definition-provider.js +240 -0
  40. package/out/reqlan-definition-provider.js.map +1 -0
  41. package/out/reqlan-document-highlight-provider.d.ts +10 -0
  42. package/out/reqlan-document-highlight-provider.js +11 -0
  43. package/out/reqlan-document-highlight-provider.js.map +1 -0
  44. package/out/reqlan-document-link-provider.d.ts +14 -0
  45. package/out/reqlan-document-link-provider.js +24 -0
  46. package/out/reqlan-document-link-provider.js.map +1 -0
  47. package/out/reqlan-embedded-file-references.d.ts +11 -0
  48. package/out/reqlan-embedded-file-references.js +50 -0
  49. package/out/reqlan-embedded-file-references.js.map +1 -0
  50. package/out/reqlan-file-link-resolver.d.ts +44 -0
  51. package/out/reqlan-file-link-resolver.js +347 -0
  52. package/out/reqlan-file-link-resolver.js.map +1 -0
  53. package/out/reqlan-file-references.d.ts +15 -0
  54. package/out/reqlan-file-references.js +72 -0
  55. package/out/reqlan-file-references.js.map +1 -0
  56. package/out/reqlan-grammar-config.d.ts +5 -0
  57. package/out/reqlan-grammar-config.js +9 -0
  58. package/out/reqlan-grammar-config.js.map +1 -0
  59. package/out/reqlan-idea-reference-site.d.ts +14 -0
  60. package/out/reqlan-idea-reference-site.js +47 -0
  61. package/out/reqlan-idea-reference-site.js.map +1 -0
  62. package/out/reqlan-idea-summary.d.ts +6 -0
  63. package/out/reqlan-idea-summary.js +134 -0
  64. package/out/reqlan-idea-summary.js.map +1 -0
  65. package/out/reqlan-ignore-error.d.ts +10 -0
  66. package/out/reqlan-ignore-error.js +42 -0
  67. package/out/reqlan-ignore-error.js.map +1 -0
  68. package/out/reqlan-import-bindings.d.ts +12 -0
  69. package/out/reqlan-import-bindings.js +65 -0
  70. package/out/reqlan-import-bindings.js.map +1 -0
  71. package/out/reqlan-import-edits.d.ts +17 -0
  72. package/out/reqlan-import-edits.js +96 -0
  73. package/out/reqlan-import-edits.js.map +1 -0
  74. package/out/reqlan-imports.d.ts +22 -0
  75. package/out/reqlan-imports.js +61 -0
  76. package/out/reqlan-imports.js.map +1 -0
  77. package/out/reqlan-inbound-reference-inlay-label.d.ts +27 -0
  78. package/out/reqlan-inbound-reference-inlay-label.js +142 -0
  79. package/out/reqlan-inbound-reference-inlay-label.js.map +1 -0
  80. package/out/reqlan-inlay-hint-provider.d.ts +15 -0
  81. package/out/reqlan-inlay-hint-provider.js +54 -0
  82. package/out/reqlan-inlay-hint-provider.js.map +1 -0
  83. package/out/reqlan-inlay-hint-settings.d.ts +10 -0
  84. package/out/reqlan-inlay-hint-settings.js +10 -0
  85. package/out/reqlan-inlay-hint-settings.js.map +1 -0
  86. package/out/reqlan-linker.d.ts +26 -0
  87. package/out/reqlan-linker.js +83 -0
  88. package/out/reqlan-linker.js.map +1 -0
  89. package/out/reqlan-markdown-links.d.ts +28 -0
  90. package/out/reqlan-markdown-links.js +113 -0
  91. package/out/reqlan-markdown-links.js.map +1 -0
  92. package/out/reqlan-module.d.ts +41 -0
  93. package/out/reqlan-module.js +78 -0
  94. package/out/reqlan-module.js.map +1 -0
  95. package/out/reqlan-name-catalog.d.ts +23 -0
  96. package/out/reqlan-name-catalog.js +63 -0
  97. package/out/reqlan-name-catalog.js.map +1 -0
  98. package/out/reqlan-name-provider.d.ts +10 -0
  99. package/out/reqlan-name-provider.js +38 -0
  100. package/out/reqlan-name-provider.js.map +1 -0
  101. package/out/reqlan-namespace-import-links.d.ts +10 -0
  102. package/out/reqlan-namespace-import-links.js +69 -0
  103. package/out/reqlan-namespace-import-links.js.map +1 -0
  104. package/out/reqlan-path-completion.d.ts +50 -0
  105. package/out/reqlan-path-completion.js +304 -0
  106. package/out/reqlan-path-completion.js.map +1 -0
  107. package/out/reqlan-path-references.d.ts +5 -0
  108. package/out/reqlan-path-references.js +124 -0
  109. package/out/reqlan-path-references.js.map +1 -0
  110. package/out/reqlan-path-resolve.d.ts +81 -0
  111. package/out/reqlan-path-resolve.js +245 -0
  112. package/out/reqlan-path-resolve.js.map +1 -0
  113. package/out/reqlan-quoted-strings.d.ts +9 -0
  114. package/out/reqlan-quoted-strings.js +26 -0
  115. package/out/reqlan-quoted-strings.js.map +1 -0
  116. package/out/reqlan-reference-at-position.d.ts +20 -0
  117. package/out/reqlan-reference-at-position.js +89 -0
  118. package/out/reqlan-reference-at-position.js.map +1 -0
  119. package/out/reqlan-reference-code-lens.d.ts +32 -0
  120. package/out/reqlan-reference-code-lens.js +240 -0
  121. package/out/reqlan-reference-code-lens.js.map +1 -0
  122. package/out/reqlan-reference-search-site.d.ts +34 -0
  123. package/out/reqlan-reference-search-site.js +136 -0
  124. package/out/reqlan-reference-search-site.js.map +1 -0
  125. package/out/reqlan-references.d.ts +16 -0
  126. package/out/reqlan-references.js +51 -0
  127. package/out/reqlan-references.js.map +1 -0
  128. package/out/reqlan-scope.d.ts +25 -0
  129. package/out/reqlan-scope.js +259 -0
  130. package/out/reqlan-scope.js.map +1 -0
  131. package/out/reqlan-semantic-token-provider.d.ts +8 -0
  132. package/out/reqlan-semantic-token-provider.js +91 -0
  133. package/out/reqlan-semantic-token-provider.js.map +1 -0
  134. package/out/reqlan-token-builder.d.ts +12 -0
  135. package/out/reqlan-token-builder.js +459 -0
  136. package/out/reqlan-token-builder.js.map +1 -0
  137. package/out/reqlan-validator.d.ts +25 -0
  138. package/out/reqlan-validator.js +119 -0
  139. package/out/reqlan-validator.js.map +1 -0
  140. package/out/reqlan-workspace-attribute-catalog.d.ts +6 -0
  141. package/out/reqlan-workspace-attribute-catalog.js +54 -0
  142. package/out/reqlan-workspace-attribute-catalog.js.map +1 -0
  143. package/out/src/file-path-rewrite.d.ts +25 -0
  144. package/out/src/file-path-rewrite.js +56 -0
  145. package/out/src/file-path-rewrite.js.map +1 -0
  146. package/out/src/generated/ast.d.ts +1173 -0
  147. package/out/src/generated/ast.js +994 -0
  148. package/out/src/generated/ast.js.map +1 -0
  149. package/out/src/generated/grammar.d.ts +7 -0
  150. package/out/src/generated/grammar.js +3045 -0
  151. package/out/src/generated/grammar.js.map +1 -0
  152. package/out/src/generated/module.d.ts +20 -0
  153. package/out/src/generated/module.js +32 -0
  154. package/out/src/generated/module.js.map +1 -0
  155. package/out/src/index.d.ts +29 -0
  156. package/out/src/index.js +30 -0
  157. package/out/src/index.js.map +1 -0
  158. package/out/src/reqlan-attribute-catalog.d.ts +19 -0
  159. package/out/src/reqlan-attribute-catalog.js +87 -0
  160. package/out/src/reqlan-attribute-catalog.js.map +1 -0
  161. package/out/src/reqlan-code-action-provider.d.ts +34 -0
  162. package/out/src/reqlan-code-action-provider.js +206 -0
  163. package/out/src/reqlan-code-action-provider.js.map +1 -0
  164. package/out/src/reqlan-comment-resolver.d.ts +35 -0
  165. package/out/src/reqlan-comment-resolver.js +308 -0
  166. package/out/src/reqlan-comment-resolver.js.map +1 -0
  167. package/out/src/reqlan-completion-context.d.ts +46 -0
  168. package/out/src/reqlan-completion-context.js +244 -0
  169. package/out/src/reqlan-completion-context.js.map +1 -0
  170. package/out/src/reqlan-completion-provider.d.ts +41 -0
  171. package/out/src/reqlan-completion-provider.js +320 -0
  172. package/out/src/reqlan-completion-provider.js.map +1 -0
  173. package/out/src/reqlan-definition-provider.d.ts +31 -0
  174. package/out/src/reqlan-definition-provider.js +240 -0
  175. package/out/src/reqlan-definition-provider.js.map +1 -0
  176. package/out/src/reqlan-document-highlight-provider.d.ts +10 -0
  177. package/out/src/reqlan-document-highlight-provider.js +11 -0
  178. package/out/src/reqlan-document-highlight-provider.js.map +1 -0
  179. package/out/src/reqlan-document-link-provider.d.ts +14 -0
  180. package/out/src/reqlan-document-link-provider.js +24 -0
  181. package/out/src/reqlan-document-link-provider.js.map +1 -0
  182. package/out/src/reqlan-embedded-file-references.d.ts +11 -0
  183. package/out/src/reqlan-embedded-file-references.js +50 -0
  184. package/out/src/reqlan-embedded-file-references.js.map +1 -0
  185. package/out/src/reqlan-file-link-resolver.d.ts +44 -0
  186. package/out/src/reqlan-file-link-resolver.js +347 -0
  187. package/out/src/reqlan-file-link-resolver.js.map +1 -0
  188. package/out/src/reqlan-file-references.d.ts +15 -0
  189. package/out/src/reqlan-file-references.js +72 -0
  190. package/out/src/reqlan-file-references.js.map +1 -0
  191. package/out/src/reqlan-grammar-config.d.ts +5 -0
  192. package/out/src/reqlan-grammar-config.js +9 -0
  193. package/out/src/reqlan-grammar-config.js.map +1 -0
  194. package/out/src/reqlan-idea-summary.d.ts +6 -0
  195. package/out/src/reqlan-idea-summary.js +78 -0
  196. package/out/src/reqlan-idea-summary.js.map +1 -0
  197. package/out/src/reqlan-ignore-error.d.ts +10 -0
  198. package/out/src/reqlan-ignore-error.js +42 -0
  199. package/out/src/reqlan-ignore-error.js.map +1 -0
  200. package/out/src/reqlan-import-bindings.d.ts +12 -0
  201. package/out/src/reqlan-import-bindings.js +65 -0
  202. package/out/src/reqlan-import-bindings.js.map +1 -0
  203. package/out/src/reqlan-import-edits.d.ts +17 -0
  204. package/out/src/reqlan-import-edits.js +96 -0
  205. package/out/src/reqlan-import-edits.js.map +1 -0
  206. package/out/src/reqlan-imports.d.ts +22 -0
  207. package/out/src/reqlan-imports.js +61 -0
  208. package/out/src/reqlan-imports.js.map +1 -0
  209. package/out/src/reqlan-inbound-reference-inlay-label.d.ts +23 -0
  210. package/out/src/reqlan-inbound-reference-inlay-label.js +128 -0
  211. package/out/src/reqlan-inbound-reference-inlay-label.js.map +1 -0
  212. package/out/src/reqlan-inlay-hint-provider.d.ts +15 -0
  213. package/out/src/reqlan-inlay-hint-provider.js +54 -0
  214. package/out/src/reqlan-inlay-hint-provider.js.map +1 -0
  215. package/out/src/reqlan-inlay-hint-settings.d.ts +10 -0
  216. package/out/src/reqlan-inlay-hint-settings.js +10 -0
  217. package/out/src/reqlan-inlay-hint-settings.js.map +1 -0
  218. package/out/src/reqlan-linker.d.ts +26 -0
  219. package/out/src/reqlan-linker.js +86 -0
  220. package/out/src/reqlan-linker.js.map +1 -0
  221. package/out/src/reqlan-markdown-links.d.ts +28 -0
  222. package/out/src/reqlan-markdown-links.js +113 -0
  223. package/out/src/reqlan-markdown-links.js.map +1 -0
  224. package/out/src/reqlan-module.d.ts +41 -0
  225. package/out/src/reqlan-module.js +76 -0
  226. package/out/src/reqlan-module.js.map +1 -0
  227. package/out/src/reqlan-name-catalog.d.ts +23 -0
  228. package/out/src/reqlan-name-catalog.js +63 -0
  229. package/out/src/reqlan-name-catalog.js.map +1 -0
  230. package/out/src/reqlan-name-provider.d.ts +10 -0
  231. package/out/src/reqlan-name-provider.js +38 -0
  232. package/out/src/reqlan-name-provider.js.map +1 -0
  233. package/out/src/reqlan-namespace-import-links.d.ts +10 -0
  234. package/out/src/reqlan-namespace-import-links.js +81 -0
  235. package/out/src/reqlan-namespace-import-links.js.map +1 -0
  236. package/out/src/reqlan-path-completion.d.ts +50 -0
  237. package/out/src/reqlan-path-completion.js +304 -0
  238. package/out/src/reqlan-path-completion.js.map +1 -0
  239. package/out/src/reqlan-path-references.d.ts +5 -0
  240. package/out/src/reqlan-path-references.js +124 -0
  241. package/out/src/reqlan-path-references.js.map +1 -0
  242. package/out/src/reqlan-path-resolve.d.ts +59 -0
  243. package/out/src/reqlan-path-resolve.js +173 -0
  244. package/out/src/reqlan-path-resolve.js.map +1 -0
  245. package/out/src/reqlan-quoted-strings.d.ts +9 -0
  246. package/out/src/reqlan-quoted-strings.js +26 -0
  247. package/out/src/reqlan-quoted-strings.js.map +1 -0
  248. package/out/src/reqlan-reference-at-position.d.ts +20 -0
  249. package/out/src/reqlan-reference-at-position.js +89 -0
  250. package/out/src/reqlan-reference-at-position.js.map +1 -0
  251. package/out/src/reqlan-references.d.ts +16 -0
  252. package/out/src/reqlan-references.js +51 -0
  253. package/out/src/reqlan-references.js.map +1 -0
  254. package/out/src/reqlan-scope.d.ts +25 -0
  255. package/out/src/reqlan-scope.js +266 -0
  256. package/out/src/reqlan-scope.js.map +1 -0
  257. package/out/src/reqlan-semantic-token-provider.d.ts +8 -0
  258. package/out/src/reqlan-semantic-token-provider.js +97 -0
  259. package/out/src/reqlan-semantic-token-provider.js.map +1 -0
  260. package/out/src/reqlan-token-builder.d.ts +12 -0
  261. package/out/src/reqlan-token-builder.js +459 -0
  262. package/out/src/reqlan-token-builder.js.map +1 -0
  263. package/out/src/reqlan-validator.d.ts +25 -0
  264. package/out/src/reqlan-validator.js +119 -0
  265. package/out/src/reqlan-validator.js.map +1 -0
  266. package/out/src/reqlan-workspace-attribute-catalog.d.ts +6 -0
  267. package/out/src/reqlan-workspace-attribute-catalog.js +54 -0
  268. package/out/src/reqlan-workspace-attribute-catalog.js.map +1 -0
  269. package/out/test/code-actions.test.d.ts +1 -0
  270. package/out/test/code-actions.test.js +126 -0
  271. package/out/test/code-actions.test.js.map +1 -0
  272. package/out/test/comment-in-string.test.d.ts +1 -0
  273. package/out/test/comment-in-string.test.js +100 -0
  274. package/out/test/comment-in-string.test.js.map +1 -0
  275. package/out/test/completion.test.d.ts +1 -0
  276. package/out/test/completion.test.js +467 -0
  277. package/out/test/completion.test.js.map +1 -0
  278. package/out/test/file-path-rewrite.test.d.ts +1 -0
  279. package/out/test/file-path-rewrite.test.js +64 -0
  280. package/out/test/file-path-rewrite.test.js.map +1 -0
  281. package/out/test/ignore-error.test.d.ts +1 -0
  282. package/out/test/ignore-error.test.js +87 -0
  283. package/out/test/ignore-error.test.js.map +1 -0
  284. package/out/test/implicit-import-extension.test.d.ts +1 -0
  285. package/out/test/implicit-import-extension.test.js +203 -0
  286. package/out/test/implicit-import-extension.test.js.map +1 -0
  287. package/out/test/import-edits.test.d.ts +1 -0
  288. package/out/test/import-edits.test.js +20 -0
  289. package/out/test/import-edits.test.js.map +1 -0
  290. package/out/test/inlay-hints.test.d.ts +1 -0
  291. package/out/test/inlay-hints.test.js +238 -0
  292. package/out/test/inlay-hints.test.js.map +1 -0
  293. package/out/test/linking.test.d.ts +1 -0
  294. package/out/test/linking.test.js +754 -0
  295. package/out/test/linking.test.js.map +1 -0
  296. package/out/test/naked-strings.test.d.ts +1 -0
  297. package/out/test/naked-strings.test.js +50 -0
  298. package/out/test/naked-strings.test.js.map +1 -0
  299. package/out/test/parsing.test.d.ts +1 -0
  300. package/out/test/parsing.test.js +773 -0
  301. package/out/test/parsing.test.js.map +1 -0
  302. package/out/test/path-resolve.test.d.ts +1 -0
  303. package/out/test/path-resolve.test.js +88 -0
  304. package/out/test/path-resolve.test.js.map +1 -0
  305. package/out/test/references.test.d.ts +1 -0
  306. package/out/test/references.test.js +168 -0
  307. package/out/test/references.test.js.map +1 -0
  308. package/out/test/rqconfig.test.d.ts +1 -0
  309. package/out/test/rqconfig.test.js +275 -0
  310. package/out/test/rqconfig.test.js.map +1 -0
  311. package/out/test/test-requirement-refs.d.ts +8 -0
  312. package/out/test/test-requirement-refs.js +35 -0
  313. package/out/test/test-requirement-refs.js.map +1 -0
  314. package/out/test/testing.test.d.ts +1 -0
  315. package/out/test/testing.test.js +23 -0
  316. package/out/test/testing.test.js.map +1 -0
  317. package/out/test/validating.test.d.ts +1 -0
  318. package/out/test/validating.test.js +117 -0
  319. package/out/test/validating.test.js.map +1 -0
  320. package/out/tsconfig.tsbuildinfo +1 -0
  321. package/package.json +54 -0
  322. package/src/chevrotain.d.ts +8 -0
  323. package/src/file-path-rewrite.ts +96 -0
  324. package/src/generated/ast.ts +1481 -0
  325. package/src/generated/grammar.ts +3074 -0
  326. package/src/generated/module.ts +38 -0
  327. package/src/index.ts +34 -0
  328. package/src/reqlan-attribute-catalog.ts +100 -0
  329. package/src/reqlan-code-action-provider.ts +385 -0
  330. package/src/reqlan-code-lens-provider.ts +54 -0
  331. package/src/reqlan-code-lens-settings.ts +42 -0
  332. package/src/reqlan-comment-resolver.ts +372 -0
  333. package/src/reqlan-comment.langium +23 -0
  334. package/src/reqlan-completion-context.ts +330 -0
  335. package/src/reqlan-completion-provider.ts +400 -0
  336. package/src/reqlan-definition-provider.ts +319 -0
  337. package/src/reqlan-document-highlight-provider.ts +21 -0
  338. package/src/reqlan-document-link-provider.ts +45 -0
  339. package/src/reqlan-embedded-file-references.ts +72 -0
  340. package/src/reqlan-file-link-resolver.ts +485 -0
  341. package/src/reqlan-file-references.ts +84 -0
  342. package/src/reqlan-grammar-config.ts +14 -0
  343. package/src/reqlan-idea-reference-site.ts +74 -0
  344. package/src/reqlan-idea-summary.ts +162 -0
  345. package/src/reqlan-ignore-error.ts +50 -0
  346. package/src/reqlan-import-bindings.ts +87 -0
  347. package/src/reqlan-import-edits.ts +124 -0
  348. package/src/reqlan-imports.ts +115 -0
  349. package/src/reqlan-inbound-reference-inlay-label.ts +194 -0
  350. package/src/reqlan-inlay-hint-provider.ts +88 -0
  351. package/src/reqlan-inlay-hint-settings.ts +15 -0
  352. package/src/reqlan-linker.ts +108 -0
  353. package/src/reqlan-markdown-links.ts +136 -0
  354. package/src/reqlan-module.ts +104 -0
  355. package/src/reqlan-name-catalog.ts +81 -0
  356. package/src/reqlan-name-provider.ts +56 -0
  357. package/src/reqlan-namespace-import-links.ts +92 -0
  358. package/src/reqlan-path-completion.ts +420 -0
  359. package/src/reqlan-path-references.ts +140 -0
  360. package/src/reqlan-path-resolve.ts +346 -0
  361. package/src/reqlan-quoted-strings.ts +30 -0
  362. package/src/reqlan-reference-at-position.ts +154 -0
  363. package/src/reqlan-reference-code-lens.ts +323 -0
  364. package/src/reqlan-reference-search-site.ts +202 -0
  365. package/src/reqlan-references.ts +76 -0
  366. package/src/reqlan-scope.ts +312 -0
  367. package/src/reqlan-semantic-token-provider.ts +113 -0
  368. package/src/reqlan-token-builder.ts +492 -0
  369. package/src/reqlan-validator.ts +149 -0
  370. package/src/reqlan-workspace-attribute-catalog.ts +62 -0
  371. package/src/reqlan.langium +236 -0
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Code completion for references, import paths, file paths, and attributes.
3
+ * rq:["../../../reqlan rq/extension/configuration.rq".configuration_import_roots]
4
+ * rq:["../../../reqlan rq/language/imports.rq".configuration_import_root_alias]
5
+ * rq:["../../../reqlan rq/extension/features-syntax-highlighting.rq".reference_code_completion]
6
+ * rq:["../../../reqlan rq/extension/features-syntax-highlighting.rq".reference_code_completion_sequencing]
7
+ * rq:["../../../reqlan rq/extension/language-support/features-imports.rq".import_code_completion]
8
+ * rq:["../../../reqlan rq/extension/language-support/features-imports.rq".import_code_completion_ranking]
9
+ * rq:["../../../reqlan rq/extension/language-support/features-imports.rq".anonymous_reference_code_completion]
10
+ */
11
+ import type { AstNodeDescription, LangiumDocument } from 'langium';
12
+ import type { MaybePromise } from 'langium';
13
+ import { DefaultCompletionProvider, type CompletionAcceptor, type CompletionContext, type CompletionProviderOptions } from 'langium/lsp';
14
+ import type { CompletionList, CompletionParams } from 'vscode-languageserver';
15
+ import { AttributeCatalogStore } from './reqlan-attribute-catalog.js';
16
+ import type { ReqlanServices } from './reqlan-module.js';
17
+ export declare class ReqlanCompletionProvider extends DefaultCompletionProvider {
18
+ private readonly documents;
19
+ private readonly fileSystem;
20
+ private readonly descriptions;
21
+ private readonly services;
22
+ readonly attributeCatalog: AttributeCatalogStore;
23
+ readonly completionOptions: CompletionProviderOptions;
24
+ constructor(services: ReqlanServices, attributeCatalog?: AttributeCatalogStore);
25
+ getCompletion(document: LangiumDocument, params: CompletionParams): Promise<CompletionList | undefined>;
26
+ protected completionFor(context: CompletionContext, next: Parameters<DefaultCompletionProvider['completionFor']>[1], acceptor: CompletionAcceptor): MaybePromise<void>;
27
+ protected getReferenceCandidates(refInfo: Parameters<DefaultCompletionProvider['getReferenceCandidates']>[0], context: CompletionContext): import("langium").Stream<AstNodeDescription>;
28
+ private completeAttributeKeys;
29
+ private completeAttributeValues;
30
+ private completeReferenceNames;
31
+ private completeAnonymousImportPath;
32
+ private completeImportPath;
33
+ /** Shared candidate set for `import "…"` / `from "…"` and anonymous `["…"]` paths. */
34
+ private collectImportPathCandidates;
35
+ private collectUsedAttributeKeys;
36
+ private refreshWorkspaceAttributeCatalog;
37
+ }
38
+ /** Undirected idea↔idea edges from bracket/wikilink references in the given documents. */
39
+ export declare function buildIdeaReferenceAdjacency(documents: LangiumDocument[]): Map<string, Set<string>>;
40
+ /** BFS hop distances from `center` over an undirected adjacency map. */
41
+ export declare function hopDistancesFromCenter(center: string, adjacency: Map<string, Set<string>>): Map<string, number>;
@@ -0,0 +1,320 @@
1
+ import { AstUtils, stream } from 'langium';
2
+ import { DefaultCompletionProvider } from 'langium/lsp';
3
+ import { reqlanStringDelimiter } from './reqlan-quoted-strings.js';
4
+ import { CompletionItemKind, CompletionList as LspCompletionList } from 'vscode-languageserver';
5
+ import { isAttribute, isBracketReference, isIdea, isIdeaSet, isLocalReference, isModel, isOneLinerIdea, isQualifiedReference, isWikiLink } from './generated/ast.js';
6
+ import { AttributeCatalogStore, ENDORSED_ATTRIBUTE_KEYS } from './reqlan-attribute-catalog.js';
7
+ import { findContainingIdea, getAnonymousImportPathContext, getAttributeKeyContext, getAttributeValueContext, getCompletionSite, getReferencePrefixContext } from './reqlan-completion-context.js';
8
+ import { collectPathCompletionCandidates, comparePathCompletionCandidates, pathCompletionFilterText, pathCompletionSortText } from './reqlan-path-completion.js';
9
+ import { pathResolveContextFromServices } from './reqlan-path-resolve.js';
10
+ import { referenceIdea } from './reqlan-references.js';
11
+ import { collectWorkspaceAttributeCatalog } from './reqlan-workspace-attribute-catalog.js';
12
+ const UNREACHABLE_DISTANCE = 9999;
13
+ export class ReqlanCompletionProvider extends DefaultCompletionProvider {
14
+ constructor(services, attributeCatalog = new AttributeCatalogStore()) {
15
+ super(services);
16
+ this.completionOptions = {
17
+ triggerCharacters: ['@', '[', '.', '/', '"']
18
+ };
19
+ this.documents = services.shared.workspace.LangiumDocuments;
20
+ this.fileSystem = services.shared.workspace.FileSystemProvider;
21
+ this.descriptions = services.workspace.AstNodeDescriptionProvider;
22
+ this.services = services;
23
+ this.attributeCatalog = attributeCatalog;
24
+ }
25
+ async getCompletion(document, params) {
26
+ const site = getCompletionSite(document, params.position);
27
+ if (site === 'main_description') {
28
+ return LspCompletionList.create([], true);
29
+ }
30
+ if (site === 'attribute_key') {
31
+ return this.completeAttributeKeys(document, params);
32
+ }
33
+ if (site === 'attribute_value') {
34
+ return this.completeAttributeValues(document, params);
35
+ }
36
+ if (site === 'anonymous_import_path') {
37
+ return this.completeAnonymousImportPath(document, params);
38
+ }
39
+ if (site === 'reference') {
40
+ return this.completeReferenceNames(document, params);
41
+ }
42
+ this.refreshWorkspaceAttributeCatalog();
43
+ return super.getCompletion(document, params);
44
+ }
45
+ completionFor(context, next, acceptor) {
46
+ if (next.property === 'path' || next.property === 'file') {
47
+ // Import paths and anonymous bracket paths share the same candidate logic.
48
+ this.completeImportPath(context, acceptor);
49
+ return;
50
+ }
51
+ return super.completionFor(context, next, acceptor);
52
+ }
53
+ getReferenceCandidates(refInfo, context) {
54
+ const candidates = super.getReferenceCandidates(refInfo, context);
55
+ if (refInfo.property !== 'idea' && refInfo.property !== 'ideaset' && refInfo.property !== 'members') {
56
+ return candidates;
57
+ }
58
+ const descriptions = this.documents.all.toArray().flatMap(doc => {
59
+ const model = doc.parseResult.value;
60
+ if (!isModel(model)) {
61
+ return [];
62
+ }
63
+ return model.elements
64
+ .filter(element => {
65
+ if (refInfo.property === 'ideaset') {
66
+ return isIdeaSet(element);
67
+ }
68
+ return isIdea(element) || isOneLinerIdea(element);
69
+ })
70
+ .map(element => this.descriptions.createDescription(element, element.name, doc));
71
+ });
72
+ return stream([...candidates, ...descriptions]).distinct((description) => description.name);
73
+ }
74
+ completeAttributeKeys(document, params) {
75
+ const context = getAttributeKeyContext(document, params.position);
76
+ if (!context) {
77
+ return LspCompletionList.create([], true);
78
+ }
79
+ this.refreshWorkspaceAttributeCatalog();
80
+ const usedKeys = new Set(this.collectUsedAttributeKeys(document));
81
+ const endorsed = new Set(ENDORSED_ATTRIBUTE_KEYS);
82
+ const items = this.attributeCatalog.get().keys.flatMap(key => {
83
+ if (context.prefix && !key.startsWith(context.prefix)) {
84
+ return [];
85
+ }
86
+ if (usedKeys.has(key)) {
87
+ return [];
88
+ }
89
+ return [{
90
+ label: key,
91
+ kind: CompletionItemKind.Property,
92
+ insertText: key,
93
+ range: {
94
+ start: context.replaceStart,
95
+ end: context.replaceEnd
96
+ },
97
+ detail: endorsed.has(key) ? 'endorsed attribute' : 'workspace attribute'
98
+ }];
99
+ });
100
+ return LspCompletionList.create(items, true);
101
+ }
102
+ completeAttributeValues(document, params) {
103
+ const context = getAttributeValueContext(document, params.position);
104
+ if (!context) {
105
+ return LspCompletionList.create([], true);
106
+ }
107
+ this.refreshWorkspaceAttributeCatalog();
108
+ const values = this.attributeCatalog.get().valuesByKey[context.attributeName] ?? [];
109
+ const items = values.flatMap(value => {
110
+ if (context.prefix && !value.startsWith(context.prefix)) {
111
+ return [];
112
+ }
113
+ return [{
114
+ label: value,
115
+ kind: CompletionItemKind.Value,
116
+ insertText: value,
117
+ range: {
118
+ start: context.replaceStart,
119
+ end: context.replaceEnd
120
+ },
121
+ detail: `@${context.attributeName}`
122
+ }];
123
+ });
124
+ return LspCompletionList.create(items, true);
125
+ }
126
+ completeReferenceNames(document, params) {
127
+ const context = getReferencePrefixContext(document, params.position);
128
+ if (!context) {
129
+ return LspCompletionList.create([], true);
130
+ }
131
+ const names = new Set();
132
+ const docs = this.documents.all.toArray();
133
+ if (!docs.some(doc => doc.uri.toString() === document.uri.toString())) {
134
+ docs.push(document);
135
+ }
136
+ for (const doc of docs) {
137
+ const model = doc.parseResult.value;
138
+ if (!isModel(model)) {
139
+ continue;
140
+ }
141
+ for (const element of model.elements) {
142
+ if (isIdea(element) || isOneLinerIdea(element) || isIdeaSet(element)) {
143
+ names.add(element.name);
144
+ }
145
+ }
146
+ }
147
+ const center = findContainingIdea(document, params.position)?.name;
148
+ const distances = center
149
+ ? hopDistancesFromCenter(center, buildIdeaReferenceAdjacency(docs))
150
+ : new Map();
151
+ const items = [...names].flatMap(name => {
152
+ if (context.prefix && !name.startsWith(context.prefix)) {
153
+ return [];
154
+ }
155
+ const distance = distances.get(name) ?? UNREACHABLE_DISTANCE;
156
+ return [{
157
+ label: name,
158
+ kind: CompletionItemKind.Reference,
159
+ insertText: name,
160
+ sortText: `${String(distance).padStart(4, '0')}_${name}`,
161
+ range: {
162
+ start: context.replaceStart,
163
+ end: context.replaceEnd
164
+ }
165
+ }];
166
+ }).sort((left, right) => {
167
+ const leftDistance = distances.get(String(left.label)) ?? UNREACHABLE_DISTANCE;
168
+ const rightDistance = distances.get(String(right.label)) ?? UNREACHABLE_DISTANCE;
169
+ return leftDistance - rightDistance || String(left.label).localeCompare(String(right.label));
170
+ });
171
+ return LspCompletionList.create(items, true);
172
+ }
173
+ completeAnonymousImportPath(document, params) {
174
+ const context = getAnonymousImportPathContext(document, params.position);
175
+ if (!context) {
176
+ return LspCompletionList.create([], true);
177
+ }
178
+ const candidates = this.collectImportPathCandidates(document, context.prefix)
179
+ .sort((left, right) => comparePathCompletionCandidates(document, left, right));
180
+ const items = candidates.map(candidate => ({
181
+ label: candidate.path,
182
+ kind: candidate.isDirectory ? CompletionItemKind.Folder : CompletionItemKind.File,
183
+ textEdit: {
184
+ newText: candidate.path,
185
+ range: {
186
+ start: context.replaceStart,
187
+ end: context.replaceEnd
188
+ }
189
+ },
190
+ sortText: pathCompletionSortText(document, candidate),
191
+ filterText: pathCompletionFilterText(context.prefix, candidate)
192
+ }));
193
+ return LspCompletionList.create(items, true);
194
+ }
195
+ completeImportPath(context, acceptor) {
196
+ const text = context.textDocument.getText();
197
+ const existingText = text.substring(context.tokenOffset, context.offset);
198
+ let range = {
199
+ start: context.position,
200
+ end: context.position
201
+ };
202
+ let prefix = '';
203
+ if (existingText.length > 0) {
204
+ const delimiter = reqlanStringDelimiter(existingText);
205
+ prefix = delimiter
206
+ ? existingText.slice(1, existingText.endsWith(delimiter) ? -1 : undefined)
207
+ : existingText;
208
+ const quoteOffset = delimiter ? 1 : 0;
209
+ const start = context.textDocument.positionAt(context.tokenOffset + quoteOffset);
210
+ const end = context.textDocument.positionAt(context.tokenEndOffset - (delimiter && existingText.endsWith(delimiter) ? 1 : 0));
211
+ range = { start, end };
212
+ }
213
+ const candidates = this.collectImportPathCandidates(context.document, prefix)
214
+ .sort((left, right) => comparePathCompletionCandidates(context.document, left, right));
215
+ for (const candidate of candidates) {
216
+ const delimiter = reqlanStringDelimiter(existingText);
217
+ const opening = delimiter ?? '"';
218
+ const needsClosing = !delimiter || !existingText.endsWith(delimiter);
219
+ const closing = needsClosing ? opening : '';
220
+ acceptor(context, {
221
+ label: candidate.path,
222
+ textEdit: {
223
+ newText: `${delimiter ? '' : opening}${candidate.path}${closing}`,
224
+ range
225
+ },
226
+ kind: candidate.isDirectory ? CompletionItemKind.Folder : CompletionItemKind.File,
227
+ sortText: pathCompletionSortText(context.document, candidate),
228
+ filterText: pathCompletionFilterText(prefix, candidate)
229
+ });
230
+ }
231
+ }
232
+ /** Shared candidate set for `import "…"` / `from "…"` and anonymous `["…"]` paths. */
233
+ collectImportPathCandidates(document, prefix) {
234
+ return collectPathCompletionCandidates(document, this.documents, this.fileSystem, pathResolveContextFromServices(this.services), { extensionFilter: '.rq', prefix });
235
+ }
236
+ collectUsedAttributeKeys(document) {
237
+ return AstUtils.streamAst(document.parseResult.value)
238
+ .filter(isAttribute)
239
+ .map(attribute => attribute.name)
240
+ .toArray();
241
+ }
242
+ refreshWorkspaceAttributeCatalog() {
243
+ const workspaceCatalog = collectWorkspaceAttributeCatalog(this.documents);
244
+ this.attributeCatalog.mergeWorkspaceKeys(workspaceCatalog.keys, workspaceCatalog.valuesByKey);
245
+ }
246
+ }
247
+ /** Undirected idea↔idea edges from bracket/wikilink references in the given documents. */
248
+ export function buildIdeaReferenceAdjacency(documents) {
249
+ const adjacency = new Map();
250
+ const addEdge = (left, right) => {
251
+ if (!left || !right || left === right) {
252
+ return;
253
+ }
254
+ if (!adjacency.has(left)) {
255
+ adjacency.set(left, new Set());
256
+ }
257
+ if (!adjacency.has(right)) {
258
+ adjacency.set(right, new Set());
259
+ }
260
+ adjacency.get(left).add(right);
261
+ adjacency.get(right).add(left);
262
+ };
263
+ for (const document of documents) {
264
+ for (const node of AstUtils.streamAst(document.parseResult.value)) {
265
+ if (!isBracketReference(node) && !isWikiLink(node)) {
266
+ continue;
267
+ }
268
+ const source = enclosingIdeaName(node);
269
+ if (!source) {
270
+ continue;
271
+ }
272
+ for (const target of referencedNames(node.target)) {
273
+ addEdge(source, target);
274
+ }
275
+ }
276
+ }
277
+ return adjacency;
278
+ }
279
+ /** BFS hop distances from `center` over an undirected adjacency map. */
280
+ export function hopDistancesFromCenter(center, adjacency) {
281
+ const distances = new Map();
282
+ const queue = [center];
283
+ distances.set(center, 0);
284
+ while (queue.length > 0) {
285
+ const current = queue.shift();
286
+ const nextDist = (distances.get(current) ?? 0) + 1;
287
+ for (const neighbour of adjacency.get(current) ?? []) {
288
+ if (!distances.has(neighbour)) {
289
+ distances.set(neighbour, nextDist);
290
+ queue.push(neighbour);
291
+ }
292
+ }
293
+ }
294
+ return distances;
295
+ }
296
+ function enclosingIdeaName(node) {
297
+ let current = node;
298
+ while (current) {
299
+ if (isIdea(current) || isOneLinerIdea(current) || isIdeaSet(current)) {
300
+ return current.name;
301
+ }
302
+ current = current.$container;
303
+ }
304
+ return undefined;
305
+ }
306
+ function referencedNames(target) {
307
+ const names = [];
308
+ const idea = referenceIdea(target);
309
+ if (idea) {
310
+ names.push(idea.ref?.name ?? idea.$refText);
311
+ }
312
+ if (isLocalReference(target) && target.ideaset) {
313
+ names.push(target.ideaset.ref?.name ?? target.ideaset.$refText);
314
+ }
315
+ if (isQualifiedReference(target) && target.ideaset) {
316
+ names.push(target.ideaset.ref?.name ?? target.ideaset.$refText);
317
+ }
318
+ return names.filter(Boolean);
319
+ }
320
+ //# sourceMappingURL=reqlan-completion-provider.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reqlan-completion-provider.js","sourceRoot":"","sources":["../../src/reqlan-completion-provider.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Go-to-definition for imports, file references, symbols, and embedded comment references.
3
+ */
4
+ import type { CstNode, LangiumDocument, MaybePromise } from 'langium';
5
+ import { DefaultDefinitionProvider, type GoToLink } from 'langium/lsp';
6
+ import type { DefinitionParams } from 'vscode-languageserver';
7
+ import { LocationLink } from 'vscode-languageserver';
8
+ import type { ReqlanServices } from './reqlan-module.js';
9
+ export declare class ReqlanDefinitionProvider extends DefaultDefinitionProvider {
10
+ private readonly documents;
11
+ private readonly fileSystem;
12
+ private readonly services;
13
+ constructor(services: ReqlanServices);
14
+ private pathContext;
15
+ getDefinition(document: LangiumDocument, params: DefinitionParams): MaybePromise<LocationLink[] | undefined>;
16
+ protected findLinks(source: CstNode): GoToLink[];
17
+ private linkForFileReference;
18
+ private createNamespaceImportLink;
19
+ private linkForNamespaceImportReference;
20
+ private linkForImportPath;
21
+ private isOnQualifiedReferencePath;
22
+ private redirectImportPathLink;
23
+ private createImportedFileLink;
24
+ private createFileLink;
25
+ private createCommentIdeaReferenceLinks;
26
+ private findAnonymousImportPathLinkAtPosition;
27
+ private findImportPathLinkAtPosition;
28
+ private findFileReferenceLinkAtPosition;
29
+ private toLocationLink;
30
+ private resolvedFileLinkToLocationLink;
31
+ }
@@ -0,0 +1,240 @@
1
+ import { AstUtils, CstUtils, GrammarUtils, URI } from 'langium';
2
+ import { DefaultDefinitionProvider } from 'langium/lsp';
3
+ import { LocationLink } from 'vscode-languageserver';
4
+ import { findCommentReferencePartAt, resolveCommentDefinitionLinks } from './reqlan-comment-resolver.js';
5
+ import { resolveFileReferenceLink, resolveImportPathLink, resolveQualifiedReferencePathLink, resolvedFileLinkToGoToTarget, resolvedFileLinkToGoToTargetFromFilesystem } from './reqlan-file-link-resolver.js';
6
+ import { isNamespaceImportOnlyReference, resolveNamespaceImportReferenceLink } from './reqlan-namespace-import-links.js';
7
+ import { findFileReferenceAtPosition } from './reqlan-reference-at-position.js';
8
+ import { isMarkdownLinkLabelPosition } from './reqlan-markdown-links.js';
9
+ import { isFileReference, isFileSymbolReference, isFromImport, isImport, isLocalReference, isQualifiedReference } from './generated/ast.js';
10
+ import { pathResolveContextFromServices } from './reqlan-path-resolve.js';
11
+ export class ReqlanDefinitionProvider extends DefaultDefinitionProvider {
12
+ constructor(services) {
13
+ super(services);
14
+ this.documents = services.shared.workspace.LangiumDocuments;
15
+ this.fileSystem = services.shared.workspace.FileSystemProvider;
16
+ this.services = services;
17
+ }
18
+ pathContext() {
19
+ return pathResolveContextFromServices(this.services);
20
+ }
21
+ getDefinition(document, params) {
22
+ if (isMarkdownLinkLabelPosition(document, params.position)) {
23
+ return undefined;
24
+ }
25
+ const commentPart = findCommentReferencePartAt(document, params.position);
26
+ if (commentPart?.property === 'idea') {
27
+ return this.createCommentIdeaReferenceLinks(document, commentPart.reference);
28
+ }
29
+ const fileReference = findFileReferenceAtPosition(document, params.position, this.documents, this.fileSystem, this.pathContext());
30
+ if (fileReference) {
31
+ if (fileReference.resolution === 'folder' || fileReference.resolution === 'missing') {
32
+ return undefined;
33
+ }
34
+ return [this.resolvedFileLinkToLocationLink(fileReference)];
35
+ }
36
+ const fileLink = this.findFileReferenceLinkAtPosition(document, params.position);
37
+ if (fileLink) {
38
+ return [this.toLocationLink(fileLink)];
39
+ }
40
+ const anonymousImportPathLink = this.findAnonymousImportPathLinkAtPosition(document, params.position);
41
+ if (anonymousImportPathLink) {
42
+ return [this.toLocationLink(anonymousImportPathLink)];
43
+ }
44
+ const importPathLink = this.findImportPathLinkAtPosition(document, params.position);
45
+ if (importPathLink) {
46
+ return [this.toLocationLink(importPathLink)];
47
+ }
48
+ return super.getDefinition(document, params);
49
+ }
50
+ findLinks(source) {
51
+ const fileLink = this.linkForFileReference(source) ?? this.linkForNamespaceImportReference(source);
52
+ if (fileLink) {
53
+ return [fileLink];
54
+ }
55
+ const importPathLink = this.linkForImportPath(source);
56
+ if (importPathLink) {
57
+ return [importPathLink];
58
+ }
59
+ return super.findLinks(source).map(link => this.redirectImportPathLink(link) ?? link);
60
+ }
61
+ linkForFileReference(source) {
62
+ const assignment = GrammarUtils.findAssignment(source);
63
+ if (!assignment) {
64
+ return undefined;
65
+ }
66
+ const container = source.astNode;
67
+ if ((isFileReference(container) || isFileSymbolReference(container)) && assignment.feature === 'file') {
68
+ return this.createFileLink(source, container);
69
+ }
70
+ return undefined;
71
+ }
72
+ createNamespaceImportLink(source, reference) {
73
+ const resolved = resolveNamespaceImportReferenceLink(reference, this.documents, this.fileSystem, this.pathContext());
74
+ if (!resolved) {
75
+ return undefined;
76
+ }
77
+ const targetDocument = this.documents.getDocument(URI.parse(resolved.targetUri));
78
+ if (targetDocument) {
79
+ return resolvedFileLinkToGoToTarget(resolved, source, targetDocument);
80
+ }
81
+ return resolvedFileLinkToGoToTargetFromFilesystem(resolved, source);
82
+ }
83
+ linkForNamespaceImportReference(source) {
84
+ const assignment = GrammarUtils.findAssignment(source);
85
+ if (!assignment) {
86
+ return undefined;
87
+ }
88
+ const container = source.astNode;
89
+ if (!(isLocalReference(container) || isQualifiedReference(container))) {
90
+ return undefined;
91
+ }
92
+ if (!isNamespaceImportOnlyReference(container)) {
93
+ return undefined;
94
+ }
95
+ const property = assignment.feature;
96
+ if (property !== 'idea' && property !== 'ideaset' && property !== 'qualifier') {
97
+ return undefined;
98
+ }
99
+ return this.createNamespaceImportLink(source, container);
100
+ }
101
+ linkForImportPath(source) {
102
+ let current = source;
103
+ while (current) {
104
+ const container = current.astNode;
105
+ const assignment = GrammarUtils.findAssignment(current);
106
+ if (isImport(container) && assignment?.feature === 'path') {
107
+ return this.createImportedFileLink(current, container);
108
+ }
109
+ if (isQualifiedReference(container) && this.isOnQualifiedReferencePath(current, container)) {
110
+ const importDecl = container.path?.ref;
111
+ if (importDecl) {
112
+ return this.createImportedFileLink(current, importDecl);
113
+ }
114
+ const resolved = resolveQualifiedReferencePathLink(container, this.documents, this.pathContext());
115
+ if (resolved) {
116
+ const targetDocument = this.documents.getDocument(URI.parse(resolved.targetUri.split('#')[0]));
117
+ if (targetDocument) {
118
+ return resolvedFileLinkToGoToTarget(resolved, current, targetDocument);
119
+ }
120
+ }
121
+ }
122
+ current = current.container;
123
+ }
124
+ return undefined;
125
+ }
126
+ isOnQualifiedReferencePath(source, reference) {
127
+ const pathNode = reference.path?.$refNode ?? GrammarUtils.findNodeForProperty(reference.$cstNode, 'path');
128
+ if (!pathNode) {
129
+ return false;
130
+ }
131
+ return source.offset >= pathNode.offset && source.end <= pathNode.end;
132
+ }
133
+ redirectImportPathLink(link) {
134
+ const importDecl = link.target.astNode;
135
+ if (!isImportPathTarget(importDecl, link.target)) {
136
+ return undefined;
137
+ }
138
+ return this.createImportedFileLink(link.source, importDecl);
139
+ }
140
+ createImportedFileLink(source, importDecl) {
141
+ const resolved = resolveImportPathLink(importDecl, this.documents, this.pathContext());
142
+ if (!resolved) {
143
+ return undefined;
144
+ }
145
+ const targetDocument = this.documents.getDocument(URI.parse(resolved.targetUri.split('#')[0]));
146
+ if (!targetDocument) {
147
+ return undefined;
148
+ }
149
+ return resolvedFileLinkToGoToTarget(resolved, source, targetDocument);
150
+ }
151
+ createFileLink(source, reference) {
152
+ const resolved = resolveFileReferenceLink(reference, this.documents, this.fileSystem, this.pathContext());
153
+ if (!resolved) {
154
+ return undefined;
155
+ }
156
+ const targetDocument = this.documents.getDocument(URI.parse(resolved.targetUri));
157
+ if (targetDocument) {
158
+ return resolvedFileLinkToGoToTarget(resolved, source, targetDocument);
159
+ }
160
+ return resolvedFileLinkToGoToTargetFromFilesystem(resolved, source);
161
+ }
162
+ createCommentIdeaReferenceLinks(document, reference) {
163
+ return resolveCommentDefinitionLinks(reference, document, this.documents, this.pathContext());
164
+ }
165
+ findAnonymousImportPathLinkAtPosition(document, position) {
166
+ const offset = document.textDocument.offsetAt(position);
167
+ for (const node of AstUtils.streamAst(document.parseResult.value)) {
168
+ if (!isQualifiedReference(node) || node.path?.ref) {
169
+ continue;
170
+ }
171
+ const pathNode = node.path?.$refNode ?? GrammarUtils.findNodeForProperty(node.$cstNode, 'path');
172
+ if (!pathNode || offset < pathNode.offset || offset >= pathNode.end) {
173
+ continue;
174
+ }
175
+ const resolved = resolveQualifiedReferencePathLink(node, this.documents, this.pathContext());
176
+ if (!resolved) {
177
+ continue;
178
+ }
179
+ const targetDocument = this.documents.getDocument(URI.parse(resolved.targetUri.split('#')[0]));
180
+ if (!targetDocument) {
181
+ continue;
182
+ }
183
+ return resolvedFileLinkToGoToTarget(resolved, pathNode, targetDocument);
184
+ }
185
+ return undefined;
186
+ }
187
+ findImportPathLinkAtPosition(document, position) {
188
+ const root = document.parseResult.value.$cstNode;
189
+ if (!root) {
190
+ return undefined;
191
+ }
192
+ const offset = document.textDocument.offsetAt(position);
193
+ let current = CstUtils.findLeafNodeAtOffset(root, offset);
194
+ while (current) {
195
+ const link = this.linkForImportPath(current) ?? this.linkForFileReference(current) ?? this.linkForNamespaceImportReference(current);
196
+ if (link) {
197
+ return link;
198
+ }
199
+ current = current.container;
200
+ }
201
+ return undefined;
202
+ }
203
+ findFileReferenceLinkAtPosition(document, position) {
204
+ const root = document.parseResult.value.$cstNode;
205
+ if (!root) {
206
+ return undefined;
207
+ }
208
+ const offset = document.textDocument.offsetAt(position);
209
+ let current = CstUtils.findLeafNodeAtOffset(root, offset);
210
+ while (current) {
211
+ const link = this.linkForFileReference(current) ?? this.linkForNamespaceImportReference(current);
212
+ if (link) {
213
+ return link;
214
+ }
215
+ current = current.container;
216
+ }
217
+ return undefined;
218
+ }
219
+ toLocationLink(link) {
220
+ return LocationLink.create(link.targetDocument.textDocument.uri, (link.target.astNode?.$cstNode ?? link.target).range, link.target.range, link.source.range);
221
+ }
222
+ resolvedFileLinkToLocationLink(link) {
223
+ const targetRange = link.targetRange ?? {
224
+ start: { line: 0, character: 0 },
225
+ end: { line: 0, character: 0 }
226
+ };
227
+ return LocationLink.create(link.targetUri, targetRange, targetRange, link.sourceRange);
228
+ }
229
+ }
230
+ function isImportPathTarget(node, targetCst) {
231
+ if (!isImport(node)) {
232
+ return false;
233
+ }
234
+ if (isFromImport(node) || !node.alias) {
235
+ return true;
236
+ }
237
+ const pathNode = GrammarUtils.findNodeForProperty(node.$cstNode, 'path');
238
+ return pathNode === targetCst || (pathNode !== undefined && targetCst.offset >= pathNode.offset && targetCst.end <= pathNode.end);
239
+ }
240
+ //# sourceMappingURL=reqlan-definition-provider.js.map