@samchon/graph 0.1.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 (391) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +129 -0
  3. package/lib/AsyncSamchonGraphSource.d.ts +2 -0
  4. package/lib/AsyncSamchonGraphSource.js +3 -0
  5. package/lib/AsyncSamchonGraphSource.js.map +1 -0
  6. package/lib/SamchonGraphApplication.d.ts +10 -0
  7. package/lib/SamchonGraphApplication.js +64 -0
  8. package/lib/SamchonGraphApplication.js.map +1 -0
  9. package/lib/SamchonGraphSource.d.ts +2 -0
  10. package/lib/SamchonGraphSource.js +3 -0
  11. package/lib/SamchonGraphSource.js.map +1 -0
  12. package/lib/application.d.ts +3 -0
  13. package/lib/application.js +20 -0
  14. package/lib/application.js.map +1 -0
  15. package/lib/bin.d.ts +2 -0
  16. package/lib/bin.js +8 -0
  17. package/lib/bin.js.map +1 -0
  18. package/lib/index.d.ts +13 -0
  19. package/lib/index.js +30 -0
  20. package/lib/index.js.map +1 -0
  21. package/lib/indexer/IBuildGraphOptions.d.ts +41 -0
  22. package/lib/indexer/IBuildGraphOptions.js +3 -0
  23. package/lib/indexer/IBuildGraphOptions.js.map +1 -0
  24. package/lib/indexer/IIndexerResult.d.ts +5 -0
  25. package/lib/indexer/IIndexerResult.js +3 -0
  26. package/lib/indexer/IIndexerResult.js.map +1 -0
  27. package/lib/indexer/ILanguageSpec.d.ts +10 -0
  28. package/lib/indexer/ILanguageSpec.js +3 -0
  29. package/lib/indexer/ILanguageSpec.js.map +1 -0
  30. package/lib/indexer/LANGUAGE_SPECS.d.ts +2 -0
  31. package/lib/indexer/LANGUAGE_SPECS.js +114 -0
  32. package/lib/indexer/LANGUAGE_SPECS.js.map +1 -0
  33. package/lib/indexer/allExtensions.d.ts +2 -0
  34. package/lib/indexer/allExtensions.js +16 -0
  35. package/lib/indexer/allExtensions.js.map +1 -0
  36. package/lib/indexer/buildGraph.d.ts +3 -0
  37. package/lib/indexer/buildGraph.js +10 -0
  38. package/lib/indexer/buildGraph.js.map +1 -0
  39. package/lib/indexer/buildGraphDump.d.ts +3 -0
  40. package/lib/indexer/buildGraphDump.js +394 -0
  41. package/lib/indexer/buildGraphDump.js.map +1 -0
  42. package/lib/indexer/buildLspGraph.d.ts +3 -0
  43. package/lib/indexer/buildLspGraph.js +617 -0
  44. package/lib/indexer/buildLspGraph.js.map +1 -0
  45. package/lib/indexer/buildStaticGraph.d.ts +3 -0
  46. package/lib/indexer/buildStaticGraph.js +479 -0
  47. package/lib/indexer/buildStaticGraph.js.map +1 -0
  48. package/lib/indexer/decoratorsAbove.d.ts +1 -0
  49. package/lib/indexer/decoratorsAbove.js +14 -0
  50. package/lib/indexer/decoratorsAbove.js.map +1 -0
  51. package/lib/indexer/languageOf.d.ts +2 -0
  52. package/lib/indexer/languageOf.js +19 -0
  53. package/lib/indexer/languageOf.js.map +1 -0
  54. package/lib/indexer/languages.d.ts +5 -0
  55. package/lib/indexer/languages.js +22 -0
  56. package/lib/indexer/languages.js.map +1 -0
  57. package/lib/indexer/lspIndexer.d.ts +1 -0
  58. package/lib/indexer/lspIndexer.js +18 -0
  59. package/lib/indexer/lspIndexer.js.map +1 -0
  60. package/lib/indexer/overrideEdges.d.ts +2 -0
  61. package/lib/indexer/overrideEdges.js +45 -0
  62. package/lib/indexer/overrideEdges.js.map +1 -0
  63. package/lib/indexer/resolveType.d.ts +2 -0
  64. package/lib/indexer/resolveType.js +11 -0
  65. package/lib/indexer/resolveType.js.map +1 -0
  66. package/lib/indexer/specOf.d.ts +3 -0
  67. package/lib/indexer/specOf.js +8 -0
  68. package/lib/indexer/specOf.js.map +1 -0
  69. package/lib/indexer/staticIndexer.d.ts +1 -0
  70. package/lib/indexer/staticIndexer.js +18 -0
  71. package/lib/indexer/staticIndexer.js.map +1 -0
  72. package/lib/indexer/supertypesOf.d.ts +4 -0
  73. package/lib/indexer/supertypesOf.js +48 -0
  74. package/lib/indexer/supertypesOf.js.map +1 -0
  75. package/lib/lsp/DocumentSymbolResult.d.ts +3 -0
  76. package/lib/lsp/DocumentSymbolResult.js +3 -0
  77. package/lib/lsp/DocumentSymbolResult.js.map +1 -0
  78. package/lib/lsp/IDiagnostic.d.ts +8 -0
  79. package/lib/lsp/IDiagnostic.js +3 -0
  80. package/lib/lsp/IDiagnostic.js.map +1 -0
  81. package/lib/lsp/IDocumentSymbol.d.ts +9 -0
  82. package/lib/lsp/IDocumentSymbol.js +3 -0
  83. package/lib/lsp/IDocumentSymbol.js.map +1 -0
  84. package/lib/lsp/ILocation.d.ts +5 -0
  85. package/lib/lsp/ILocation.js +3 -0
  86. package/lib/lsp/ILocation.js.map +1 -0
  87. package/lib/lsp/IPosition.d.ts +4 -0
  88. package/lib/lsp/IPosition.js +3 -0
  89. package/lib/lsp/IPosition.js.map +1 -0
  90. package/lib/lsp/IRange.d.ts +5 -0
  91. package/lib/lsp/IRange.js +3 -0
  92. package/lib/lsp/IRange.js.map +1 -0
  93. package/lib/lsp/ISymbolInformation.d.ts +7 -0
  94. package/lib/lsp/ISymbolInformation.js +3 -0
  95. package/lib/lsp/ISymbolInformation.js.map +1 -0
  96. package/lib/lsp/LspClient.d.ts +17 -0
  97. package/lib/lsp/LspClient.js +140 -0
  98. package/lib/lsp/LspClient.js.map +1 -0
  99. package/lib/lsp/isDocumentSymbol.d.ts +3 -0
  100. package/lib/lsp/isDocumentSymbol.js +7 -0
  101. package/lib/lsp/isDocumentSymbol.js.map +1 -0
  102. package/lib/lsp/types.d.ts +8 -0
  103. package/lib/lsp/types.js +25 -0
  104. package/lib/lsp/types.js.map +1 -0
  105. package/lib/mcp/createServer.d.ts +3 -0
  106. package/lib/mcp/createServer.js +1947 -0
  107. package/lib/mcp/createServer.js.map +1 -0
  108. package/lib/mcp/startServer.d.ts +5 -0
  109. package/lib/mcp/startServer.js +23 -0
  110. package/lib/mcp/startServer.js.map +1 -0
  111. package/lib/model/GraphMemory.d.ts +25 -0
  112. package/lib/model/GraphMemory.js +141 -0
  113. package/lib/model/GraphMemory.js.map +1 -0
  114. package/lib/operations/bound.d.ts +1 -0
  115. package/lib/operations/bound.js +8 -0
  116. package/lib/operations/bound.js.map +1 -0
  117. package/lib/operations/common.d.ts +15 -0
  118. package/lib/operations/common.js +32 -0
  119. package/lib/operations/common.js.map +1 -0
  120. package/lib/operations/compareEdges.d.ts +2 -0
  121. package/lib/operations/compareEdges.js +10 -0
  122. package/lib/operations/compareEdges.js.map +1 -0
  123. package/lib/operations/edgeRank.d.ts +1 -0
  124. package/lib/operations/edgeRank.js +25 -0
  125. package/lib/operations/edgeRank.js.map +1 -0
  126. package/lib/operations/isExecution.d.ts +1 -0
  127. package/lib/operations/isExecution.js +11 -0
  128. package/lib/operations/isExecution.js.map +1 -0
  129. package/lib/operations/isPublicApiNoisePath.d.ts +2 -0
  130. package/lib/operations/isPublicApiNoisePath.js +11 -0
  131. package/lib/operations/isPublicApiNoisePath.js.map +1 -0
  132. package/lib/operations/isStructural.d.ts +1 -0
  133. package/lib/operations/isStructural.js +7 -0
  134. package/lib/operations/isStructural.js.map +1 -0
  135. package/lib/operations/isSupportPath.d.ts +2 -0
  136. package/lib/operations/isSupportPath.js +16 -0
  137. package/lib/operations/isSupportPath.js.map +1 -0
  138. package/lib/operations/isTestPath.d.ts +1 -0
  139. package/lib/operations/isTestPath.js +9 -0
  140. package/lib/operations/isTestPath.js.map +1 -0
  141. package/lib/operations/isTypeEdge.d.ts +1 -0
  142. package/lib/operations/isTypeEdge.js +11 -0
  143. package/lib/operations/isTypeEdge.js.map +1 -0
  144. package/lib/operations/publicEvidence.d.ts +2 -0
  145. package/lib/operations/publicEvidence.js +13 -0
  146. package/lib/operations/publicEvidence.js.map +1 -0
  147. package/lib/operations/referencesFromEdges.d.ts +3 -0
  148. package/lib/operations/referencesFromEdges.js +38 -0
  149. package/lib/operations/referencesFromEdges.js.map +1 -0
  150. package/lib/operations/resolveHandle.d.ts +6 -0
  151. package/lib/operations/resolveHandle.js +28 -0
  152. package/lib/operations/resolveHandle.js.map +1 -0
  153. package/lib/operations/resultGuide.d.ts +1 -0
  154. package/lib/operations/resultGuide.js +7 -0
  155. package/lib/operations/resultGuide.js.map +1 -0
  156. package/lib/operations/resultNext.d.ts +2 -0
  157. package/lib/operations/resultNext.js +7 -0
  158. package/lib/operations/resultNext.js.map +1 -0
  159. package/lib/operations/runDetails.d.ts +8 -0
  160. package/lib/operations/runDetails.js +190 -0
  161. package/lib/operations/runDetails.js.map +1 -0
  162. package/lib/operations/runEntrypoints.d.ts +9 -0
  163. package/lib/operations/runEntrypoints.js +122 -0
  164. package/lib/operations/runEntrypoints.js.map +1 -0
  165. package/lib/operations/runLookup.d.ts +10 -0
  166. package/lib/operations/runLookup.js +229 -0
  167. package/lib/operations/runLookup.js.map +1 -0
  168. package/lib/operations/runOverview.d.ts +10 -0
  169. package/lib/operations/runOverview.js +142 -0
  170. package/lib/operations/runOverview.js.map +1 -0
  171. package/lib/operations/runTour.d.ts +8 -0
  172. package/lib/operations/runTour.js +539 -0
  173. package/lib/operations/runTour.js.map +1 -0
  174. package/lib/operations/runTrace.d.ts +10 -0
  175. package/lib/operations/runTrace.js +283 -0
  176. package/lib/operations/runTrace.js.map +1 -0
  177. package/lib/operations/signatureOf.d.ts +2 -0
  178. package/lib/operations/signatureOf.js +45 -0
  179. package/lib/operations/signatureOf.js.map +1 -0
  180. package/lib/operations/subwords.d.ts +1 -0
  181. package/lib/operations/subwords.js +12 -0
  182. package/lib/operations/subwords.js.map +1 -0
  183. package/lib/operations/summaryOf.d.ts +2 -0
  184. package/lib/operations/summaryOf.js +24 -0
  185. package/lib/operations/summaryOf.js.map +1 -0
  186. package/lib/runGraph.d.ts +1 -0
  187. package/lib/runGraph.js +165 -0
  188. package/lib/runGraph.js.map +1 -0
  189. package/lib/structures/GraphEdgeKind.d.ts +10 -0
  190. package/lib/structures/GraphEdgeKind.js +3 -0
  191. package/lib/structures/GraphEdgeKind.js.map +1 -0
  192. package/lib/structures/GraphLanguage.d.ts +2 -0
  193. package/lib/structures/GraphLanguage.js +3 -0
  194. package/lib/structures/GraphLanguage.js.map +1 -0
  195. package/lib/structures/GraphNodeKind.d.ts +11 -0
  196. package/lib/structures/GraphNodeKind.js +3 -0
  197. package/lib/structures/GraphNodeKind.js.map +1 -0
  198. package/lib/structures/IGraphDecorator.d.ts +22 -0
  199. package/lib/structures/IGraphDecorator.js +3 -0
  200. package/lib/structures/IGraphDecorator.js.map +1 -0
  201. package/lib/structures/IGraphDetails.d.ts +126 -0
  202. package/lib/structures/IGraphDetails.js +3 -0
  203. package/lib/structures/IGraphDetails.js.map +1 -0
  204. package/lib/structures/IGraphDiagnostic.d.ts +23 -0
  205. package/lib/structures/IGraphDiagnostic.js +3 -0
  206. package/lib/structures/IGraphDiagnostic.js.map +1 -0
  207. package/lib/structures/IGraphDump.d.ts +37 -0
  208. package/lib/structures/IGraphDump.js +3 -0
  209. package/lib/structures/IGraphDump.js.map +1 -0
  210. package/lib/structures/IGraphEdge.d.ts +20 -0
  211. package/lib/structures/IGraphEdge.js +3 -0
  212. package/lib/structures/IGraphEdge.js.map +1 -0
  213. package/lib/structures/IGraphEntrypoints.d.ts +57 -0
  214. package/lib/structures/IGraphEntrypoints.js +3 -0
  215. package/lib/structures/IGraphEntrypoints.js.map +1 -0
  216. package/lib/structures/IGraphEscape.d.ts +40 -0
  217. package/lib/structures/IGraphEscape.js +3 -0
  218. package/lib/structures/IGraphEscape.js.map +1 -0
  219. package/lib/structures/IGraphEvidence.d.ts +24 -0
  220. package/lib/structures/IGraphEvidence.js +3 -0
  221. package/lib/structures/IGraphEvidence.js.map +1 -0
  222. package/lib/structures/IGraphLookup.d.ts +66 -0
  223. package/lib/structures/IGraphLookup.js +3 -0
  224. package/lib/structures/IGraphLookup.js.map +1 -0
  225. package/lib/structures/IGraphNext.d.ts +15 -0
  226. package/lib/structures/IGraphNext.js +3 -0
  227. package/lib/structures/IGraphNext.js.map +1 -0
  228. package/lib/structures/IGraphNode.d.ts +62 -0
  229. package/lib/structures/IGraphNode.js +3 -0
  230. package/lib/structures/IGraphNode.js.map +1 -0
  231. package/lib/structures/IGraphOverview.d.ts +100 -0
  232. package/lib/structures/IGraphOverview.js +3 -0
  233. package/lib/structures/IGraphOverview.js.map +1 -0
  234. package/lib/structures/IGraphTour.d.ts +54 -0
  235. package/lib/structures/IGraphTour.js +3 -0
  236. package/lib/structures/IGraphTour.js.map +1 -0
  237. package/lib/structures/IGraphTrace.d.ts +126 -0
  238. package/lib/structures/IGraphTrace.js +3 -0
  239. package/lib/structures/IGraphTrace.js.map +1 -0
  240. package/lib/structures/ISamchonGraphApplication.d.ts +162 -0
  241. package/lib/structures/ISamchonGraphApplication.js +3 -0
  242. package/lib/structures/ISamchonGraphApplication.js.map +1 -0
  243. package/lib/structures/index.d.ts +18 -0
  244. package/lib/structures/index.js +35 -0
  245. package/lib/structures/index.js.map +1 -0
  246. package/lib/structures.d.ts +1 -0
  247. package/lib/structures.js +18 -0
  248. package/lib/structures.js.map +1 -0
  249. package/lib/utils/DEFAULT_IGNORES.d.ts +1 -0
  250. package/lib/utils/DEFAULT_IGNORES.js +39 -0
  251. package/lib/utils/DEFAULT_IGNORES.js.map +1 -0
  252. package/lib/utils/IWalkOptions.d.ts +5 -0
  253. package/lib/utils/IWalkOptions.js +3 -0
  254. package/lib/utils/IWalkOptions.js.map +1 -0
  255. package/lib/utils/basename.d.ts +1 -0
  256. package/lib/utils/basename.js +10 -0
  257. package/lib/utils/basename.js.map +1 -0
  258. package/lib/utils/dirname.d.ts +1 -0
  259. package/lib/utils/dirname.js +10 -0
  260. package/lib/utils/dirname.js.map +1 -0
  261. package/lib/utils/fileFromUri.d.ts +1 -0
  262. package/lib/utils/fileFromUri.js +20 -0
  263. package/lib/utils/fileFromUri.js.map +1 -0
  264. package/lib/utils/fileUri.d.ts +1 -0
  265. package/lib/utils/fileUri.js +19 -0
  266. package/lib/utils/fileUri.js.map +1 -0
  267. package/lib/utils/fs.d.ts +6 -0
  268. package/lib/utils/fs.js +23 -0
  269. package/lib/utils/fs.js.map +1 -0
  270. package/lib/utils/isSubPath.d.ts +1 -0
  271. package/lib/utils/isSubPath.js +15 -0
  272. package/lib/utils/isSubPath.js.map +1 -0
  273. package/lib/utils/normalizePath.d.ts +1 -0
  274. package/lib/utils/normalizePath.js +7 -0
  275. package/lib/utils/normalizePath.js.map +1 -0
  276. package/lib/utils/path.d.ts +7 -0
  277. package/lib/utils/path.js +24 -0
  278. package/lib/utils/path.js.map +1 -0
  279. package/lib/utils/projectRelative.d.ts +1 -0
  280. package/lib/utils/projectRelative.js +9 -0
  281. package/lib/utils/projectRelative.js.map +1 -0
  282. package/lib/utils/readLines.d.ts +1 -0
  283. package/lib/utils/readLines.js +8 -0
  284. package/lib/utils/readLines.js.map +1 -0
  285. package/lib/utils/readText.d.ts +1 -0
  286. package/lib/utils/readText.js +17 -0
  287. package/lib/utils/readText.js.map +1 -0
  288. package/lib/utils/relativePath.d.ts +1 -0
  289. package/lib/utils/relativePath.js +12 -0
  290. package/lib/utils/relativePath.js.map +1 -0
  291. package/lib/utils/walkSourceFiles.d.ts +2 -0
  292. package/lib/utils/walkSourceFiles.js +44 -0
  293. package/lib/utils/walkSourceFiles.js.map +1 -0
  294. package/package.json +55 -0
  295. package/src/AsyncSamchonGraphSource.ts +5 -0
  296. package/src/SamchonGraphApplication.ts +74 -0
  297. package/src/SamchonGraphSource.ts +3 -0
  298. package/src/application.ts +3 -0
  299. package/src/bin.ts +6 -0
  300. package/src/index.ts +13 -0
  301. package/src/indexer/IBuildGraphOptions.ts +42 -0
  302. package/src/indexer/IIndexerResult.ts +6 -0
  303. package/src/indexer/ILanguageSpec.ts +11 -0
  304. package/src/indexer/LANGUAGE_SPECS.ts +112 -0
  305. package/src/indexer/allExtensions.ts +12 -0
  306. package/src/indexer/buildGraph.ts +10 -0
  307. package/src/indexer/buildGraphDump.ts +29 -0
  308. package/src/indexer/buildLspGraph.ts +710 -0
  309. package/src/indexer/buildStaticGraph.ts +507 -0
  310. package/src/indexer/decoratorsAbove.ts +9 -0
  311. package/src/indexer/languageOf.ts +13 -0
  312. package/src/indexer/languages.ts +5 -0
  313. package/src/indexer/lspIndexer.ts +1 -0
  314. package/src/indexer/overrideEdges.ts +42 -0
  315. package/src/indexer/resolveType.ts +14 -0
  316. package/src/indexer/specOf.ts +7 -0
  317. package/src/indexer/staticIndexer.ts +1 -0
  318. package/src/indexer/supertypesOf.ts +43 -0
  319. package/src/lsp/DocumentSymbolResult.ts +4 -0
  320. package/src/lsp/IDiagnostic.ts +9 -0
  321. package/src/lsp/IDocumentSymbol.ts +10 -0
  322. package/src/lsp/ILocation.ts +6 -0
  323. package/src/lsp/IPosition.ts +4 -0
  324. package/src/lsp/IRange.ts +6 -0
  325. package/src/lsp/ISymbolInformation.ts +8 -0
  326. package/src/lsp/LspClient.ts +165 -0
  327. package/src/lsp/isDocumentSymbol.ts +8 -0
  328. package/src/lsp/types.ts +8 -0
  329. package/src/mcp/createServer.ts +23 -0
  330. package/src/mcp/startServer.ts +23 -0
  331. package/src/model/GraphMemory.ts +165 -0
  332. package/src/operations/bound.ts +9 -0
  333. package/src/operations/common.ts +15 -0
  334. package/src/operations/compareEdges.ts +10 -0
  335. package/src/operations/edgeRank.ts +23 -0
  336. package/src/operations/isExecution.ts +9 -0
  337. package/src/operations/isPublicApiNoisePath.ts +10 -0
  338. package/src/operations/isStructural.ts +3 -0
  339. package/src/operations/isSupportPath.ts +16 -0
  340. package/src/operations/isTestPath.ts +7 -0
  341. package/src/operations/isTypeEdge.ts +9 -0
  342. package/src/operations/publicEvidence.ts +11 -0
  343. package/src/operations/referencesFromEdges.ts +37 -0
  344. package/src/operations/resolveHandle.ts +27 -0
  345. package/src/operations/resultGuide.ts +3 -0
  346. package/src/operations/resultNext.ts +9 -0
  347. package/src/operations/runDetails.ts +240 -0
  348. package/src/operations/runEntrypoints.ts +153 -0
  349. package/src/operations/runLookup.ts +269 -0
  350. package/src/operations/runOverview.ts +158 -0
  351. package/src/operations/runTour.ts +582 -0
  352. package/src/operations/runTrace.ts +339 -0
  353. package/src/operations/signatureOf.ts +40 -0
  354. package/src/operations/subwords.ts +8 -0
  355. package/src/operations/summaryOf.ts +21 -0
  356. package/src/runGraph.ts +144 -0
  357. package/src/structures/GraphEdgeKind.ts +24 -0
  358. package/src/structures/GraphLanguage.ts +21 -0
  359. package/src/structures/GraphNodeKind.ts +27 -0
  360. package/src/structures/IGraphDecorator.ts +25 -0
  361. package/src/structures/IGraphDetails.ts +153 -0
  362. package/src/structures/IGraphDiagnostic.ts +29 -0
  363. package/src/structures/IGraphDump.ts +45 -0
  364. package/src/structures/IGraphEdge.ts +24 -0
  365. package/src/structures/IGraphEntrypoints.ts +70 -0
  366. package/src/structures/IGraphEscape.ts +49 -0
  367. package/src/structures/IGraphEvidence.ts +29 -0
  368. package/src/structures/IGraphLookup.ts +80 -0
  369. package/src/structures/IGraphNext.ts +23 -0
  370. package/src/structures/IGraphNode.ts +76 -0
  371. package/src/structures/IGraphOverview.ts +121 -0
  372. package/src/structures/IGraphTour.ts +68 -0
  373. package/src/structures/IGraphTrace.ts +154 -0
  374. package/src/structures/ISamchonGraphApplication.ts +186 -0
  375. package/src/structures/index.ts +18 -0
  376. package/src/structures.ts +1 -0
  377. package/src/utils/DEFAULT_IGNORES.ts +35 -0
  378. package/src/utils/IWalkOptions.ts +5 -0
  379. package/src/utils/basename.ts +7 -0
  380. package/src/utils/dirname.ts +7 -0
  381. package/src/utils/fileFromUri.ts +14 -0
  382. package/src/utils/fileUri.ts +13 -0
  383. package/src/utils/fs.ts +6 -0
  384. package/src/utils/isSubPath.ts +9 -0
  385. package/src/utils/normalizePath.ts +3 -0
  386. package/src/utils/path.ts +7 -0
  387. package/src/utils/projectRelative.ts +6 -0
  388. package/src/utils/readLines.ts +5 -0
  389. package/src/utils/readText.ts +10 -0
  390. package/src/utils/relativePath.ts +7 -0
  391. package/src/utils/walkSourceFiles.ts +35 -0
