arcvision 0.2.14 → 0.2.15

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 (134) hide show
  1. package/ARCVISION_DIRECTORY_STRUCTURE.md +104 -0
  2. package/CLI_STRUCTURE.md +110 -0
  3. package/CONFIGURATION.md +119 -0
  4. package/IMPLEMENTATION_SUMMARY.md +99 -0
  5. package/README.md +149 -89
  6. package/architecture.authority.ledger.json +46 -0
  7. package/arcvision-0.2.3.tgz +0 -0
  8. package/arcvision-0.2.4.tgz +0 -0
  9. package/arcvision-0.2.5.tgz +0 -0
  10. package/arcvision.context.diff.json +2181 -0
  11. package/arcvision.context.json +1021 -0
  12. package/arcvision.context.v1.json +2163 -0
  13. package/arcvision.context.v2.json +2173 -0
  14. package/arcvision_context/README.md +93 -0
  15. package/arcvision_context/architecture.authority.ledger.json +83 -0
  16. package/arcvision_context/arcvision.context.json +6884 -0
  17. package/debug-cycle-detection.js +56 -0
  18. package/dist/index.js +1626 -25
  19. package/docs/ENHANCED_ACCURACY_SAFETY_PROTOCOL.md +172 -0
  20. package/docs/accuracy-enhancement-artifacts/enhanced-validation-config.json +98 -0
  21. package/docs/acig-robustness-guide.md +164 -0
  22. package/docs/authoritative-gate-implementation.md +168 -0
  23. package/docs/cli-strengthening-summary.md +232 -0
  24. package/docs/invariant-system-summary.md +100 -0
  25. package/docs/invariant-system.md +112 -0
  26. package/generate_large_test.js +42 -0
  27. package/large_test_repo.json +1 -0
  28. package/output1.json +2163 -0
  29. package/output2.json +2163 -0
  30. package/package.json +46 -36
  31. package/scan_calcom_report.txt +0 -0
  32. package/scan_leafmint_report.txt +0 -0
  33. package/scan_output.txt +0 -0
  34. package/scan_trigger_report.txt +0 -0
  35. package/schema/arcvision_context_schema_v1.json +136 -1
  36. package/src/arcvision-guard.js +433 -0
  37. package/src/core/authority-core-detector.js +382 -0
  38. package/src/core/authority-ledger.js +300 -0
  39. package/src/core/blastRadius.js +299 -0
  40. package/src/core/call-resolver.js +196 -0
  41. package/src/core/change-evaluator.js +509 -0
  42. package/src/core/change-evaluator.js.backup +424 -0
  43. package/src/core/change-evaluator.ts +285 -0
  44. package/src/core/chunked-uploader.js +180 -0
  45. package/src/core/circular-dependency-detector.js +404 -0
  46. package/src/core/cli-error-handler.js +458 -0
  47. package/src/core/cli-validator.js +458 -0
  48. package/src/core/compression.js +64 -0
  49. package/src/core/context_builder.js +741 -0
  50. package/src/core/dependency-manager.js +134 -0
  51. package/src/core/di-detector.js +202 -0
  52. package/src/core/diff-analyzer.js +76 -0
  53. package/src/core/example-invariants.js +135 -0
  54. package/src/core/failure-mode-synthesizer.js +341 -0
  55. package/src/core/invariant-analyzer.js +294 -0
  56. package/src/core/invariant-detector.js +548 -0
  57. package/src/core/invariant-enforcer.js +171 -0
  58. package/src/core/invariant-evaluation-utils.js +172 -0
  59. package/src/core/invariant-hooks.js +152 -0
  60. package/src/core/invariant-integration-example.js +186 -0
  61. package/src/core/invariant-registry.js +298 -0
  62. package/src/core/invariant-registry.ts +100 -0
  63. package/src/core/invariant-types.js +66 -0
  64. package/src/core/invariants-index.js +88 -0
  65. package/src/core/method-tracker.js +170 -0
  66. package/src/core/override-handler.js +304 -0
  67. package/src/core/ownership-resolver.js +227 -0
  68. package/src/core/parser-enhanced.js +80 -0
  69. package/src/core/parser.js +610 -0
  70. package/src/core/path-resolver.js +240 -0
  71. package/src/core/pattern-matcher.js +246 -0
  72. package/src/core/progress-tracker.js +71 -0
  73. package/src/core/react-nextjs-detector.js +245 -0
  74. package/src/core/readme-generator.js +167 -0
  75. package/src/core/retry-handler.js +57 -0
  76. package/src/core/scanner.js +289 -0
  77. package/src/core/semantic-analyzer.js +204 -0
  78. package/src/core/structural-context-owner.js +442 -0
  79. package/src/core/symbol-indexer.js +164 -0
  80. package/src/core/tsconfig-utils.js +73 -0
  81. package/src/core/type-analyzer.js +272 -0
  82. package/src/core/watcher.js +18 -0
  83. package/src/core/workspace-scanner.js +88 -0
  84. package/src/engine/context_builder.js +280 -0
  85. package/src/engine/context_sorter.js +59 -0
  86. package/src/engine/context_validator.js +200 -0
  87. package/src/engine/id-generator.js +16 -0
  88. package/src/engine/pass1_facts.js +260 -0
  89. package/src/engine/pass2_semantics.js +333 -0
  90. package/src/engine/pass3_lifter.js +99 -0
  91. package/src/engine/pass4_signals.js +201 -0
  92. package/src/index.js +830 -0
  93. package/src/plugins/express-plugin.js +48 -0
  94. package/src/plugins/plugin-manager.js +58 -0
  95. package/src/plugins/react-plugin.js +54 -0
  96. package/temp_original.js +0 -0
  97. package/test/determinism-test.js +83 -0
  98. package/test-authoritative-context.js +53 -0
  99. package/test-real-authoritative-context.js +118 -0
  100. package/test-upload-enhancements.js +111 -0
  101. package/test_repos/allowed-clean-architecture/.arcvision/invariants.json +57 -0
  102. package/test_repos/allowed-clean-architecture/adapters/controllers/UserController.js +95 -0
  103. package/test_repos/allowed-clean-architecture/adapters/http/HttpServer.js +78 -0
  104. package/test_repos/allowed-clean-architecture/application/dtos/CreateUserRequest.js +37 -0
  105. package/test_repos/allowed-clean-architecture/application/services/UserService.js +61 -0
  106. package/test_repos/allowed-clean-architecture/arcvision_context/README.md +93 -0
  107. package/test_repos/allowed-clean-architecture/arcvision_context/arcvision.context.json +2796 -0
  108. package/test_repos/allowed-clean-architecture/domain/interfaces/UserRepository.js +25 -0
  109. package/test_repos/allowed-clean-architecture/domain/models/User.js +39 -0
  110. package/test_repos/allowed-clean-architecture/index.js +45 -0
  111. package/test_repos/allowed-clean-architecture/infrastructure/database/DatabaseConnection.js +56 -0
  112. package/test_repos/allowed-clean-architecture/infrastructure/repositories/InMemoryUserRepository.js +61 -0
  113. package/test_repos/allowed-clean-architecture/package.json +15 -0
  114. package/test_repos/blocked-legacy-monolith/.arcvision/invariants.json +78 -0
  115. package/test_repos/blocked-legacy-monolith/arcvision_context/README.md +93 -0
  116. package/test_repos/blocked-legacy-monolith/arcvision_context/arcvision.context.json +2882 -0
  117. package/test_repos/blocked-legacy-monolith/database/dbConnection.js +35 -0
  118. package/test_repos/blocked-legacy-monolith/index.js +38 -0
  119. package/test_repos/blocked-legacy-monolith/modules/emailService.js +31 -0
  120. package/test_repos/blocked-legacy-monolith/modules/paymentProcessor.js +37 -0
  121. package/test_repos/blocked-legacy-monolith/package.json +15 -0
  122. package/test_repos/blocked-legacy-monolith/shared/utils.js +19 -0
  123. package/test_repos/blocked-legacy-monolith/utils/helpers.js +23 -0
  124. package/test_repos/risky-microservices-concerns/.arcvision/invariants.json +69 -0
  125. package/test_repos/risky-microservices-concerns/arcvision_context/README.md +93 -0
  126. package/test_repos/risky-microservices-concerns/arcvision_context/arcvision.context.json +3070 -0
  127. package/test_repos/risky-microservices-concerns/common/utils.js +77 -0
  128. package/test_repos/risky-microservices-concerns/gateways/apiGateway.js +84 -0
  129. package/test_repos/risky-microservices-concerns/index.js +20 -0
  130. package/test_repos/risky-microservices-concerns/libs/deprecatedHelper.js +36 -0
  131. package/test_repos/risky-microservices-concerns/package.json +15 -0
  132. package/test_repos/risky-microservices-concerns/services/orderService.js +42 -0
  133. package/test_repos/risky-microservices-concerns/services/userService.js +48 -0
  134. package/verify_engine.js +116 -0
