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