@@ -0,0 +1,22 @@
1
+ import { IGraphEvidence } from "./IGraphEvidence";
2
+ /**
3
+ * A decorator as written on a declaration, carried on the decorated
4
+ * {@link IGraphNode}'s `decorators`.
5
+ *
6
+ * The graph reports the decorator faithfully rather than interpreting any
7
+ * framework's convention: the `name` is the decorator as written (`Controller`,
8
+ * `Get`, `TypedRoute.Get`, ...), and statically resolvable literal arguments
9
+ * are preserved so a consumer can apply its own meaning without re-parsing
10
+ * source.
11
+ */
12
+ export interface IGraphDecorator {
13
+ /**
14
+ * The decorator name as written, qualified through its access path:
15
+ * `Controller`, `Get`, `TypedRoute.Get`, `MessagePattern`.
16
+ */
17
+ name: string;
18
+ /** The literal call arguments, in source order. Empty for a bare decorator. */
19
+ arguments?: string[];
20
+ /** The decorator expression span, for display. */
21
+ evidence?: IGraphEvidence;
22
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphDecorator.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphDecorator.js","sourceRoot":"","sources":["../../src/structures/IGraphDecorator.ts"],"names":[],"mappings":""}
@@ -0,0 +1,126 @@
1
+ import { IGraphDecorator } from "./IGraphDecorator";
2
+ import { IGraphDiagnostic } from "./IGraphDiagnostic";
3
+ import { IGraphEvidence } from "./IGraphEvidence";
4
+ import { IGraphNext } from "./IGraphNext";
5
+ import { IGraphOverview } from "./IGraphOverview";
6
+ /**
7
+ * The source-free facts for a few selected handles.
8
+ *
9
+ * This is not a file reader. It returns signatures, member outlines, direct
10
+ * calls, direct types, implementation candidates, dependency summaries, and
11
+ * sourceSpan citation anchors.
12
+ */
13
+ export interface IGraphDetails {
14
+ /** Discriminator for selected symbol inspection. */
15
+ type: "details";
16
+ /** Selected node facts, in the same order as resolved handles when possible. */
17
+ nodes: IGraphDetails.INode[];
18
+ /** Handles that resolved to no node, or that were ambiguous. */
19
+ unknown: string[];
20
+ /** How to use this source-free result next. */
21
+ next: IGraphNext;
22
+ /** Human-readable compatibility note mirroring `next`. */
23
+ guide: string;
24
+ }
25
+ export declare namespace IGraphDetails {
26
+ /** Which selected handles to inspect, and how much of each to return. */
27
+ interface IRequest {
28
+ /** Discriminator for selected symbol inspection. */
29
+ type: "details";
30
+ /**
31
+ * Node ids from another tool, or dotted symbol handles such as
32
+ * `OrderService.create`. Pass the few handles you need for source-free
33
+ * details. Prefer one to three handles. Use `trace` when you need a path
34
+ * instead of widening this call.
35
+ */
36
+ handles: string[];
37
+ /**
38
+ * Also list each node's direct dependencies and dependents (the symbols it
39
+ * uses and the symbols that use it). The list is capped; raise
40
+ * `neighborLimit` when the first slice is truncated and the missing
41
+ * relation is named. This remains a relationship summary, not a file body.
42
+ *
43
+ * @default false
44
+ */
45
+ neighbors?: boolean;
46
+ /**
47
+ * Maximum dependencies and dependents to return per side when
48
+ * `neighbors:true`.
49
+ *
50
+ * Prefer the default. Values above a few neighbors are usually overfetch;
51
+ * call `trace` for flow instead.
52
+ *
53
+ * @default 2
54
+ */
55
+ neighborLimit?: number;
56
+ /**
57
+ * Maximum owned members to return for a container or object literal. Raise
58
+ * only when the first outline is truncated and the missing member is
59
+ * named.
60
+ *
61
+ * @default 6
62
+ */
63
+ memberLimit?: number;
64
+ /**
65
+ * Maximum direct execution and type references to return per group. Raise
66
+ * only when the first dependency slice is truncated and the missing
67
+ * dependency is named.
68
+ *
69
+ * @default 1
70
+ */
71
+ dependencyLimit?: number;
72
+ /**
73
+ * Include dependency-boundary references from bundled libraries. Leave
74
+ * false for source-architecture answers; enable only when external
75
+ * type/API boundaries are the question.
76
+ *
77
+ * @default false
78
+ */
79
+ includeExternal?: boolean;
80
+ }
81
+ /** One inspected node: its declared shape and graph coordinates. */
82
+ interface INode extends IGraphOverview.INode {
83
+ /** The declaration signature: its first line(s) up to the body. */
84
+ signature?: string;
85
+ /** Decorators written on this declaration, when any. */
86
+ decorators?: IGraphDecorator[];
87
+ /** Assigned implementation span, when source comes from one. */
88
+ implementation?: IGraphEvidence;
89
+ /**
90
+ * For a container or object-literal variable: the owned symbol or top-level
91
+ * property outline a consumer reaches for, without bodies.
92
+ */
93
+ members?: IMember[];
94
+ /** Direct execution dependencies in source order, with edge evidence. */
95
+ calls?: IReference[];
96
+ /** Direct type dependencies in source order, with edge evidence. */
97
+ types?: IReference[];
98
+ /** Symbols this node uses (outgoing dependency edges). */
99
+ dependsOn?: IReference[];
100
+ /** Symbols that use this node (incoming dependency edges). */
101
+ dependedOnBy?: IReference[];
102
+ /** Diagnostics reported on this node's declaration, when any. */
103
+ diagnostics?: IGraphDiagnostic[];
104
+ }
105
+ /** One member of a container node, with its signature but not its body. */
106
+ interface IMember {
107
+ /** Member name, qualified when the graph records an owner-qualified handle. */
108
+ name: string;
109
+ /** Member kind (`method`, `property`, `class`, ...). */
110
+ kind: string;
111
+ /** 1-based declaration line, when known. */
112
+ line?: number;
113
+ /** The member's declaration signature. */
114
+ signature?: string;
115
+ }
116
+ /** A dependency neighbor of an inspected node and the edge that links them. */
117
+ interface IReference extends IGraphOverview.INode {
118
+ /** The edge kind connecting the two (`calls`, `type_ref`, ...). */
119
+ relation: string;
120
+ /**
121
+ * Source span for the expression that produced this relationship. It is
122
+ * repository evidence for the edge, not a file-read instruction.
123
+ */
124
+ evidence?: IGraphEvidence;
125
+ }
126
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphDetails.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphDetails.js","sourceRoot":"","sources":["../../src/structures/IGraphDetails.ts"],"names":[],"mappings":""}
@@ -0,0 +1,23 @@
1
+ import { IGraphEvidence } from "./IGraphEvidence";
2
+ /**
3
+ * A language server or plugin diagnostic, fused onto the graph so an edit-triage
4
+ * query can name the owning symbol of an error.
5
+ *
6
+ * The language server's semantic pass contributes numeric-coded diagnostics;
7
+ * lint rules and transform plugins (typia, nestia, …) contribute `plugin`/`lint`
8
+ * findings whose `code` is a string.
9
+ */
10
+ export interface IGraphDiagnostic {
11
+ /** Project-relative path of the file the diagnostic is reported in. */
12
+ file: string;
13
+ /** The human-readable diagnostic message. */
14
+ message: string;
15
+ /** Severity, when the producer distinguishes it. */
16
+ severity: "error" | "warning" | "information" | "hint";
17
+ /** Which producer emitted the diagnostic. */
18
+ source?: string;
19
+ /** Numeric language server code, or string rule id for a lint/plugin finding. */
20
+ code?: string | number;
21
+ /** The source span the diagnostic was attributed to, when resolved. */
22
+ evidence?: IGraphEvidence;
23
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphDiagnostic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphDiagnostic.js","sourceRoot":"","sources":["../../src/structures/IGraphDiagnostic.ts"],"names":[],"mappings":""}
@@ -0,0 +1,37 @@
1
+ import { GraphLanguage } from "./GraphLanguage";
2
+ import { IGraphDiagnostic } from "./IGraphDiagnostic";
3
+ import { IGraphEdge } from "./IGraphEdge";
4
+ import { IGraphNode } from "./IGraphNode";
5
+ /**
6
+ * The whole-graph export `graph dump` writes and the MCP server loads — the
7
+ * wire contract between the fact-builder and the graph engine.
8
+ *
9
+ * It is the complete graph with none of the per-response caps the MCP tools
10
+ * apply: every node and edge the build resolved. The server parses it once at
11
+ * startup (validated) into an in-memory resident graph and answers every
12
+ * tool call from that warm model; the bundled 3D viewer reduces the same dump.
13
+ *
14
+ * Paths in `project` are absolute; `file` fields on nodes, edges, and
15
+ * diagnostics are project-relative.
16
+ */
17
+ export interface IGraphDump {
18
+ /** Absolute path of the project root the graph was built for. */
19
+ project: string;
20
+ /** The source languages present in this dump. */
21
+ languages: GraphLanguage[];
22
+ /** ISO timestamp of when the dump was generated. */
23
+ generatedAt: string;
24
+ /** Which indexing strategy produced the graph. */
25
+ indexer: "lsp" | "static" | "hybrid";
26
+ /** Every node the build recorded. */
27
+ nodes: IGraphNode[];
28
+ /** Every edge the build resolved. */
29
+ edges: IGraphEdge[];
30
+ /**
31
+ * Fused language server and plugin diagnostics, when diagnostics were
32
+ * collected. Absent when the dump was built without a diagnostics pass.
33
+ */
34
+ diagnostics?: IGraphDiagnostic[];
35
+ /** Non-fatal problems encountered while building the graph. */
36
+ warnings?: string[];
37
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphDump.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphDump.js","sourceRoot":"","sources":["../../src/structures/IGraphDump.ts"],"names":[],"mappings":""}
@@ -0,0 +1,20 @@
1
+ import { GraphEdgeKind } from "./GraphEdgeKind";
2
+ import { IGraphEvidence } from "./IGraphEvidence";
3
+ /**
4
+ * A directed relationship from one {@link IGraphNode} to another, both named
5
+ * by `id`. The triple `(from, to, kind)` is unique; a repeated relationship
6
+ * keeps the first source-order evidence.
7
+ *
8
+ * Every edge is resolved by the language server, so there is no per-edge trust
9
+ * flag to carry — the whole graph is language-server-resolved fact.
10
+ */
11
+ export interface IGraphEdge {
12
+ /** Node id the relationship originates from. */
13
+ from: string;
14
+ /** Node id the relationship points to. */
15
+ to: string;
16
+ /** The relationship kind. */
17
+ kind: GraphEdgeKind;
18
+ /** The source expression that produced the edge, for display and expansion. */
19
+ evidence?: IGraphEvidence;
20
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphEdge.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphEdge.js","sourceRoot":"","sources":["../../src/structures/IGraphEdge.ts"],"names":[],"mappings":""}
@@ -0,0 +1,57 @@
1
+ import { GraphLanguage } from "./GraphLanguage";
2
+ import { IGraphNext } from "./IGraphNext";
3
+ import { IGraphOverview } from "./IGraphOverview";
4
+ /** The first compact source-free handle list for a code question. */
5
+ export interface IGraphEntrypoints {
6
+ /** Discriminator for first-pass question indexing. */
7
+ type: "entrypoints";
8
+ /** The original question/search phrase the entrypoints were built for. */
9
+ query: string;
10
+ /** Ranked symbols relevant to the query. */
11
+ ranked: IGraphEntrypoints.IEntrypoint[];
12
+ /** Code handles written directly in the query, resolved when possible. */
13
+ mentions: IGraphOverview.INode[];
14
+ /** Direct dependency context for the resolved mentions and highest hits. */
15
+ dependencyOrientation: string[];
16
+ /** How to use this source-free result next. */
17
+ next: IGraphNext;
18
+ /** Human-readable compatibility note mirroring `next`. */
19
+ guide: string;
20
+ }
21
+ export declare namespace IGraphEntrypoints {
22
+ /**
23
+ * Ask for first handles when the question is narrow but the symbol is not yet
24
+ * known. For broad tours, read-next, architecture, or multi-phase runtime
25
+ * flow, use `tour` instead of decomposing the answer into entrypoints and
26
+ * follow-up calls.
27
+ */
28
+ interface IRequest {
29
+ /** Discriminator for first-pass question indexing. */
30
+ type: "entrypoints";
31
+ /**
32
+ * A natural code question or search phrase. Mix prose with code handles,
33
+ * for example `how Repository.find loads relations` or
34
+ * `SelectQueryBuilder.setFindOptions join aliases`. Keep this close to the
35
+ * user's question; do not turn it into a broad keyword dump.
36
+ */
37
+ query: string;
38
+ /** Target source language for the entrypoints. */
39
+ language?: GraphLanguage;
40
+ /**
41
+ * Maximum ranked hits to return.
42
+ *
43
+ * Prefer the default. Raise only when the first result was truncated and
44
+ * the missing handle is named.
45
+ *
46
+ * @default 4
47
+ */
48
+ limit?: number;
49
+ }
50
+ /** One ranked search hit. */
51
+ interface IEntrypoint extends IGraphOverview.INode {
52
+ /** Relative relevance; higher is a better match. */
53
+ score: number;
54
+ /** Why this entrypoint was ranked for the query. */
55
+ reason: string;
56
+ }
57
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphEntrypoints.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphEntrypoints.js","sourceRoot":"","sources":["../../src/structures/IGraphEntrypoints.ts"],"names":[],"mappings":""}
@@ -0,0 +1,40 @@
1
+ import { IGraphNext } from "./IGraphNext";
2
+ /** The no-op result for when graph is not the useful next evidence source. */
3
+ export interface IGraphEscape {
4
+ /** Discriminator for the no-op escape route. */
5
+ type: "escape";
6
+ /** Always true so callers can distinguish an intentional no-op. */
7
+ skipped: true;
8
+ /** Why no graph operation should run. */
9
+ reason: string;
10
+ /** Optional note about the next non-graph step. */
11
+ nextStep?: string;
12
+ /** How to proceed after skipping graph work. */
13
+ next: IGraphNext;
14
+ /** Human-readable compatibility note mirroring `next`. */
15
+ guide: string;
16
+ }
17
+ export declare namespace IGraphEscape {
18
+ /** Skip graph work when graph evidence is unnecessary or exhausted. */
19
+ interface IRequest {
20
+ /** Discriminator for the no-op escape route. */
21
+ type: "escape";
22
+ /**
23
+ * Why no graph operation should run.
24
+ *
25
+ * Use this only when the next evidence is outside the indexed code
26
+ * graph: package scripts, config files, generated output, prose docs, exact
27
+ * text, or exact source body text. Name the smallest returned sourceSpan
28
+ * when source body text is truly required.
29
+ */
30
+ reason: string;
31
+ /**
32
+ * The final non-graph note, if useful.
33
+ *
34
+ * Keep this short. Examples: `answer from the prior graph result`, `source
35
+ * body needed at returned sourceSpan`, or `ask the user for a concrete
36
+ * symbol`.
37
+ */
38
+ nextStep?: string;
39
+ }
40
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphEscape.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphEscape.js","sourceRoot":"","sources":["../../src/structures/IGraphEscape.ts"],"names":[],"mappings":""}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * A source location that grounds a node or edge in real code: the declaration
3
+ * span for a node, or the expression range that produced an edge.
4
+ *
5
+ * Evidence is display and grounding only; it is never identity. A node's id is
6
+ * position-invariant (see {@link IGraphNode}), so an edit that shifts a span
7
+ * does not re-key anything. `startLine`/`startCol` are 1-based. MCP output
8
+ * keeps evidence as coordinates; consumers can read the file themselves when
9
+ * they truly need source text.
10
+ */
11
+ export interface IGraphEvidence {
12
+ /** Project-relative path of the file the span lives in. */
13
+ file: string;
14
+ /** 1-based line where the span starts. */
15
+ startLine: number;
16
+ /** 1-based column where the span starts, when known. */
17
+ startCol?: number;
18
+ /** 1-based line where the span ends, when it differs from `startLine`. */
19
+ endLine?: number;
20
+ /** 1-based column where the span ends, when known. */
21
+ endCol?: number;
22
+ /** The source text of the span, when captured. */
23
+ text?: string;
24
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphEvidence.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphEvidence.js","sourceRoot":"","sources":["../../src/structures/IGraphEvidence.ts"],"names":[],"mappings":""}
@@ -0,0 +1,66 @@
1
+ import { GraphLanguage } from "./GraphLanguage";
2
+ import { GraphNodeKind } from "./GraphNodeKind";
3
+ import { IGraphDecorator } from "./IGraphDecorator";
4
+ import { IGraphNext } from "./IGraphNext";
5
+ import { IGraphOverview } from "./IGraphOverview";
6
+ /** Targeted symbol lookup when a concrete name or handle is being resolved. */
7
+ export interface IGraphLookup {
8
+ /** Discriminator for targeted symbol lookup. */
9
+ type: "lookup";
10
+ /** Ranked symbol matches for the query. */
11
+ hits: IGraphLookup.IHit[];
12
+ /** Query terms that matched nothing. */
13
+ unknown?: string[];
14
+ /** How to use this source-free result next. */
15
+ next: IGraphNext;
16
+ /** Human-readable compatibility note mirroring `next`. */
17
+ guide: string;
18
+ }
19
+ export declare namespace IGraphLookup {
20
+ /** Find a concrete class, method, function, property, type, or dotted handle. */
21
+ interface IRequest {
22
+ /** Discriminator for targeted symbol lookup. */
23
+ type: "lookup";
24
+ /**
25
+ * What to find, in natural language and code vocabulary mixed freely: a
26
+ * symbol name, a dotted member (`Service.create`), or a short phrase
27
+ * (`request handler`). Exact names are not required, but this is not a
28
+ * second broad entrypoints call. Use it when a named handle is missing or
29
+ * ambiguous.
30
+ */
31
+ query: string;
32
+ /** Restrict hits to this language. */
33
+ language?: GraphLanguage;
34
+ /** Restrict hits to this declaration kind. */
35
+ kind?: GraphNodeKind;
36
+ /**
37
+ * Maximum hits to return.
38
+ *
39
+ * Prefer the default. Large hit lists usually mean the query is too broad;
40
+ * refine the name instead of raising this.
41
+ *
42
+ * @default 5
43
+ */
44
+ limit?: number;
45
+ /**
46
+ * Include dependency-boundary declarations from bundled libraries. Leave
47
+ * false for project-source answers; enable only when external type/API
48
+ * boundaries are the question.
49
+ *
50
+ * @default false
51
+ */
52
+ includeExternal?: boolean;
53
+ }
54
+ /** One ranked hit with a handle to follow via `details` or `trace`. */
55
+ interface IHit extends IGraphOverview.INode {
56
+ /** Relative relevance; higher is a better match. */
57
+ score: number;
58
+ /**
59
+ * The hit's declaration signature, so you can often answer without
60
+ * requesting details.
61
+ */
62
+ signature?: string;
63
+ /** Decorators written on this declaration, when any. */
64
+ decorators?: IGraphDecorator[];
65
+ }
66
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphLookup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphLookup.js","sourceRoot":"","sources":["../../src/structures/IGraphLookup.ts"],"names":[],"mappings":""}
@@ -0,0 +1,15 @@
1
+ /** The required next step from a language-server-derived graph result. */
2
+ export interface IGraphNext {
3
+ /**
4
+ * Answer, continue graph inspection, leave graph, or clarify.
5
+ *
6
+ * `answer` means the returned graph result already carries the evidence
7
+ * contract for the current question, even when the slice is capped. Do not
8
+ * call graph again or read files to re-check or complete it.
9
+ */
10
+ action: "answer" | "inspect" | "outside" | "clarify";
11
+ /** Smallest graph request type to use when `action` is `inspect`. */
12
+ request?: "entrypoints" | "lookup" | "trace" | "details" | "overview" | "tour";
13
+ /** Why the returned graph evidence supports that action. */
14
+ reason: string;
15
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphNext.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphNext.js","sourceRoot":"","sources":["../../src/structures/IGraphNext.ts"],"names":[],"mappings":""}
@@ -0,0 +1,62 @@
1
+ import { GraphLanguage } from "./GraphLanguage";
2
+ import { GraphNodeKind } from "./GraphNodeKind";
3
+ import { IGraphDecorator } from "./IGraphDecorator";
4
+ import { IGraphEvidence } from "./IGraphEvidence";
5
+ /**
6
+ * One node in the graph: a declared symbol or a structural container (file,
7
+ * package).
8
+ *
9
+ * The `id` is position-invariant: `path#qualifiedName:kind` (e.g.
10
+ * `src/order.ts#OrderService.create:method`), so inserting a line above a
11
+ * declaration does not re-key it. Line and span live in `evidence` and are
12
+ * never part of identity.
13
+ */
14
+ export interface IGraphNode {
15
+ /** Position-invariant identity (see the interface doc for the id grammar). */
16
+ id: string;
17
+ /** What this node represents. */
18
+ kind: GraphNodeKind;
19
+ /** The source language this node was declared in. */
20
+ language: GraphLanguage;
21
+ /** The simple, unqualified declared name (`create`, `OrderService`, `App`). */
22
+ name: string;
23
+ /**
24
+ * The owner-qualified name, when the node lives inside another declaration:
25
+ * `OrderService.create`, `Shopping.ISale`. Absent for a top-level
26
+ * declaration.
27
+ */
28
+ qualifiedName?: string;
29
+ /** Project-relative path of the file that declares this node. */
30
+ file: string;
31
+ /**
32
+ * True when the declaration lives outside the workspace (a dependency). The
33
+ * graph keeps the leaf as a named endpoint but does not walk into its
34
+ * internals.
35
+ */
36
+ external: boolean;
37
+ /**
38
+ * True when `file` is git-ignored generated code (a Prisma client, a codegen
39
+ * output). Projections desurface these so generated nodes do not bury the
40
+ * authored graph.
41
+ */
42
+ ignored?: boolean;
43
+ /** True when the symbol is part of its module's export surface. */
44
+ exported?: boolean;
45
+ /** The declaration signature, for display. */
46
+ signature?: string;
47
+ /** Declaration modifiers, when the declaration pass recorded any. */
48
+ modifiers?: string[];
49
+ /**
50
+ * The decorators written on this declaration, in source order, when it has
51
+ * any: raw decorator facts (`@Controller`, `@Get`) a consumer can interpret
52
+ * without re-parsing source.
53
+ */
54
+ decorators?: IGraphDecorator[];
55
+ /** The declaration span, for display and signatures. */
56
+ evidence?: IGraphEvidence;
57
+ /**
58
+ * The implementation span when a callable/property member is implemented by a
59
+ * function assignment separate from its declaration.
60
+ */
61
+ implementation?: IGraphEvidence;
62
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=IGraphNode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IGraphNode.js","sourceRoot":"","sources":["../../src/structures/IGraphNode.ts"],"names":[],"mappings":""}