package/output1.json ADDED
@@ -0,0 +1,2163 @@
1
+ {
2
+ "schema_version": "1.0.0",
3
+ "generated_at": "2026-01-13T03:10:36.501Z",
4
+ "system": {
5
+ "name": "cli",
6
+ "root_path": "C:\\Users\\AHMAD RAZA\\Downloads\\ArcVision\\cli",
7
+ "language": "javascript"
8
+ },
9
+ "nodes": [
10
+ {
11
+ "id": "053150b640a7ce75",
12
+ "type": "file",
13
+ "path": "package-lock.json",
14
+ "role": "module",
15
+ "dependencies": [],
16
+ "blast_radius": 0,
17
+ "layer": "generic",
18
+ "criticality": 0
19
+ },
20
+ {
21
+ "id": "0f08282f2659a43f",
22
+ "type": "file",
23
+ "path": "test/determinism-test.js",
24
+ "role": "module",
25
+ "dependencies": [
26
+ "src/core/scanner.js"
27
+ ],
28
+ "blast_radius": 0,
29
+ "layer": "generic",
30
+ "criticality": 1
31
+ },
32
+ {
33
+ "id": "1b10669ca391b895",
34
+ "type": "file",
35
+ "path": "src/core/call-resolver.js",
36
+ "role": "consumer",
37
+ "dependencies": [],
38
+ "blast_radius": 1,
39
+ "layer": "generic",
40
+ "criticality": 2.5
41
+ },
42
+ {
43
+ "id": "21f1909c480ac805",
44
+ "type": "file",
45
+ "path": "src/engine/id-generator.js",
46
+ "role": "module",
47
+ "dependencies": [],
48
+ "blast_radius": 2,
49
+ "layer": "generic",
50
+ "criticality": 3.5
51
+ },
52
+ {
53
+ "id": "28ca1805674b8343",
54
+ "type": "file",
55
+ "path": "src/core/tsconfig-utils.js",
56
+ "role": "utility",
57
+ "dependencies": [],
58
+ "blast_radius": 3,
59
+ "layer": "shared",
60
+ "criticality": 6.5
61
+ },
62
+ {
63
+ "id": "35c54a1d35af3129",
64
+ "type": "file",
65
+ "path": "verify_engine.js",
66
+ "role": "module",
67
+ "dependencies": [
68
+ "src/core/scanner.js"
69
+ ],
70
+ "blast_radius": 0,
71
+ "layer": "generic",
72
+ "criticality": 1
73
+ },
74
+ {
75
+ "id": "3aa346846f0a84b0",
76
+ "type": "file",
77
+ "path": "src/core/watcher.js",
78
+ "role": "module",
79
+ "dependencies": [],
80
+ "blast_radius": 0,
81
+ "layer": "generic",
82
+ "criticality": 1
83
+ },
84
+ {
85
+ "id": "3fcbbe7cb70124b7",
86
+ "type": "file",
87
+ "path": "src/engine/context_validator.js",
88
+ "role": "store",
89
+ "dependencies": [],
90
+ "blast_radius": 2,
91
+ "layer": "state",
92
+ "criticality": 4.5
93
+ },
94
+ {
95
+ "id": "4fc924ed165bd841",
96
+ "type": "file",
97
+ "path": "src/core/parser.js",
98
+ "role": "module",
99
+ "dependencies": [],
100
+ "blast_radius": 1,
101
+ "layer": "generic",
102
+ "criticality": 2.5
103
+ },
104
+ {
105
+ "id": "50ebbbd49eadd09e",
106
+ "type": "file",
107
+ "path": "src/core/readme-generator.js",
108
+ "role": "module",
109
+ "dependencies": [],
110
+ "blast_radius": 2,
111
+ "layer": "generic",
112
+ "criticality": 3
113
+ },
114
+ {
115
+ "id": "54ee84f03c335898",
116
+ "type": "file",
117
+ "path": "src/engine/context_builder.js",
118
+ "role": "store",
119
+ "dependencies": [
120
+ "src/engine/id-generator.js"
121
+ ],
122
+ "blast_radius": 0,
123
+ "layer": "state",
124
+ "criticality": 1
125
+ },
126
+ {
127
+ "id": "5630c1d10d0cfa0e",
128
+ "type": "file",
129
+ "path": "src/plugins/plugin-manager.js",
130
+ "role": "module",
131
+ "dependencies": [],
132
+ "blast_radius": 1,
133
+ "layer": "generic",
134
+ "criticality": 1.5
135
+ },
136
+ {
137
+ "id": "5a3592aaaf55c8f2",
138
+ "type": "file",
139
+ "path": "output1.json",
140
+ "role": "module",
141
+ "dependencies": [],
142
+ "blast_radius": 0,
143
+ "layer": "generic",
144
+ "criticality": 0
145
+ },
146
+ {
147
+ "id": "5b1e77d935dc26c0",
148
+ "type": "file",
149
+ "path": "src/core/blastRadius.js",
150
+ "role": "module",
151
+ "dependencies": [],
152
+ "blast_radius": 2,
153
+ "layer": "generic",
154
+ "criticality": 3.5
155
+ },
156
+ {
157
+ "id": "6c8a062f3592478e",
158
+ "type": "file",
159
+ "path": "src/engine/pass3_lifter.js",
160
+ "role": "module",
161
+ "dependencies": [],
162
+ "blast_radius": 1,
163
+ "layer": "generic",
164
+ "criticality": 3.5
165
+ },
166
+ {
167
+ "id": "75c6bdd61ffd2597",
168
+ "type": "file",
169
+ "path": "tests/readme-generator.test.js",
170
+ "role": "module",
171
+ "dependencies": [
172
+ "src/core/readme-generator.js"
173
+ ],
174
+ "blast_radius": 0,
175
+ "layer": "generic",
176
+ "criticality": 0
177
+ },
178
+ {
179
+ "id": "7ae45ad102eab3b6",
180
+ "type": "file",
181
+ "path": "package.json",
182
+ "role": "module",
183
+ "dependencies": [],
184
+ "blast_radius": 0,
185
+ "layer": "generic",
186
+ "criticality": 0
187
+ },
188
+ {
189
+ "id": "8234de03ecf514b5",
190
+ "type": "file",
191
+ "path": "src/core/react-nextjs-detector.js",
192
+ "role": "module",
193
+ "dependencies": [],
194
+ "blast_radius": 1,
195
+ "layer": "generic",
196
+ "criticality": 2.5
197
+ },
198
+ {
199
+ "id": "8a92a3db61ad3e33",
200
+ "type": "file",
201
+ "path": "src/core/method-tracker.js",
202
+ "role": "module",
203
+ "dependencies": [],
204
+ "blast_radius": 1,
205
+ "layer": "generic",
206
+ "criticality": 2.5
207
+ },
208
+ {
209
+ "id": "9002001223e1d9ff",
210
+ "type": "file",
211
+ "path": "src/engine/pass2_semantics.js",
212
+ "role": "module",
213
+ "dependencies": [
214
+ "src/core/tsconfig-utils.js",
215
+ "src/core/path-resolver.js",
216
+ "src/core/symbol-indexer.js",
217
+ "src/core/call-resolver.js"
218
+ ],
219
+ "blast_radius": 1,
220
+ "layer": "generic",
221
+ "criticality": 3.5
222
+ },
223
+ {
224
+ "id": "919a988e1d874819",
225
+ "type": "file",
226
+ "path": "src/core/diff-analyzer.js",
227
+ "role": "module",
228
+ "dependencies": [],
229
+ "blast_radius": 1,
230
+ "layer": "generic",
231
+ "criticality": 2
232
+ },
233
+ {
234
+ "id": "96f40c49a72dc61e",
235
+ "type": "file",
236
+ "path": "jest.config.json",
237
+ "role": "config",
238
+ "dependencies": [],
239
+ "blast_radius": 0,
240
+ "layer": "generic",
241
+ "criticality": 0
242
+ },
243
+ {
244
+ "id": "9b8ca044ba3fb320",
245
+ "type": "file",
246
+ "path": "src/engine/pass1_facts.js",
247
+ "role": "module",
248
+ "dependencies": [
249
+ "src/core/parser-enhanced.js",
250
+ "src/plugins/plugin-manager.js"
251
+ ],
252
+ "blast_radius": 1,
253
+ "layer": "generic",
254
+ "criticality": 3.5
255
+ },
256
+ {
257
+ "id": "a5c440def525edb4",
258
+ "type": "file",
259
+ "path": "src/engine/context_sorter.js",
260
+ "role": "store",
261
+ "dependencies": [],
262
+ "blast_radius": 1,
263
+ "layer": "state",
264
+ "criticality": 3.5
265
+ },
266
+ {
267
+ "id": "a81ccb8745389ff3",
268
+ "type": "file",
269
+ "path": "src/plugins/react-plugin.js",
270
+ "role": "module",
271
+ "dependencies": [],
272
+ "blast_radius": 0,
273
+ "layer": "generic",
274
+ "criticality": 0
275
+ },
276
+ {
277
+ "id": "b1296d00012d44c2",
278
+ "type": "file",
279
+ "path": "src/core/parser-enhanced.js",
280
+ "role": "module",
281
+ "dependencies": [
282
+ "src/core/parser.js",
283
+ "src/core/di-detector.js",
284
+ "src/core/method-tracker.js",
285
+ "src/core/type-analyzer.js",
286
+ "src/core/react-nextjs-detector.js"
287
+ ],
288
+ "blast_radius": 1,
289
+ "layer": "generic",
290
+ "criticality": 2.5
291
+ },
292
+ {
293
+ "id": "b59c6389c609c58f",
294
+ "type": "file",
295
+ "path": "src/core/path-resolver.js",
296
+ "role": "module",
297
+ "dependencies": [],
298
+ "blast_radius": 1,
299
+ "layer": "generic",
300
+ "criticality": 2.5
301
+ },
302
+ {
303
+ "id": "b9069361ab7859f3",
304
+ "type": "file",
305
+ "path": "src/core/semantic-analyzer.js",
306
+ "role": "module",
307
+ "dependencies": [],
308
+ "blast_radius": 0,
309
+ "layer": "generic",
310
+ "criticality": 1
311
+ },
312
+ {
313
+ "id": "bf4121d4f3214ccc",
314
+ "type": "file",
315
+ "path": "src/engine/pass4_signals.js",
316
+ "role": "module",
317
+ "dependencies": [
318
+ "src/core/blastRadius.js"
319
+ ],
320
+ "blast_radius": 1,
321
+ "layer": "generic",
322
+ "criticality": 3.5
323
+ },
324
+ {
325
+ "id": "bf7d0c8a99e06a39",
326
+ "type": "file",
327
+ "path": "src/core/context_builder.js",
328
+ "role": "store",
329
+ "dependencies": [
330
+ "src/engine/id-generator.js"
331
+ ],
332
+ "blast_radius": 1,
333
+ "layer": "state",
334
+ "criticality": 3.5
335
+ },
336
+ {
337
+ "id": "bfe9874d23901496",
338
+ "type": "file",
339
+ "path": "src/index.js",
340
+ "role": "module",
341
+ "dependencies": [
342
+ "src/core/scanner.js",
343
+ "src/core/diff-analyzer.js",
344
+ "src/core/blastRadius.js",
345
+ "src/engine/context_validator.js",
346
+ "src/core/readme-generator.js"
347
+ ],
348
+ "blast_radius": 0,
349
+ "layer": "generic",
350
+ "criticality": 1
351
+ },
352
+ {
353
+ "id": "cdf8e61c339963ec",
354
+ "type": "file",
355
+ "path": "src/core/workspace-scanner.js",
356
+ "role": "consumer",
357
+ "dependencies": [
358
+ "src/core/tsconfig-utils.js"
359
+ ],
360
+ "blast_radius": 1,
361
+ "layer": "generic",
362
+ "criticality": 2.5
363
+ },
364
+ {
365
+ "id": "e312a554d10c9dc1",
366
+ "type": "file",
367
+ "path": "src/core/di-detector.js",
368
+ "role": "module",
369
+ "dependencies": [],
370
+ "blast_radius": 1,
371
+ "layer": "generic",
372
+ "criticality": 2.5
373
+ },
374
+ {
375
+ "id": "ea3da8d7bc223798",
376
+ "type": "file",
377
+ "path": "src/core/scanner.js",
378
+ "role": "module",
379
+ "dependencies": [
380
+ "src/core/tsconfig-utils.js",
381
+ "src/core/workspace-scanner.js",
382
+ "src/engine/pass1_facts.js",
383
+ "src/engine/pass2_semantics.js",
384
+ "src/engine/pass3_lifter.js",
385
+ "src/engine/pass4_signals.js",
386
+ "src/core/context_builder.js",
387
+ "src/engine/context_validator.js",
388
+ "src/engine/context_sorter.js"
389
+ ],
390
+ "blast_radius": 3,
391
+ "layer": "generic",
392
+ "criticality": 4
393
+ },
394
+ {
395
+ "id": "ea48fa9f1523f614",
396
+ "type": "file",
397
+ "path": "src/plugins/express-plugin.js",
398
+ "role": "module",
399
+ "dependencies": [],
400
+ "blast_radius": 0,
401
+ "layer": "generic",
402
+ "criticality": 0
403
+ },
404
+ {
405
+ "id": "eb9e1ecd05d275ac",
406
+ "type": "file",
407
+ "path": "src/core/type-analyzer.js",
408
+ "role": "module",
409
+ "dependencies": [],
410
+ "blast_radius": 1,
411
+ "layer": "generic",
412
+ "criticality": 2.5
413
+ },
414
+ {
415
+ "id": "ed3d1b09eef5e14e",
416
+ "type": "file",
417
+ "path": "src/core/symbol-indexer.js",
418
+ "role": "module",
419
+ "dependencies": [],
420
+ "blast_radius": 1,
421
+ "layer": "generic",
422
+ "criticality": 2.5
423
+ },
424
+ {
425
+ "id": "f5dcf2e4c7742cd8",
426
+ "type": "file",
427
+ "path": "schema/arcvision_context_schema_v1.json",
428
+ "role": "store",
429
+ "dependencies": [],
430
+ "blast_radius": 0,
431
+ "layer": "state",
432
+ "criticality": 0
433
+ },
434
+ {
435
+ "id": "f712b68d17bcfb24",
436
+ "type": "file",
437
+ "path": "output2.json",
438
+ "role": "module",
439
+ "dependencies": [],
440
+ "blast_radius": 0,
441
+ "layer": "generic",
442
+ "criticality": 0
443
+ }
444
+ ],
445
+ "edges": [
446
+ {
447
+ "from": "0f08282f2659a43f",
448
+ "to": "ea3da8d7bc223798",
449
+ "relation": "calls",
450
+ "weight": 2
451
+ },
452
+ {
453
+ "from": "0f08282f2659a43f",
454
+ "to": "ea3da8d7bc223798",
455
+ "relation": "imports",
456
+ "weight": 2
457
+ },
458
+ {
459
+ "from": "35c54a1d35af3129",
460
+ "to": "ea3da8d7bc223798",
461
+ "relation": "calls",
462
+ "weight": 2
463
+ },
464
+ {
465
+ "from": "35c54a1d35af3129",
466
+ "to": "ea3da8d7bc223798",
467
+ "relation": "imports",
468
+ "weight": 2
469
+ },
470
+ {
471
+ "from": "54ee84f03c335898",
472
+ "to": "21f1909c480ac805",
473
+ "relation": "calls",
474
+ "weight": 1
475
+ },
476
+ {
477
+ "from": "54ee84f03c335898",
478
+ "to": "21f1909c480ac805",
479
+ "relation": "imports",
480
+ "weight": 2
481
+ },
482
+ {
483
+ "from": "75c6bdd61ffd2597",
484
+ "to": "50ebbbd49eadd09e",
485
+ "relation": "calls",
486
+ "weight": 6
487
+ },
488
+ {
489
+ "from": "75c6bdd61ffd2597",
490
+ "to": "50ebbbd49eadd09e",
491
+ "relation": "imports",
492
+ "weight": 2
493
+ },
494
+ {
495
+ "from": "9002001223e1d9ff",
496
+ "to": "1b10669ca391b895",
497
+ "relation": "imports",
498
+ "weight": 2
499
+ },
500
+ {
501
+ "from": "9002001223e1d9ff",
502
+ "to": "28ca1805674b8343",
503
+ "relation": "calls",
504
+ "weight": 3
505
+ },
506
+ {
507
+ "from": "9002001223e1d9ff",
508
+ "to": "28ca1805674b8343",
509
+ "relation": "imports",
510
+ "weight": 2
511
+ },
512
+ {
513
+ "from": "9002001223e1d9ff",
514
+ "to": "b59c6389c609c58f",
515
+ "relation": "calls",
516
+ "weight": 2
517
+ },
518
+ {
519
+ "from": "9002001223e1d9ff",
520
+ "to": "b59c6389c609c58f",
521
+ "relation": "imports",
522
+ "weight": 2
523
+ },
524
+ {
525
+ "from": "9002001223e1d9ff",
526
+ "to": "ed3d1b09eef5e14e",
527
+ "relation": "imports",
528
+ "weight": 2
529
+ },
530
+ {
531
+ "from": "9b8ca044ba3fb320",
532
+ "to": "5630c1d10d0cfa0e",
533
+ "relation": "imports",
534
+ "weight": 2
535
+ },
536
+ {
537
+ "from": "9b8ca044ba3fb320",
538
+ "to": "b1296d00012d44c2",
539
+ "relation": "imports",
540
+ "weight": 2
541
+ },
542
+ {
543
+ "from": "b1296d00012d44c2",
544
+ "to": "4fc924ed165bd841",
545
+ "relation": "calls",
546
+ "weight": 1
547
+ },
548
+ {
549
+ "from": "b1296d00012d44c2",
550
+ "to": "4fc924ed165bd841",
551
+ "relation": "imports",
552
+ "weight": 2
553
+ },
554
+ {
555
+ "from": "b1296d00012d44c2",
556
+ "to": "8234de03ecf514b5",
557
+ "relation": "calls",
558
+ "weight": 1
559
+ },
560
+ {
561
+ "from": "b1296d00012d44c2",
562
+ "to": "8234de03ecf514b5",
563
+ "relation": "imports",
564
+ "weight": 2
565
+ },
566
+ {
567
+ "from": "b1296d00012d44c2",
568
+ "to": "8a92a3db61ad3e33",
569
+ "relation": "calls",
570
+ "weight": 1
571
+ },
572
+ {
573
+ "from": "b1296d00012d44c2",
574
+ "to": "8a92a3db61ad3e33",
575
+ "relation": "imports",
576
+ "weight": 2
577
+ },
578
+ {
579
+ "from": "b1296d00012d44c2",
580
+ "to": "e312a554d10c9dc1",
581
+ "relation": "calls",
582
+ "weight": 1
583
+ },
584
+ {
585
+ "from": "b1296d00012d44c2",
586
+ "to": "e312a554d10c9dc1",
587
+ "relation": "imports",
588
+ "weight": 2
589
+ },
590
+ {
591
+ "from": "b1296d00012d44c2",
592
+ "to": "eb9e1ecd05d275ac",
593
+ "relation": "calls",
594
+ "weight": 1
595
+ },
596
+ {
597
+ "from": "b1296d00012d44c2",
598
+ "to": "eb9e1ecd05d275ac",
599
+ "relation": "imports",
600
+ "weight": 2
601
+ },
602
+ {
603
+ "from": "bf4121d4f3214ccc",
604
+ "to": "5b1e77d935dc26c0",
605
+ "relation": "calls",
606
+ "weight": 3
607
+ },
608
+ {
609
+ "from": "bf4121d4f3214ccc",
610
+ "to": "5b1e77d935dc26c0",
611
+ "relation": "imports",
612
+ "weight": 2
613
+ },
614
+ {
615
+ "from": "bf7d0c8a99e06a39",
616
+ "to": "21f1909c480ac805",
617
+ "relation": "calls",
618
+ "weight": 1
619
+ },
620
+ {
621
+ "from": "bf7d0c8a99e06a39",
622
+ "to": "21f1909c480ac805",
623
+ "relation": "imports",
624
+ "weight": 2
625
+ },
626
+ {
627
+ "from": "bfe9874d23901496",
628
+ "to": "3fcbbe7cb70124b7",
629
+ "relation": "calls",
630
+ "weight": 1
631
+ },
632
+ {
633
+ "from": "bfe9874d23901496",
634
+ "to": "3fcbbe7cb70124b7",
635
+ "relation": "imports",
636
+ "weight": 2
637
+ },
638
+ {
639
+ "from": "bfe9874d23901496",
640
+ "to": "50ebbbd49eadd09e",
641
+ "relation": "calls",
642
+ "weight": 2
643
+ },
644
+ {
645
+ "from": "bfe9874d23901496",
646
+ "to": "50ebbbd49eadd09e",
647
+ "relation": "imports",
648
+ "weight": 4
649
+ },
650
+ {
651
+ "from": "bfe9874d23901496",
652
+ "to": "5b1e77d935dc26c0",
653
+ "relation": "calls",
654
+ "weight": 1
655
+ },
656
+ {
657
+ "from": "bfe9874d23901496",
658
+ "to": "5b1e77d935dc26c0",
659
+ "relation": "imports",
660
+ "weight": 2
661
+ },
662
+ {
663
+ "from": "bfe9874d23901496",
664
+ "to": "919a988e1d874819",
665
+ "relation": "calls",
666
+ "weight": 1
667
+ },
668
+ {
669
+ "from": "bfe9874d23901496",
670
+ "to": "919a988e1d874819",
671
+ "relation": "imports",
672
+ "weight": 2
673
+ },
674
+ {
675
+ "from": "bfe9874d23901496",
676
+ "to": "ea3da8d7bc223798",
677
+ "relation": "calls",
678
+ "weight": 1
679
+ },
680
+ {
681
+ "from": "bfe9874d23901496",
682
+ "to": "ea3da8d7bc223798",
683
+ "relation": "imports",
684
+ "weight": 2
685
+ },
686
+ {
687
+ "from": "cdf8e61c339963ec",
688
+ "to": "28ca1805674b8343",
689
+ "relation": "calls",
690
+ "weight": 1
691
+ },
692
+ {
693
+ "from": "cdf8e61c339963ec",
694
+ "to": "28ca1805674b8343",
695
+ "relation": "imports",
696
+ "weight": 2
697
+ },
698
+ {
699
+ "from": "ea3da8d7bc223798",
700
+ "to": "28ca1805674b8343",
701
+ "relation": "imports",
702
+ "weight": 2
703
+ },
704
+ {
705
+ "from": "ea3da8d7bc223798",
706
+ "to": "3fcbbe7cb70124b7",
707
+ "relation": "calls",
708
+ "weight": 1
709
+ },
710
+ {
711
+ "from": "ea3da8d7bc223798",
712
+ "to": "3fcbbe7cb70124b7",
713
+ "relation": "imports",
714
+ "weight": 2
715
+ },
716
+ {
717
+ "from": "ea3da8d7bc223798",
718
+ "to": "6c8a062f3592478e",
719
+ "relation": "calls",
720
+ "weight": 1
721
+ },
722
+ {
723
+ "from": "ea3da8d7bc223798",
724
+ "to": "6c8a062f3592478e",
725
+ "relation": "imports",
726
+ "weight": 2
727
+ },
728
+ {
729
+ "from": "ea3da8d7bc223798",
730
+ "to": "9002001223e1d9ff",
731
+ "relation": "calls",
732
+ "weight": 1
733
+ },
734
+ {
735
+ "from": "ea3da8d7bc223798",
736
+ "to": "9002001223e1d9ff",
737
+ "relation": "imports",
738
+ "weight": 2
739
+ },
740
+ {
741
+ "from": "ea3da8d7bc223798",
742
+ "to": "9b8ca044ba3fb320",
743
+ "relation": "calls",
744
+ "weight": 1
745
+ },
746
+ {
747
+ "from": "ea3da8d7bc223798",
748
+ "to": "9b8ca044ba3fb320",
749
+ "relation": "imports",
750
+ "weight": 2
751
+ },
752
+ {
753
+ "from": "ea3da8d7bc223798",
754
+ "to": "a5c440def525edb4",
755
+ "relation": "calls",
756
+ "weight": 1
757
+ },
758
+ {
759
+ "from": "ea3da8d7bc223798",
760
+ "to": "a5c440def525edb4",
761
+ "relation": "imports",
762
+ "weight": 2
763
+ },
764
+ {
765
+ "from": "ea3da8d7bc223798",
766
+ "to": "bf4121d4f3214ccc",
767
+ "relation": "calls",
768
+ "weight": 1
769
+ },
770
+ {
771
+ "from": "ea3da8d7bc223798",
772
+ "to": "bf4121d4f3214ccc",
773
+ "relation": "imports",
774
+ "weight": 2
775
+ },
776
+ {
777
+ "from": "ea3da8d7bc223798",
778
+ "to": "bf7d0c8a99e06a39",
779
+ "relation": "calls",
780
+ "weight": 1
781
+ },
782
+ {
783
+ "from": "ea3da8d7bc223798",
784
+ "to": "bf7d0c8a99e06a39",
785
+ "relation": "imports",
786
+ "weight": 2
787
+ },
788
+ {
789
+ "from": "ea3da8d7bc223798",
790
+ "to": "cdf8e61c339963ec",
791
+ "relation": "imports",
792
+ "weight": 2
793
+ }
794
+ ],
795
+ "symbols": [
796
+ {
797
+ "id": "src/core/blastRadius.js::buildReverseDependencyGraph",
798
+ "name": "buildReverseDependencyGraph",
799
+ "kind": "function",
800
+ "fileId": "src/core/blastRadius.js",
801
+ "exported": false,
802
+ "loc": {
803
+ "start": {
804
+ "line": 14,
805
+ "column": 0,
806
+ "index": 561
807
+ },
808
+ "end": {
809
+ "line": 47,
810
+ "column": 1,
811
+ "index": 1816
812
+ }
813
+ }
814
+ },
815
+ {
816
+ "id": "src/core/blastRadius.js::computeBlastRadius",
817
+ "name": "computeBlastRadius",
818
+ "kind": "function",
819
+ "fileId": "src/core/blastRadius.js",
820
+ "exported": false,
821
+ "loc": {
822
+ "start": {
823
+ "line": 54,
824
+ "column": 0,
825
+ "index": 2031
826
+ },
827
+ "end": {
828
+ "line": 62,
829
+ "column": 1,
830
+ "index": 2321
831
+ }
832
+ }
833
+ },
834
+ {
835
+ "id": "src/core/blastRadius.js::computeTransitiveBlastRadius",
836
+ "name": "computeTransitiveBlastRadius",
837
+ "kind": "function",
838
+ "fileId": "src/core/blastRadius.js",
839
+ "exported": false,
840
+ "loc": {
841
+ "start": {
842
+ "line": 70,
843
+ "column": 0,
844
+ "index": 2614
845
+ },
846
+ "end": {
847
+ "line": 98,
848
+ "column": 1,
849
+ "index": 3673
850
+ }
851
+ }
852
+ },
853
+ {
854
+ "id": "src/core/blastRadius.js::findHighestBlastRadius",
855
+ "name": "findHighestBlastRadius",
856
+ "kind": "function",
857
+ "fileId": "src/core/blastRadius.js",
858
+ "exported": false,
859
+ "loc": {
860
+ "start": {
861
+ "line": 105,
862
+ "column": 0,
863
+ "index": 3910
864
+ },
865
+ "end": {
866
+ "line": 121,
867
+ "column": 1,
868
+ "index": 4344
869
+ }
870
+ }
871
+ },
872
+ {
873
+ "id": "src/core/blastRadius.js::getTopBlastRadiusFiles",
874
+ "name": "getTopBlastRadiusFiles",
875
+ "kind": "function",
876
+ "fileId": "src/core/blastRadius.js",
877
+ "exported": false,
878
+ "loc": {
879
+ "start": {
880
+ "line": 129,
881
+ "column": 0,
882
+ "index": 4613
883
+ },
884
+ "end": {
885
+ "line": 146,
886
+ "column": 1,
887
+ "index": 5277
888
+ }
889
+ }
890
+ },
891
+ {
892
+ "id": "src/core/blastRadius.js::computeBlastRadiusWithPercentage",
893
+ "name": "computeBlastRadiusWithPercentage",
894
+ "kind": "function",
895
+ "fileId": "src/core/blastRadius.js",
896
+ "exported": false,
897
+ "loc": {
898
+ "start": {
899
+ "line": 154,
900
+ "column": 0,
901
+ "index": 5572
902
+ },
903
+ "end": {
904
+ "line": 175,
905
+ "column": 1,
906
+ "index": 6347
907
+ }
908
+ }
909
+ },
910
+ {
911
+ "id": "src/core/blastRadius.js::analyzeCriticality",
912
+ "name": "analyzeCriticality",
913
+ "kind": "function",
914
+ "fileId": "src/core/blastRadius.js",
915
+ "exported": false,
916
+ "loc": {
917
+ "start": {
918
+ "line": 184,
919
+ "column": 0,
920
+ "index": 6679
921
+ },
922
+ "end": {
923
+ "line": 222,
924
+ "column": 1,
925
+ "index": 8339
926
+ }
927
+ }
928
+ },
929
+ {
930
+ "id": "src/core/blastRadius.js::calculateDependencyStrength",
931
+ "name": "calculateDependencyStrength",
932
+ "kind": "function",
933
+ "fileId": "src/core/blastRadius.js",
934
+ "exported": false,
935
+ "loc": {
936
+ "start": {
937
+ "line": 230,
938
+ "column": 0,
939
+ "index": 8602
940
+ },
941
+ "end": {
942
+ "line": 244,
943
+ "column": 1,
944
+ "index": 9055
945
+ }
946
+ }
947
+ },
948
+ {
949
+ "id": "src/core/call-resolver.js::resolveImportedSymbol",
950
+ "name": "resolveImportedSymbol",
951
+ "kind": "function",
952
+ "fileId": "src/core/call-resolver.js",
953
+ "exported": false,
954
+ "loc": {
955
+ "start": {
956
+ "line": 37,
957
+ "column": 14,
958
+ "index": 1207
959
+ },
960
+ "end": {
961
+ "line": 85,
962
+ "column": 9,
963
+ "index": 4079
964
+ }
965
+ }
966
+ },
967
+ {
968
+ "id": "src/core/context_builder.js::buildContext",
969
+ "name": "buildContext",
970
+ "kind": "function",
971
+ "fileId": "src/core/context_builder.js",
972
+ "exported": false,
973
+ "loc": {
974
+ "start": {
975
+ "line": 14,
976
+ "column": 0,
977
+ "index": 586
978
+ },
979
+ "end": {
980
+ "line": 173,
981
+ "column": 1,
982
+ "index": 6674
983
+ }
984
+ }
985
+ },
986
+ {
987
+ "id": "src/core/context_builder.js::addDep",
988
+ "name": "addDep",
989
+ "kind": "function",
990
+ "fileId": "src/core/context_builder.js",
991
+ "exported": false,
992
+ "loc": {
993
+ "start": {
994
+ "line": 33,
995
+ "column": 14,
996
+ "index": 1329
997
+ },
998
+ "end": {
999
+ "line": 38,
1000
+ "column": 9,
1001
+ "index": 1516
1002
+ }
1003
+ }
1004
+ },
1005
+ {
1006
+ "id": "src/core/context_builder.js::getGitInfo",
1007
+ "name": "getGitInfo",
1008
+ "kind": "function",
1009
+ "fileId": "src/core/context_builder.js",
1010
+ "exported": false,
1011
+ "loc": {
1012
+ "start": {
1013
+ "line": 180,
1014
+ "column": 0,
1015
+ "index": 6802
1016
+ },
1017
+ "end": {
1018
+ "line": 220,
1019
+ "column": 1,
1020
+ "index": 8091
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "id": "src/core/context_builder.js::calculateIntegrityHash",
1026
+ "name": "calculateIntegrityHash",
1027
+ "kind": "function",
1028
+ "fileId": "src/core/context_builder.js",
1029
+ "exported": false,
1030
+ "loc": {
1031
+ "start": {
1032
+ "line": 227,
1033
+ "column": 0,
1034
+ "index": 8229
1035
+ },
1036
+ "end": {
1037
+ "line": 240,
1038
+ "column": 1,
1039
+ "index": 8727
1040
+ }
1041
+ }
1042
+ },
1043
+ {
1044
+ "id": "src/core/context_builder.js::generateAssumptions",
1045
+ "name": "generateAssumptions",
1046
+ "kind": "function",
1047
+ "fileId": "src/core/context_builder.js",
1048
+ "exported": false,
1049
+ "loc": {
1050
+ "start": {
1051
+ "line": 246,
1052
+ "column": 0,
1053
+ "index": 8846
1054
+ },
1055
+ "end": {
1056
+ "line": 254,
1057
+ "column": 1,
1058
+ "index": 9206
1059
+ }
1060
+ }
1061
+ },
1062
+ {
1063
+ "id": "src/core/di-detector.js::detectConstructorInjection",
1064
+ "name": "detectConstructorInjection",
1065
+ "kind": "function",
1066
+ "fileId": "src/core/di-detector.js",
1067
+ "exported": false,
1068
+ "loc": {
1069
+ "start": {
1070
+ "line": 18,
1071
+ "column": 0,
1072
+ "index": 470
1073
+ },
1074
+ "end": {
1075
+ "line": 65,
1076
+ "column": 1,
1077
+ "index": 2270
1078
+ }
1079
+ }
1080
+ },
1081
+ {
1082
+ "id": "src/core/di-detector.js::detectReactContextUsage",
1083
+ "name": "detectReactContextUsage",
1084
+ "kind": "function",
1085
+ "fileId": "src/core/di-detector.js",
1086
+ "exported": false,
1087
+ "loc": {
1088
+ "start": {
1089
+ "line": 72,
1090
+ "column": 0,
1091
+ "index": 2411
1092
+ },
1093
+ "end": {
1094
+ "line": 119,
1095
+ "column": 1,
1096
+ "index": 4216
1097
+ }
1098
+ }
1099
+ },
1100
+ {
1101
+ "id": "src/core/di-detector.js::detectHookDependencies",
1102
+ "name": "detectHookDependencies",
1103
+ "kind": "function",
1104
+ "fileId": "src/core/di-detector.js",
1105
+ "exported": false,
1106
+ "loc": {
1107
+ "start": {
1108
+ "line": 126,
1109
+ "column": 0,
1110
+ "index": 4350
1111
+ },
1112
+ "end": {
1113
+ "line": 145,
1114
+ "column": 1,
1115
+ "index": 4928
1116
+ }
1117
+ }
1118
+ },
1119
+ {
1120
+ "id": "src/core/di-detector.js::detectDependencyInjection",
1121
+ "name": "detectDependencyInjection",
1122
+ "kind": "function",
1123
+ "fileId": "src/core/di-detector.js",
1124
+ "exported": false,
1125
+ "loc": {
1126
+ "start": {
1127
+ "line": 152,
1128
+ "column": 0,
1129
+ "index": 5062
1130
+ },
1131
+ "end": {
1132
+ "line": 166,
1133
+ "column": 1,
1134
+ "index": 5464
1135
+ }
1136
+ }
1137
+ },
1138
+ {
1139
+ "id": "src/core/di-detector.js::extractTypeName",
1140
+ "name": "extractTypeName",
1141
+ "kind": "function",
1142
+ "fileId": "src/core/di-detector.js",
1143
+ "exported": false,
1144
+ "loc": {
1145
+ "start": {
1146
+ "line": 171,
1147
+ "column": 0,
1148
+ "index": 5540
1149
+ },
1150
+ "end": {
1151
+ "line": 183,
1152
+ "column": 1,
1153
+ "index": 5916
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "id": "src/core/di-detector.js::extractMemberExpressionName",
1159
+ "name": "extractMemberExpressionName",
1160
+ "kind": "function",
1161
+ "fileId": "src/core/di-detector.js",
1162
+ "exported": false,
1163
+ "loc": {
1164
+ "start": {
1165
+ "line": 188,
1166
+ "column": 0,
1167
+ "index": 5978
1168
+ },
1169
+ "end": {
1170
+ "line": 195,
1171
+ "column": 1,
1172
+ "index": 6236
1173
+ }
1174
+ }
1175
+ },
1176
+ {
1177
+ "id": "src/core/diff-analyzer.js::generateDiffSummary",
1178
+ "name": "generateDiffSummary",
1179
+ "kind": "function",
1180
+ "fileId": "src/core/diff-analyzer.js",
1181
+ "exported": false,
1182
+ "loc": {
1183
+ "start": {
1184
+ "line": 7,
1185
+ "column": 0,
1186
+ "index": 259
1187
+ },
1188
+ "end": {
1189
+ "line": 74,
1190
+ "column": 1,
1191
+ "index": 2263
1192
+ }
1193
+ }
1194
+ },
1195
+ {
1196
+ "id": "src/core/method-tracker.js::trackMethodCalls",
1197
+ "name": "trackMethodCalls",
1198
+ "kind": "function",
1199
+ "fileId": "src/core/method-tracker.js",
1200
+ "exported": false,
1201
+ "loc": {
1202
+ "start": {
1203
+ "line": 17,
1204
+ "column": 0,
1205
+ "index": 456
1206
+ },
1207
+ "end": {
1208
+ "line": 93,
1209
+ "column": 1,
1210
+ "index": 2901
1211
+ }
1212
+ }
1213
+ },
1214
+ {
1215
+ "id": "src/core/method-tracker.js::buildCallGraph",
1216
+ "name": "buildCallGraph",
1217
+ "kind": "function",
1218
+ "fileId": "src/core/method-tracker.js",
1219
+ "exported": false,
1220
+ "loc": {
1221
+ "start": {
1222
+ "line": 100,
1223
+ "column": 0,
1224
+ "index": 3055
1225
+ },
1226
+ "end": {
1227
+ "line": 149,
1228
+ "column": 1,
1229
+ "index": 4738
1230
+ }
1231
+ }
1232
+ },
1233
+ {
1234
+ "id": "src/core/method-tracker.js::extractObjectName",
1235
+ "name": "extractObjectName",
1236
+ "kind": "function",
1237
+ "fileId": "src/core/method-tracker.js",
1238
+ "exported": false,
1239
+ "loc": {
1240
+ "start": {
1241
+ "line": 154,
1242
+ "column": 0,
1243
+ "index": 4808
1244
+ },
1245
+ "end": {
1246
+ "line": 165,
1247
+ "column": 1,
1248
+ "index": 5258
1249
+ }
1250
+ }
1251
+ },
1252
+ {
1253
+ "id": "src/core/parser-enhanced.js::parseFileEnhanced",
1254
+ "name": "parseFileEnhanced",
1255
+ "kind": "function",
1256
+ "fileId": "src/core/parser-enhanced.js",
1257
+ "exported": false,
1258
+ "loc": {
1259
+ "start": {
1260
+ "line": 20,
1261
+ "column": 0,
1262
+ "index": 666
1263
+ },
1264
+ "end": {
1265
+ "line": 68,
1266
+ "column": 1,
1267
+ "index": 2733
1268
+ }
1269
+ }
1270
+ },
1271
+ {
1272
+ "id": "src/core/parser.js::parseFile",
1273
+ "name": "parseFile",
1274
+ "kind": "function",
1275
+ "fileId": "src/core/parser.js",
1276
+ "exported": false,
1277
+ "loc": {
1278
+ "start": {
1279
+ "line": 6,
1280
+ "column": 0,
1281
+ "index": 156
1282
+ },
1283
+ "end": {
1284
+ "line": 420,
1285
+ "column": 1,
1286
+ "index": 16965
1287
+ }
1288
+ }
1289
+ },
1290
+ {
1291
+ "id": "src/core/path-resolver.js::resolveImport",
1292
+ "name": "resolveImport",
1293
+ "kind": "function",
1294
+ "fileId": "src/core/path-resolver.js",
1295
+ "exported": false,
1296
+ "loc": {
1297
+ "start": {
1298
+ "line": 15,
1299
+ "column": 0,
1300
+ "index": 735
1301
+ },
1302
+ "end": {
1303
+ "line": 238,
1304
+ "column": 1,
1305
+ "index": 8715
1306
+ }
1307
+ }
1308
+ },
1309
+ {
1310
+ "id": "src/core/path-resolver.js::exists",
1311
+ "name": "exists",
1312
+ "kind": "function",
1313
+ "fileId": "src/core/path-resolver.js",
1314
+ "exported": false,
1315
+ "loc": {
1316
+ "start": {
1317
+ "line": 22,
1318
+ "column": 8,
1319
+ "index": 1074
1320
+ },
1321
+ "end": {
1322
+ "line": 25,
1323
+ "column": 3,
1324
+ "index": 1167
1325
+ }
1326
+ }
1327
+ },
1328
+ {
1329
+ "id": "src/core/react-nextjs-detector.js::detectComponentUsage",
1330
+ "name": "detectComponentUsage",
1331
+ "kind": "function",
1332
+ "fileId": "src/core/react-nextjs-detector.js",
1333
+ "exported": false,
1334
+ "loc": {
1335
+ "start": {
1336
+ "line": 19,
1337
+ "column": 0,
1338
+ "index": 474
1339
+ },
1340
+ "end": {
1341
+ "line": 59,
1342
+ "column": 1,
1343
+ "index": 1864
1344
+ }
1345
+ }
1346
+ },
1347
+ {
1348
+ "id": "src/core/react-nextjs-detector.js::detectServerClientBoundaries",
1349
+ "name": "detectServerClientBoundaries",
1350
+ "kind": "function",
1351
+ "fileId": "src/core/react-nextjs-detector.js",
1352
+ "exported": false,
1353
+ "loc": {
1354
+ "start": {
1355
+ "line": 66,
1356
+ "column": 0,
1357
+ "index": 2016
1358
+ },
1359
+ "end": {
1360
+ "line": 92,
1361
+ "column": 1,
1362
+ "index": 2794
1363
+ }
1364
+ }
1365
+ },
1366
+ {
1367
+ "id": "src/core/react-nextjs-detector.js::detectAPIRouteDependencies",
1368
+ "name": "detectAPIRouteDependencies",
1369
+ "kind": "function",
1370
+ "fileId": "src/core/react-nextjs-detector.js",
1371
+ "exported": false,
1372
+ "loc": {
1373
+ "start": {
1374
+ "line": 99,
1375
+ "column": 0,
1376
+ "index": 2931
1377
+ },
1378
+ "end": {
1379
+ "line": 156,
1380
+ "column": 1,
1381
+ "index": 5000
1382
+ }
1383
+ }
1384
+ },
1385
+ {
1386
+ "id": "src/core/react-nextjs-detector.js::detectMiddlewareDependencies",
1387
+ "name": "detectMiddlewareDependencies",
1388
+ "kind": "function",
1389
+ "fileId": "src/core/react-nextjs-detector.js",
1390
+ "exported": false,
1391
+ "loc": {
1392
+ "start": {
1393
+ "line": 164,
1394
+ "column": 0,
1395
+ "index": 5208
1396
+ },
1397
+ "end": {
1398
+ "line": 221,
1399
+ "column": 1,
1400
+ "index": 7191
1401
+ }
1402
+ }
1403
+ },
1404
+ {
1405
+ "id": "src/core/react-nextjs-detector.js::detectReactNextJSPatterns",
1406
+ "name": "detectReactNextJSPatterns",
1407
+ "kind": "function",
1408
+ "fileId": "src/core/react-nextjs-detector.js",
1409
+ "exported": false,
1410
+ "loc": {
1411
+ "start": {
1412
+ "line": 230,
1413
+ "column": 0,
1414
+ "index": 7407
1415
+ },
1416
+ "end": {
1417
+ "line": 237,
1418
+ "column": 1,
1419
+ "index": 7751
1420
+ }
1421
+ }
1422
+ },
1423
+ {
1424
+ "id": "src/core/readme-generator.js::getCommitHash",
1425
+ "name": "getCommitHash",
1426
+ "kind": "function",
1427
+ "fileId": "src/core/readme-generator.js",
1428
+ "exported": false,
1429
+ "loc": {
1430
+ "start": {
1431
+ "line": 9,
1432
+ "column": 0,
1433
+ "index": 226
1434
+ },
1435
+ "end": {
1436
+ "line": 22,
1437
+ "column": 1,
1438
+ "index": 584
1439
+ }
1440
+ }
1441
+ },
1442
+ {
1443
+ "id": "src/core/readme-generator.js::generateReadmeContent",
1444
+ "name": "generateReadmeContent",
1445
+ "kind": "function",
1446
+ "fileId": "src/core/readme-generator.js",
1447
+ "exported": false,
1448
+ "loc": {
1449
+ "start": {
1450
+ "line": 32,
1451
+ "column": 0,
1452
+ "index": 943
1453
+ },
1454
+ "end": {
1455
+ "line": 138,
1456
+ "column": 1,
1457
+ "index": 4059
1458
+ }
1459
+ }
1460
+ },
1461
+ {
1462
+ "id": "src/core/readme-generator.js::generateReadme",
1463
+ "name": "generateReadme",
1464
+ "kind": "function",
1465
+ "fileId": "src/core/readme-generator.js",
1466
+ "exported": false,
1467
+ "loc": {
1468
+ "start": {
1469
+ "line": 146,
1470
+ "column": 0,
1471
+ "index": 4294
1472
+ },
1473
+ "end": {
1474
+ "line": 155,
1475
+ "column": 1,
1476
+ "index": 4756
1477
+ }
1478
+ }
1479
+ },
1480
+ {
1481
+ "id": "src/core/scanner.js::scan",
1482
+ "name": "scan",
1483
+ "kind": "function",
1484
+ "fileId": "src/core/scanner.js",
1485
+ "exported": false,
1486
+ "loc": {
1487
+ "start": {
1488
+ "line": 19,
1489
+ "column": 0,
1490
+ "index": 704
1491
+ },
1492
+ "end": {
1493
+ "line": 89,
1494
+ "column": 1,
1495
+ "index": 3372
1496
+ }
1497
+ }
1498
+ },
1499
+ {
1500
+ "id": "src/core/semantic-analyzer.js::buildSymbolTable",
1501
+ "name": "buildSymbolTable",
1502
+ "kind": "function",
1503
+ "fileId": "src/core/semantic-analyzer.js",
1504
+ "exported": false,
1505
+ "loc": {
1506
+ "start": {
1507
+ "line": 14,
1508
+ "column": 0,
1509
+ "index": 448
1510
+ },
1511
+ "end": {
1512
+ "line": 70,
1513
+ "column": 1,
1514
+ "index": 2358
1515
+ }
1516
+ }
1517
+ },
1518
+ {
1519
+ "id": "src/core/semantic-analyzer.js::resolveSymbolUsage",
1520
+ "name": "resolveSymbolUsage",
1521
+ "kind": "function",
1522
+ "fileId": "src/core/semantic-analyzer.js",
1523
+ "exported": false,
1524
+ "loc": {
1525
+ "start": {
1526
+ "line": 78,
1527
+ "column": 0,
1528
+ "index": 2573
1529
+ },
1530
+ "end": {
1531
+ "line": 150,
1532
+ "column": 1,
1533
+ "index": 5337
1534
+ }
1535
+ }
1536
+ },
1537
+ {
1538
+ "id": "src/core/semantic-analyzer.js::trackCrossFileReferences",
1539
+ "name": "trackCrossFileReferences",
1540
+ "kind": "function",
1541
+ "fileId": "src/core/semantic-analyzer.js",
1542
+ "exported": false,
1543
+ "loc": {
1544
+ "start": {
1545
+ "line": 158,
1546
+ "column": 0,
1547
+ "index": 5548
1548
+ },
1549
+ "end": {
1550
+ "line": 178,
1551
+ "column": 1,
1552
+ "index": 6182
1553
+ }
1554
+ }
1555
+ },
1556
+ {
1557
+ "id": "src/core/semantic-analyzer.js::analyzeSemantics",
1558
+ "name": "analyzeSemantics",
1559
+ "kind": "function",
1560
+ "fileId": "src/core/semantic-analyzer.js",
1561
+ "exported": false,
1562
+ "loc": {
1563
+ "start": {
1564
+ "line": 185,
1565
+ "column": 0,
1566
+ "index": 6345
1567
+ },
1568
+ "end": {
1569
+ "line": 197,
1570
+ "column": 1,
1571
+ "index": 6691
1572
+ }
1573
+ }
1574
+ },
1575
+ {
1576
+ "id": "src/core/symbol-indexer.js::addSymbol",
1577
+ "name": "addSymbol",
1578
+ "kind": "function",
1579
+ "fileId": "src/core/symbol-indexer.js",
1580
+ "exported": false,
1581
+ "loc": {
1582
+ "start": {
1583
+ "line": 45,
1584
+ "column": 14,
1585
+ "index": 1373
1586
+ },
1587
+ "end": {
1588
+ "line": 55,
1589
+ "column": 9,
1590
+ "index": 1813
1591
+ }
1592
+ }
1593
+ },
1594
+ {
1595
+ "id": "src/core/symbol-indexer.js::propagate",
1596
+ "name": "propagate",
1597
+ "kind": "function",
1598
+ "fileId": "src/core/symbol-indexer.js",
1599
+ "exported": false,
1600
+ "loc": {
1601
+ "start": {
1602
+ "line": 127,
1603
+ "column": 14,
1604
+ "index": 4465
1605
+ },
1606
+ "end": {
1607
+ "line": 156,
1608
+ "column": 9,
1609
+ "index": 5882
1610
+ }
1611
+ }
1612
+ },
1613
+ {
1614
+ "id": "src/core/tsconfig-utils.js::loadTSConfig",
1615
+ "name": "loadTSConfig",
1616
+ "kind": "function",
1617
+ "fileId": "src/core/tsconfig-utils.js",
1618
+ "exported": false,
1619
+ "loc": {
1620
+ "start": {
1621
+ "line": 11,
1622
+ "column": 0,
1623
+ "index": 310
1624
+ },
1625
+ "end": {
1626
+ "line": 71,
1627
+ "column": 1,
1628
+ "index": 2498
1629
+ }
1630
+ }
1631
+ },
1632
+ {
1633
+ "id": "src/core/type-analyzer.js::extractTypeImports",
1634
+ "name": "extractTypeImports",
1635
+ "kind": "function",
1636
+ "fileId": "src/core/type-analyzer.js",
1637
+ "exported": false,
1638
+ "loc": {
1639
+ "start": {
1640
+ "line": 19,
1641
+ "column": 0,
1642
+ "index": 430
1643
+ },
1644
+ "end": {
1645
+ "line": 73,
1646
+ "column": 1,
1647
+ "index": 2278
1648
+ }
1649
+ }
1650
+ },
1651
+ {
1652
+ "id": "src/core/type-analyzer.js::extractInterfaceDependencies",
1653
+ "name": "extractInterfaceDependencies",
1654
+ "kind": "function",
1655
+ "fileId": "src/core/type-analyzer.js",
1656
+ "exported": false,
1657
+ "loc": {
1658
+ "start": {
1659
+ "line": 80,
1660
+ "column": 0,
1661
+ "index": 2438
1662
+ },
1663
+ "end": {
1664
+ "line": 128,
1665
+ "column": 1,
1666
+ "index": 4140
1667
+ }
1668
+ }
1669
+ },
1670
+ {
1671
+ "id": "src/core/type-analyzer.js::extractGenericDependencies",
1672
+ "name": "extractGenericDependencies",
1673
+ "kind": "function",
1674
+ "fileId": "src/core/type-analyzer.js",
1675
+ "exported": false,
1676
+ "loc": {
1677
+ "start": {
1678
+ "line": 135,
1679
+ "column": 0,
1680
+ "index": 4278
1681
+ },
1682
+ "end": {
1683
+ "line": 196,
1684
+ "column": 1,
1685
+ "index": 6307
1686
+ }
1687
+ }
1688
+ },
1689
+ {
1690
+ "id": "src/core/type-analyzer.js::analyzeTypeDependencies",
1691
+ "name": "analyzeTypeDependencies",
1692
+ "kind": "function",
1693
+ "fileId": "src/core/type-analyzer.js",
1694
+ "exported": false,
1695
+ "loc": {
1696
+ "start": {
1697
+ "line": 203,
1698
+ "column": 0,
1699
+ "index": 6445
1700
+ },
1701
+ "end": {
1702
+ "line": 217,
1703
+ "column": 1,
1704
+ "index": 6848
1705
+ }
1706
+ }
1707
+ },
1708
+ {
1709
+ "id": "src/core/type-analyzer.js::extractTypeName",
1710
+ "name": "extractTypeName",
1711
+ "kind": "function",
1712
+ "fileId": "src/core/type-analyzer.js",
1713
+ "exported": false,
1714
+ "loc": {
1715
+ "start": {
1716
+ "line": 222,
1717
+ "column": 0,
1718
+ "index": 6918
1719
+ },
1720
+ "end": {
1721
+ "line": 234,
1722
+ "column": 1,
1723
+ "index": 7248
1724
+ }
1725
+ }
1726
+ },
1727
+ {
1728
+ "id": "src/core/type-analyzer.js::extractComplexTypeName",
1729
+ "name": "extractComplexTypeName",
1730
+ "kind": "function",
1731
+ "fileId": "src/core/type-analyzer.js",
1732
+ "exported": false,
1733
+ "loc": {
1734
+ "start": {
1735
+ "line": 239,
1736
+ "column": 0,
1737
+ "index": 7322
1738
+ },
1739
+ "end": {
1740
+ "line": 265,
1741
+ "column": 1,
1742
+ "index": 8182
1743
+ }
1744
+ }
1745
+ },
1746
+ {
1747
+ "id": "src/core/watcher.js::watch",
1748
+ "name": "watch",
1749
+ "kind": "function",
1750
+ "fileId": "src/core/watcher.js",
1751
+ "exported": false,
1752
+ "loc": {
1753
+ "start": {
1754
+ "line": 3,
1755
+ "column": 0,
1756
+ "index": 41
1757
+ },
1758
+ "end": {
1759
+ "line": 16,
1760
+ "column": 1,
1761
+ "index": 477
1762
+ }
1763
+ }
1764
+ },
1765
+ {
1766
+ "id": "src/engine/context_builder.js::buildContext",
1767
+ "name": "buildContext",
1768
+ "kind": "function",
1769
+ "fileId": "src/engine/context_builder.js",
1770
+ "exported": false,
1771
+ "loc": {
1772
+ "start": {
1773
+ "line": 11,
1774
+ "column": 0,
1775
+ "index": 407
1776
+ },
1777
+ "end": {
1778
+ "line": 151,
1779
+ "column": 1,
1780
+ "index": 6388
1781
+ }
1782
+ }
1783
+ },
1784
+ {
1785
+ "id": "src/engine/context_sorter.js::sortContext",
1786
+ "name": "sortContext",
1787
+ "kind": "function",
1788
+ "fileId": "src/engine/context_sorter.js",
1789
+ "exported": false,
1790
+ "loc": {
1791
+ "start": {
1792
+ "line": 6,
1793
+ "column": 0,
1794
+ "index": 191
1795
+ },
1796
+ "end": {
1797
+ "line": 39,
1798
+ "column": 1,
1799
+ "index": 1392
1800
+ }
1801
+ }
1802
+ },
1803
+ {
1804
+ "id": "src/engine/context_validator.js::validateContext",
1805
+ "name": "validateContext",
1806
+ "kind": "function",
1807
+ "fileId": "src/engine/context_validator.js",
1808
+ "exported": false,
1809
+ "loc": {
1810
+ "start": {
1811
+ "line": 14,
1812
+ "column": 0,
1813
+ "index": 523
1814
+ },
1815
+ "end": {
1816
+ "line": 73,
1817
+ "column": 1,
1818
+ "index": 2853
1819
+ }
1820
+ }
1821
+ },
1822
+ {
1823
+ "id": "src/engine/id-generator.js::stableId",
1824
+ "name": "stableId",
1825
+ "kind": "function",
1826
+ "fileId": "src/engine/id-generator.js",
1827
+ "exported": false,
1828
+ "loc": {
1829
+ "start": {
1830
+ "line": 9,
1831
+ "column": 0,
1832
+ "index": 282
1833
+ },
1834
+ "end": {
1835
+ "line": 14,
1836
+ "column": 1,
1837
+ "index": 641
1838
+ }
1839
+ }
1840
+ },
1841
+ {
1842
+ "id": "src/engine/pass1_facts.js::executePass1",
1843
+ "name": "executePass1",
1844
+ "kind": "function",
1845
+ "fileId": "src/engine/pass1_facts.js",
1846
+ "exported": false,
1847
+ "loc": {
1848
+ "start": {
1849
+ "line": 22,
1850
+ "column": 0,
1851
+ "index": 723
1852
+ },
1853
+ "end": {
1854
+ "line": 127,
1855
+ "column": 1,
1856
+ "index": 4866
1857
+ }
1858
+ }
1859
+ },
1860
+ {
1861
+ "id": "src/engine/pass1_facts.js::normalize",
1862
+ "name": "normalize",
1863
+ "kind": "function",
1864
+ "fileId": "src/engine/pass1_facts.js",
1865
+ "exported": false,
1866
+ "loc": {
1867
+ "start": {
1868
+ "line": 26,
1869
+ "column": 10,
1870
+ "index": 877
1871
+ },
1872
+ "end": {
1873
+ "line": 26,
1874
+ "column": 48,
1875
+ "index": 915
1876
+ }
1877
+ }
1878
+ },
1879
+ {
1880
+ "id": "src/engine/pass2_semantics.js::executePass2",
1881
+ "name": "executePass2",
1882
+ "kind": "function",
1883
+ "fileId": "src/engine/pass2_semantics.js",
1884
+ "exported": false,
1885
+ "loc": {
1886
+ "start": {
1887
+ "line": 24,
1888
+ "column": 0,
1889
+ "index": 898
1890
+ },
1891
+ "end": {
1892
+ "line": 229,
1893
+ "column": 1,
1894
+ "index": 9297
1895
+ }
1896
+ }
1897
+ },
1898
+ {
1899
+ "id": "src/engine/pass2_semantics.js::normalize",
1900
+ "name": "normalize",
1901
+ "kind": "function",
1902
+ "fileId": "src/engine/pass2_semantics.js",
1903
+ "exported": false,
1904
+ "loc": {
1905
+ "start": {
1906
+ "line": 31,
1907
+ "column": 10,
1908
+ "index": 1192
1909
+ },
1910
+ "end": {
1911
+ "line": 31,
1912
+ "column": 48,
1913
+ "index": 1230
1914
+ }
1915
+ }
1916
+ },
1917
+ {
1918
+ "id": "src/engine/pass2_semantics.js::addEdge",
1919
+ "name": "addEdge",
1920
+ "kind": "function",
1921
+ "fileId": "src/engine/pass2_semantics.js",
1922
+ "exported": false,
1923
+ "loc": {
1924
+ "start": {
1925
+ "line": 40,
1926
+ "column": 10,
1927
+ "index": 1559
1928
+ },
1929
+ "end": {
1930
+ "line": 51,
1931
+ "column": 5,
1932
+ "index": 1862
1933
+ }
1934
+ }
1935
+ },
1936
+ {
1937
+ "id": "src/engine/pass3_lifter.js::executePass3",
1938
+ "name": "executePass3",
1939
+ "kind": "function",
1940
+ "fileId": "src/engine/pass3_lifter.js",
1941
+ "exported": false,
1942
+ "loc": {
1943
+ "start": {
1944
+ "line": 14,
1945
+ "column": 0,
1946
+ "index": 419
1947
+ },
1948
+ "end": {
1949
+ "line": 89,
1950
+ "column": 1,
1951
+ "index": 3221
1952
+ }
1953
+ }
1954
+ },
1955
+ {
1956
+ "id": "src/engine/pass4_signals.js::executePass4",
1957
+ "name": "executePass4",
1958
+ "kind": "function",
1959
+ "fileId": "src/engine/pass4_signals.js",
1960
+ "exported": false,
1961
+ "loc": {
1962
+ "start": {
1963
+ "line": 17,
1964
+ "column": 0,
1965
+ "index": 517
1966
+ },
1967
+ "end": {
1968
+ "line": 108,
1969
+ "column": 1,
1970
+ "index": 4261
1971
+ }
1972
+ }
1973
+ },
1974
+ {
1975
+ "id": "src/index.js::analyzeBlastRadius",
1976
+ "name": "analyzeBlastRadius",
1977
+ "kind": "function",
1978
+ "fileId": "src/index.js",
1979
+ "exported": false,
1980
+ "loc": {
1981
+ "start": {
1982
+ "line": 31,
1983
+ "column": 0,
1984
+ "index": 1191
1985
+ },
1986
+ "end": {
1987
+ "line": 80,
1988
+ "column": 1,
1989
+ "index": 3142
1990
+ }
1991
+ }
1992
+ },
1993
+ {
1994
+ "id": "src/index.js::saveToken",
1995
+ "name": "saveToken",
1996
+ "kind": "function",
1997
+ "fileId": "src/index.js",
1998
+ "exported": false,
1999
+ "loc": {
2000
+ "start": {
2001
+ "line": 82,
2002
+ "column": 0,
2003
+ "index": 3146
2004
+ },
2005
+ "end": {
2006
+ "line": 95,
2007
+ "column": 1,
2008
+ "index": 3676
2009
+ }
2010
+ }
2011
+ },
2012
+ {
2013
+ "id": "src/index.js::getToken",
2014
+ "name": "getToken",
2015
+ "kind": "function",
2016
+ "fileId": "src/index.js",
2017
+ "exported": false,
2018
+ "loc": {
2019
+ "start": {
2020
+ "line": 97,
2021
+ "column": 0,
2022
+ "index": 3680
2023
+ },
2024
+ "end": {
2025
+ "line": 109,
2026
+ "column": 1,
2027
+ "index": 4111
2028
+ }
2029
+ }
2030
+ },
2031
+ {
2032
+ "id": "src/index.js::uploadToDatabase",
2033
+ "name": "uploadToDatabase",
2034
+ "kind": "function",
2035
+ "fileId": "src/index.js",
2036
+ "exported": false,
2037
+ "loc": {
2038
+ "start": {
2039
+ "line": 112,
2040
+ "column": 0,
2041
+ "index": 4165
2042
+ },
2043
+ "end": {
2044
+ "line": 213,
2045
+ "column": 1,
2046
+ "index": 8150
2047
+ }
2048
+ }
2049
+ },
2050
+ {
2051
+ "id": "test/determinism-test.js::runDeterminismTest",
2052
+ "name": "runDeterminismTest",
2053
+ "kind": "function",
2054
+ "fileId": "test/determinism-test.js",
2055
+ "exported": false,
2056
+ "loc": {
2057
+ "start": {
2058
+ "line": 9,
2059
+ "column": 0,
2060
+ "index": 254
2061
+ },
2062
+ "end": {
2063
+ "line": 66,
2064
+ "column": 1,
2065
+ "index": 2925
2066
+ }
2067
+ }
2068
+ },
2069
+ {
2070
+ "id": "verify_engine.js::testEngine",
2071
+ "name": "testEngine",
2072
+ "kind": "function",
2073
+ "fileId": "verify_engine.js",
2074
+ "exported": false,
2075
+ "loc": {
2076
+ "start": {
2077
+ "line": 5,
2078
+ "column": 0,
2079
+ "index": 109
2080
+ },
2081
+ "end": {
2082
+ "line": 77,
2083
+ "column": 1,
2084
+ "index": 3036
2085
+ }
2086
+ }
2087
+ },
2088
+ {
2089
+ "id": "verify_engine.js::validateContext",
2090
+ "name": "validateContext",
2091
+ "kind": "function",
2092
+ "fileId": "verify_engine.js",
2093
+ "exported": false,
2094
+ "loc": {
2095
+ "start": {
2096
+ "line": 79,
2097
+ "column": 0,
2098
+ "index": 3040
2099
+ },
2100
+ "end": {
2101
+ "line": 114,
2102
+ "column": 1,
2103
+ "index": 4375
2104
+ }
2105
+ }
2106
+ }
2107
+ ],
2108
+ "metrics": {
2109
+ "files_with_functions": 28,
2110
+ "files_with_high_blast_radius": 0,
2111
+ "total_calls": 39,
2112
+ "total_dependencies": 58,
2113
+ "total_depends_on": 0,
2114
+ "total_edges": 58,
2115
+ "total_files": 39,
2116
+ "total_imports": 66,
2117
+ "total_nodes": 39,
2118
+ "total_owns": 0
2119
+ },
2120
+ "contextSurface": [
2121
+ {
2122
+ "file": "src/core/tsconfig-utils.js",
2123
+ "score": 6.5,
2124
+ "reason": "Blast: 3, Deps: 3"
2125
+ },
2126
+ {
2127
+ "file": "src/engine/context_validator.js",
2128
+ "score": 4.5,
2129
+ "reason": "Blast: 2, Deps: 2"
2130
+ },
2131
+ {
2132
+ "file": "src/core/scanner.js",
2133
+ "score": 4,
2134
+ "reason": "Blast: 3, Deps: 3"
2135
+ },
2136
+ {
2137
+ "file": "src/core/blastRadius.js",
2138
+ "score": 3.5,
2139
+ "reason": "Blast: 2, Deps: 2"
2140
+ },
2141
+ {
2142
+ "file": "src/core/context_builder.js",
2143
+ "score": 3.5,
2144
+ "reason": "Blast: 1, Deps: 1"
2145
+ }
2146
+ ],
2147
+ "assumptions": [
2148
+ "Dynamic imports resolved statically where possible",
2149
+ "Runtime reflection not fully captured",
2150
+ "Only code reachable from entry points analyzed",
2151
+ "Third-party dependencies treated as black boxes",
2152
+ "Build-time code generation not reflected in static analysis"
2153
+ ],
2154
+ "source": {
2155
+ "repo": "https://github.com/leafmintaiAR/ArcVision",
2156
+ "commit": "b63e62db4aedf6ffb21055dd88d13c8a947a7422",
2157
+ "generated_at": "2026-01-13",
2158
+ "arcvision_version": "0.1.0"
2159
+ },
2160
+ "integrity": {
2161
+ "sha256": "5d66b6d2df94ea60fee9dd1321fb82549b4add340b06477d437884e13daa730c"
2162
+ }
2163
+ }