diff --git a/docs/language_status/groovy.md b/docs/language_status/groovy.md index f8e86bf51..eb5b08f5f 100644 --- a/docs/language_status/groovy.md +++ b/docs/language_status/groovy.md @@ -146,32 +146,40 @@ Four keys are hard-set to `None` in Groovy's `rules` dict: **No `known_limitation`-named tests exist** in `test_groovy.py` or `test_groovy_strict.py` as of this writing (confirmed via `grep -n "known_limitation"` across both files — zero matches). -One real, current gap is documented instead as -**[#2530](https://github.com/squid-protocol/gitgalaxy/issues/2530) (OPEN)** — filed during this -same session's tri-comparison manual-verification pass, and deliberately left unfixed rather than -patched with a fragile denylist: +One gap was found, mostly fixed, and one narrower residual + one newly-unmasked defect are +documented instead: - **MarkupBuilder / Jenkins-Pipeline-DSL trailing-closure calls misdetected as function - definitions.** `func_start`'s zero-prefix branch (needed to match real bare constructors like - `MyClass(String arg) {`) is syntactically indistinguishable from Groovy's extremely common + definitions — [#2530](https://github.com/squid-protocol/gitgalaxy/issues/2530) (mostly fixed).** + `func_start`'s zero-prefix branch (needed to match real bare constructors like + `MyClass(String arg) {`) was syntactically indistinguishable from Groovy's extremely common "call a builder method with a named-argument map plus a trailing closure" idiom — - `button(name: "clear", type: "submit") { raw _("Dismiss") }`, - `l.layout(title: "...") { ... }`, `stage("Build") { ... }`. This is the standard - `MarkupBuilder`/`NodeBuilder` DSL shape (used pervasively in Jenkins's own `.groovy` view - templates, which replaced Jelly) and also covers Jenkins Pipeline steps (`stage`, `node`, `dir`, - `timeout`) and Gradle DSL blocks. `func_start` already excludes a hand-picked list of known - Gradle keywords for exactly this reason, but an arbitrary builder/tag method name (`div`, `a`, - `button`, `li`, ...) can't be enumerated the same way — the set of possible builder tag names is - unbounded. Measured against the `language-crucible/data/groovy/jenkins_view_groovy/` corpus (29 - files): 57 of 718 total named functions found across the whole Groovy corpus (~8%) come from - this one folder, and essentially all of them are DSL/builder calls misread as definitions - (`div`×9, `span`×7, `li`×7, `a`×7, `ul`×4, `stage`×4, `section`×4, `node`×3, and others), with two - qualified-form cases (`l.layout(...)`, `l.main_panel()`) falling back to the generic - `Unknown_Block` name entirely. Judged a real grammar ambiguity rather than a deterministic - defect — a correct fix needs either a curated (necessarily incomplete) denylist of - HTML/XML-tag-shaped builder names, or a smarter heuristic (e.g. treating a named-argument map as - the sole/first parameter as a builder-call signal a real constructor rarely has), which needs its - own design pass and full-corpus verification rather than a drive-by regex tweak. + `button(name: "clear", type: "submit") { ... }`, `l.layout(title: "...") { ... }`. Fix: a real + Groovy declaration's parameter list can never contain a `key:` token (that's call-site + named-argument sugar only), so branch 2 now rejects a candidate whose parenthesized argument + list contains an identifier immediately followed by `:` with no intervening whitespace + (distinguishing it from a ternary's `cond ? a : b`, which conventionally has a space before the + colon). Verified via a full corpus differential scan: 44 of the 57 misdetections in + `jenkins_view_groovy/` (29 files) resolved, zero legitimate bare constructors lost recall + anywhere in the 201-file corpus (including ones with a colon-containing default like + `MyClass(Map config = [:]) {}` or a ternary default). + + **Residual, still open:** calls with a single *positional* argument and no named-arg map at + all — `stage('Build') { ... }`, `node('label') { ... }`, `dir(path) { ... }` (Jenkins Pipeline + DSL steps) — have no `key:` token to key off of, so this heuristic can't distinguish them from + a real bare constructor taking one string/identifier argument. 13 of the original 57 remain + (`stage`×4, `node`×3, `dir`×2, `withChecks`×1, `recordIssues`×1, plus 2 pre-existing + `Unknown_Block`-fallback qualified-call cases, `l.layout(...)`/`l.main_panel()`) — same class the + issue explicitly scoped out (a curated tag-name denylist is fragile/incomplete by construction). +- **A second, unrelated `func_start` defect unmasked by the above fix — + [#2558](https://github.com/squid-protocol/gitgalaxy/issues/2558) (OPEN).** Removing the + `button(...)` false positive in `hudson_triggers_SlowTriggerAdminMonitor_message.groovy` + revealed that `raw _("Dismiss")` (a paren-less call, Groovy's `_()` i18n-helper convention) on + the very next line was *already* being misdetected too, via branch 1 treating the bare + identifier `raw` as a modifier/type prefix — just silently absorbed as "nested inside `button`" + and never surfaced as its own entry until `button` stopped being (wrongly) detected as an + enclosing function. A distinct root cause in a different branch, filed separately rather than + bundled into #2530's fix. ## 6. Test depth @@ -340,6 +348,12 @@ templates (Jelly's Groovy-based successor). ~19,000 lines scanned. | `func_start` | 851 | 721 (1003 raw pre-shielding-fix; 282 silently dropped, ~57% misnamed `"def"`/truncated where present) | 718 | 0 unexplained | 661/718 (92.1%) — see false-positive class below | | `class_start` | 222 | 286 (100% misnamed `"Anonymous_Class"`; included ~64 fixture-string false positives before the Prism fix) | 222 | 0 unexplained | 222/222 (100%) | +**Update ([#2530](https://github.com/squid-protocol/gitgalaxy/issues/2530), same-week follow-up):** +the MarkupBuilder/Jenkins-DSL named-argument-map fix above takes `func_start` from 718 named +functions to 675 (44 of the 57-occurrence false-positive class removed, 1 new match surfaced by +[#2558](https://github.com/squid-protocol/gitgalaxy/issues/2558)), precision 661/718 (92.1%) → +661/675 (97.9%). See §5 for the residual and the newly-unmasked defect. + Recall: zero real declarations found by the independent ground-truth scanner and missed by GitGalaxy anywhere in the 188-file corpus, for either signal, after accounting for triple-quoted fixture-text spans on both sides. @@ -415,6 +429,11 @@ builder-tag-name denylist is fragile and incomplete by construction; a smarter h "named-argument-map-shaped first parameter" needs its own full-corpus verification to confirm it doesn't trade these false positives for new false negatives on real bare constructors). +**Update:** #2530 was mostly fixed the same week (the named-argument-map heuristic above) — 44 of +these 57 resolved. The 13 residual (single-positional-arg calls, no `key:` token to key off of) +and 1 newly-unmasked defect ([#2558](https://github.com/squid-protocol/gitgalaxy/issues/2558)) are +current as of this doc; see §5. + ### Ledger and manual-verification record The pre-existing ledger shape `groovy/function/existence/agree[gitgalaxy]_vs[tree_sitter]` (721 diff --git a/docs/self_scan/manual_verification.json b/docs/self_scan/manual_verification.json index 90b74293e..7a2647b90 100644 --- a/docs/self_scan/manual_verification.json +++ b/docs/self_scan/manual_verification.json @@ -57,8 +57,8 @@ "verified_by": "Claude Sonnet 5" }, "function": { - "note": "func_start verified against the language-crucible v1.2.0 groovy corpus (188 files, 9 real-world repos -- fineract's Gradle plugin, Gradle's own build-logic/integTest sources, Spock's own core+smoke+spec suites, Jenkins .groovy view templates). tree-sitter has no usable grammar for this language (see NODE_MAPS's own groovy exclusion comment in tree_sitter_accuracy_audit.py) and ctags has zero Groovy support at all (confirmed via `ctags --list-languages`), so this is a genuine 1-tool language despite tree-sitter nominally loading a 'groovy' grammar. Verification method: an independent grep-based ground-truth scan (no shared implementation with func_start) across every one of the 188 files, cross-checked against the real pipeline's function_data output by name, with triple-quoted string spans excluded via quote-parity tracking (both sides must agree a candidate is real top-level code, not fixture text embedded in a multi-line string) -- zero unexplained recall gaps found after fixing three real GitGalaxy defects surfaced along the way: func_start's zero-prefix branch matched the bare 'def' keyword once a quoted Spock feature-method name got correctly blanked for brace-safety (fixed by excluding 'def' from the branch's own exclusion lookahead, plus preserving the quoted name in detector.py's brace-safety shield instead of blanking it); Prism never shielded groovy's \"\"\"/''' multi-line strings at all, letting embedded fixture/template code (Gradle build-script snippets, Spock's own compiler-smoke-test source samples) leak into the real code stream and corrupt extraction for the rest of the file; and _extract_name's generic last-token heuristic silently reduced a quoted multi-word Spock description down to its last word. A manual precision spot-check (50+ random named entries read against source) found one remaining, unfixed defect class: MarkupBuilder/Jenkins-Pipeline-DSL calls with a trailing closure (`button(name: \"clear\") { ... }`) are syntactically indistinguishable from a real zero-prefix declaration and get misdetected the same way -- filed as #2530 (a genuine grammar ambiguity needing its own design pass, not a drive-by regex fix). Confirmed confined to the jenkins_view_groovy/ corpus folder (29 files): all 57 functions detected there are this shape, subtracted from `verified` below. See docs/language_status/groovy.md \u00a79.", - "total": 718, + "note": "func_start verified against the language-crucible v1.2.0 groovy corpus (188 files, 9 real-world repos -- fineract's Gradle plugin, Gradle's own build-logic/integTest sources, Spock's own core+smoke+spec suites, Jenkins .groovy view templates). tree-sitter has no usable grammar for this language (see NODE_MAPS's own groovy exclusion comment in tree_sitter_accuracy_audit.py) and ctags has zero Groovy support at all (confirmed via `ctags --list-languages`), so this is a genuine 1-tool language despite tree-sitter nominally loading a 'groovy' grammar. Verification method: an independent grep-based ground-truth scan (no shared implementation with func_start) across every one of the 188 files, cross-checked against the real pipeline's function_data output by name, with triple-quoted string spans excluded via quote-parity tracking (both sides must agree a candidate is real top-level code, not fixture text embedded in a multi-line string) -- zero unexplained recall gaps found after fixing three real GitGalaxy defects surfaced along the way: func_start's zero-prefix branch matched the bare 'def' keyword once a quoted Spock feature-method name got correctly blanked for brace-safety (fixed by excluding 'def' from the branch's own exclusion lookahead, plus preserving the quoted name in detector.py's brace-safety shield instead of blanking it); Prism never shielded groovy's \"\"\"/''' multi-line strings at all, letting embedded fixture/template code (Gradle build-script snippets, Spock's own compiler-smoke-test source samples) leak into the real code stream and corrupt extraction for the rest of the file; and _extract_name's generic last-token heuristic silently reduced a quoted multi-word Spock description down to its last word. A manual precision spot-check (50+ random named entries read against source) found one remaining defect class: MarkupBuilder/Jenkins-Pipeline-DSL calls with a trailing closure (`button(name: \"clear\") { ... }`) syntactically indistinguishable from a real zero-prefix declaration, filed as #2530 -- confirmed confined to the jenkins_view_groovy/ corpus folder (29 files), all 57 functions detected there this shape. #2530 mostly fixed the same week: a real Groovy declaration's parameter list can never contain a `key:` token (call-site named-argument sugar only), so func_start's zero-prefix branch now rejects a candidate whose parenthesized argument list contains an identifier immediately followed by `:` with no intervening whitespace. 44 of the 57 resolved; full 201-file corpus differential scan confirmed zero legitimate bare constructors lost recall anywhere. 13 residual (single-positional-arg DSL calls with no `key:` token to key off -- stage/node/dir/withChecks/recordIssues -- plus 2 pre-existing Unknown_Block-fallback qualified-call cases) remain open under #2530 as a known, scoped-out limitation (a curated builder-tag-name denylist would be fragile/incomplete by construction). Fixing #2530's button(...) false positive also unmasked one new, unrelated func_start defect (branch 1 treating a bare identifier before a paren-less call as a modifier/type prefix -- 'raw _(\"Dismiss\")' misdetected once no longer masked by the nested button false positive), filed separately as #2558. total/verified below reflect the #2530-fixed state: 675 total (718 - 44 removed + 1 from #2558), 661 still verified-correct (unchanged; the 14 remaining are all still-open false positives). See docs/language_status/groovy.md \u00a75/\u00a79.", + "total": 675, "verified": 661, "verified_at": "2026-08-31", "verified_by": "Claude Sonnet 5" diff --git a/docs/self_scan/tri_comparison_chart.svg b/docs/self_scan/tri_comparison_chart.svg index 3aa67a186..7c15ff65d 100644 --- a/docs/self_scan/tri_comparison_chart.svg +++ b/docs/self_scan/tri_comparison_chart.svg @@ -430,10 +430,10 @@ groovy -718 +675 -661/718** +661/675** G diff --git a/docs/self_scan/tri_comparison_ledger.json b/docs/self_scan/tri_comparison_ledger.json index 785cf6a35..4be7e845e 100644 --- a/docs/self_scan/tri_comparison_ledger.json +++ b/docs/self_scan/tri_comparison_ledger.json @@ -13,7 +13,7 @@ "investigated_at": "2026-08-20T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "agc_assembly", - "last_reconciled_at": "2026-08-31T16:33:35Z", + "last_reconciled_at": "2026-08-31T17:19:57Z", "last_seen_count": 215, "last_seen_examples": [ { @@ -118,7 +118,7 @@ "investigated_at": "2026-08-20T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "agc_assembly", - "last_reconciled_at": "2026-08-31T16:33:35Z", + "last_reconciled_at": "2026-08-31T17:19:57Z", "last_seen_count": 37, "last_seen_examples": [ { @@ -221,7 +221,7 @@ "investigated_at": "2026-08-20T22:17:39Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch needed -- root cause was immediately clear from source)", "language": "apex", - "last_reconciled_at": "2026-08-31T16:33:37Z", + "last_reconciled_at": "2026-08-31T17:19:59Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -260,7 +260,7 @@ "investigated_at": "2026-08-31", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "assembly", - "last_reconciled_at": "2026-08-31T16:33:39Z", + "last_reconciled_at": "2026-08-31T17:20:03Z", "last_seen_count": 1791, "last_seen_examples": [ { @@ -365,7 +365,7 @@ "investigated_at": "2026-08-31", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "assembly", - "last_reconciled_at": "2026-08-31T16:33:39Z", + "last_reconciled_at": "2026-08-31T17:20:03Z", "last_seen_count": 21, "last_seen_examples": [ { @@ -469,7 +469,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 23, "last_seen_examples": [ { @@ -583,7 +583,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -688,7 +688,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 525, "last_seen_examples": [ { @@ -802,7 +802,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed) -- corrected after cross-referencing #1837", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -835,7 +835,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -868,7 +868,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -985,7 +985,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -1036,7 +1036,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved + fixed directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -1123,7 +1123,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -1176,7 +1176,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly, no dispatch needed)", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -1235,7 +1235,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 17, "last_seen_examples": [ { @@ -1339,7 +1339,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 74, "last_seen_examples": [ { @@ -1452,7 +1452,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "c", - "last_reconciled_at": "2026-08-31T16:33:43Z", + "last_reconciled_at": "2026-08-31T17:20:09Z", "last_seen_count": 88, "last_seen_examples": [ { @@ -1557,7 +1557,7 @@ "investigated_at": "2026-08-19", "investigated_by": "gemini-3.1-pro-high (agy), dispatched via tri-comparison-ledger-sweep, self-corrected and reviewed by claude-sonnet-5", "language": "cobol", - "last_reconciled_at": "2026-08-31T16:33:59Z", + "last_reconciled_at": "2026-08-31T17:20:27Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -1630,7 +1630,7 @@ "investigated_at": "2026-08-28", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "cobol", - "last_reconciled_at": "2026-08-31T16:33:59Z", + "last_reconciled_at": "2026-08-31T17:20:27Z", "last_seen_count": 164, "last_seen_examples": [ { @@ -1733,7 +1733,7 @@ "investigated_at": "2026-08-28", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "cobol", - "last_reconciled_at": "2026-08-31T16:33:59Z", + "last_reconciled_at": "2026-08-31T17:20:27Z", "last_seen_count": 3040, "last_seen_examples": [ { @@ -1838,7 +1838,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation + fix (gitgalaxy#2480 follow-up)", "language": "cobol", - "last_reconciled_at": "2026-08-31T16:33:59Z", + "last_reconciled_at": "2026-08-31T17:20:27Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -1934,7 +1934,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -1976,7 +1976,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -2018,7 +2018,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 84, "last_seen_examples": [ { @@ -2132,7 +2132,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -2246,7 +2246,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -2288,7 +2288,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 61, "last_seen_examples": [ { @@ -2402,7 +2402,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2434,7 +2434,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2465,7 +2465,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 76, "last_seen_examples": [ { @@ -2569,7 +2569,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -2683,7 +2683,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -2716,7 +2716,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 30, "last_seen_examples": [ { @@ -2830,7 +2830,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -2944,7 +2944,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -3057,7 +3057,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 64, "last_seen_examples": [ { @@ -3161,7 +3161,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 135, "last_seen_examples": [ { @@ -3274,7 +3274,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "cpp", - "last_reconciled_at": "2026-08-31T16:34:02Z", + "last_reconciled_at": "2026-08-31T17:20:33Z", "last_seen_count": 195, "last_seen_examples": [ { @@ -3378,7 +3378,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -3483,7 +3483,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -3552,7 +3552,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -3629,7 +3629,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -3728,7 +3728,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -3761,7 +3761,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -3851,7 +3851,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -3892,7 +3892,7 @@ "investigated_at": "2026-08-21T20:06:45Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -3925,7 +3925,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 26, "last_seen_examples": [ { @@ -4029,7 +4029,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 271, "last_seen_examples": [ { @@ -4143,7 +4143,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -4203,7 +4203,7 @@ "investigated_at": "2026-08-21T18:13:27Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -4236,7 +4236,7 @@ "investigated_at": "2026-08-21T18:13:44Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 108, "last_seen_examples": [ { @@ -4352,7 +4352,7 @@ "investigated_at": "2026-08-21T21:45:53Z", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 46, "last_seen_examples": [ { @@ -4465,7 +4465,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 317, "last_seen_examples": [ { @@ -4569,7 +4569,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "csharp", - "last_reconciled_at": "2026-08-31T16:34:06Z", + "last_reconciled_at": "2026-08-31T17:20:38Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -4602,7 +4602,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T16:34:08Z", + "last_reconciled_at": "2026-08-31T17:20:40Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -4716,7 +4716,7 @@ "investigated_at": "2026-08-30T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T16:34:08Z", + "last_reconciled_at": "2026-08-31T17:20:40Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -4785,7 +4785,7 @@ "investigated_at": "2026-08-30T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "css", - "last_reconciled_at": "2026-08-31T16:34:08Z", + "last_reconciled_at": "2026-08-31T17:20:40Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -4843,7 +4843,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T16:34:11Z", + "last_reconciled_at": "2026-08-31T17:20:44Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -4914,7 +4914,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T16:34:11Z", + "last_reconciled_at": "2026-08-31T17:20:44Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -5009,7 +5009,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "dart", - "last_reconciled_at": "2026-08-31T16:34:11Z", + "last_reconciled_at": "2026-08-31T17:20:44Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5039,7 +5039,7 @@ "investigated_at": "2026-08-31T00:00:00Z", "investigated_by": "Claude Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "embedded_python", - "last_reconciled_at": "2026-08-31T16:34:12Z", + "last_reconciled_at": "2026-08-31T17:20:47Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5070,7 +5070,7 @@ "investigated_at": "2026-08-31T00:00:00Z", "investigated_by": "Claude Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "embedded_python", - "last_reconciled_at": "2026-08-31T16:34:12Z", + "last_reconciled_at": "2026-08-31T17:20:47Z", "last_seen_count": 69, "last_seen_examples": [ { @@ -5174,7 +5174,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 8, "last_seen_examples": [ { @@ -5275,7 +5275,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5307,7 +5307,7 @@ "investigated_at": "2026-08-21T00:00:00Z", "investigated_by": "Claude Sonnet 5, direct investigation (surfaced while re-blessing the tri-comparison chart after #1973/#1985)", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5339,7 +5339,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5370,7 +5370,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5402,7 +5402,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 15, "last_seen_examples": [ { @@ -5516,7 +5516,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -5560,7 +5560,7 @@ "investigated_at": "2026-08-21T23:35:49Z", "investigated_by": "Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -5592,7 +5592,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "fortran", - "last_reconciled_at": "2026-08-31T16:34:15Z", + "last_reconciled_at": "2026-08-31T17:20:52Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -5701,7 +5701,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "go", - "last_reconciled_at": "2026-08-31T16:34:17Z", + "last_reconciled_at": "2026-08-31T17:20:54Z", "last_seen_count": 75, "last_seen_examples": [ { @@ -5813,7 +5813,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "go", - "last_reconciled_at": "2026-08-31T16:34:17Z", + "last_reconciled_at": "2026-08-31T17:20:54Z", "last_seen_count": 75, "last_seen_examples": [ { @@ -5917,7 +5917,7 @@ "investigated_at": "2026-08-31T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "groovy", - "last_reconciled_at": "2026-08-31T16:34:18Z", + "last_reconciled_at": "2026-08-31T17:20:56Z", "last_seen_count": 721, "last_seen_examples": [ { @@ -6021,7 +6021,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -6133,7 +6133,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -6238,7 +6238,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6271,7 +6271,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6304,7 +6304,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (dispatched agent investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 102, "last_seen_examples": [ { @@ -6418,7 +6418,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (dispatched agent investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 69, "last_seen_examples": [ { @@ -6534,7 +6534,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (session investigation)", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6566,7 +6566,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6598,7 +6598,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "haskell", - "last_reconciled_at": "2026-08-31T16:34:19Z", + "last_reconciled_at": "2026-08-31T17:20:58Z", "last_seen_count": 91, "last_seen_examples": [ { @@ -6712,7 +6712,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T16:34:20Z", + "last_reconciled_at": "2026-08-31T17:21:00Z", "last_seen_count": 37, "last_seen_examples": [ { @@ -6826,7 +6826,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T16:34:20Z", + "last_reconciled_at": "2026-08-31T17:21:00Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -6859,7 +6859,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "html", - "last_reconciled_at": "2026-08-31T16:34:20Z", + "last_reconciled_at": "2026-08-31T17:21:00Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -6901,7 +6901,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 28, "last_seen_examples": [ { @@ -7015,7 +7015,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -7129,7 +7129,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 28, "last_seen_examples": [ { @@ -7242,7 +7242,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -7275,7 +7275,7 @@ "investigated_at": "2026-08-22T01:15:53Z", "investigated_by": "Sonnet 5, direct investigation via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -7326,7 +7326,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 315, "last_seen_examples": [ { @@ -7440,7 +7440,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "java", - "last_reconciled_at": "2026-08-31T16:34:21Z", + "last_reconciled_at": "2026-08-31T17:21:02Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -7491,7 +7491,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 93, "last_seen_examples": [ { @@ -7605,7 +7605,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -7692,7 +7692,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -7732,7 +7732,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 45, "last_seen_examples": [ { @@ -7836,7 +7836,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -7950,7 +7950,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -8028,7 +8028,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 265, "last_seen_examples": [ { @@ -8144,7 +8144,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 189, "last_seen_examples": [ { @@ -8257,7 +8257,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 194, "last_seen_examples": [ { @@ -8361,7 +8361,7 @@ "investigated_at": "2026-08-21", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "javascript", - "last_reconciled_at": "2026-08-31T16:34:23Z", + "last_reconciled_at": "2026-08-31T17:21:04Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8394,7 +8394,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T16:34:24Z", + "last_reconciled_at": "2026-08-31T17:21:08Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -8447,7 +8447,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T16:34:24Z", + "last_reconciled_at": "2026-08-31T17:21:08Z", "last_seen_count": 15, "last_seen_examples": [ { @@ -8561,7 +8561,7 @@ "investigated_at": "2026-08-22T11:45:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T16:34:24Z", + "last_reconciled_at": "2026-08-31T17:21:08Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8594,7 +8594,7 @@ "investigated_at": "2026-08-22T11:40:48Z", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep (direct investigation, no Gemini dispatch -- small occurrence counts, answer was directly checkable)", "language": "kotlin", - "last_reconciled_at": "2026-08-31T16:34:24Z", + "last_reconciled_at": "2026-08-31T17:21:08Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8627,7 +8627,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8658,7 +8658,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 42, "last_seen_examples": [ { @@ -8772,7 +8772,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -8850,7 +8850,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -8883,7 +8883,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 487, "last_seen_examples": [ { @@ -8997,7 +8997,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 22, "last_seen_examples": [ { @@ -9111,7 +9111,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9144,7 +9144,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "lua", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:14Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -9259,7 +9259,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:15Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -9316,7 +9316,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:15Z", "last_seen_count": 76, "last_seen_examples": [ { @@ -9421,7 +9421,7 @@ "investigated_at": "2026-08-24T03:52:19Z", "investigated_by": "Antigravity (direct source read)", "language": "m4", - "last_reconciled_at": "2026-08-31T16:34:28Z", + "last_reconciled_at": "2026-08-31T17:21:15Z", "last_seen_count": 36, "last_seen_examples": [ { @@ -9525,7 +9525,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "makefile", - "last_reconciled_at": "2026-08-31T16:34:29Z", + "last_reconciled_at": "2026-08-31T17:21:16Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9560,7 +9560,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "matlab", - "last_reconciled_at": "2026-08-31T16:34:30Z", + "last_reconciled_at": "2026-08-31T17:21:18Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9592,7 +9592,7 @@ "investigated_at": null, "investigated_by": null, "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -9634,7 +9634,7 @@ "investigated_at": "2026-08-25T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -9678,7 +9678,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 89, "last_seen_examples": [ { @@ -9792,7 +9792,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 104, "last_seen_examples": [ { @@ -9908,7 +9908,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9940,7 +9940,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -9974,7 +9974,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -10015,7 +10015,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "objective-c", - "last_reconciled_at": "2026-08-31T16:34:31Z", + "last_reconciled_at": "2026-08-31T17:21:20Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -10055,7 +10055,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10088,7 +10088,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10120,7 +10120,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10150,7 +10150,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 12, "last_seen_examples": [ { @@ -10264,7 +10264,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -10351,7 +10351,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -10440,7 +10440,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10474,7 +10474,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10506,7 +10506,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation correcting a prior misdiagnosis", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 122, "last_seen_examples": [ { @@ -10619,7 +10619,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "perl", - "last_reconciled_at": "2026-08-31T16:34:35Z", + "last_reconciled_at": "2026-08-31T17:21:26Z", "last_seen_count": 122, "last_seen_examples": [ { @@ -10723,12 +10723,12 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "php", - "last_reconciled_at": "2026-08-31T16:34:38Z", + "last_reconciled_at": "2026-08-31T17:21:30Z", "last_seen_count": 1, "last_seen_examples": [ { "file_path": "laravel_core/BladeCompiler.php", - "name": "AnonymousClassa08aab890100", + "name": "AnonymousClassea70ff800100", "readings": { "ctags": 342, "gitgalaxy": null, @@ -10756,7 +10756,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "php", - "last_reconciled_at": "2026-08-31T16:34:38Z", + "last_reconciled_at": "2026-08-31T17:21:30Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10789,7 +10789,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "php", - "last_reconciled_at": "2026-08-31T16:34:38Z", + "last_reconciled_at": "2026-08-31T17:21:30Z", "last_seen_count": 68, "last_seen_examples": [ { @@ -10902,7 +10902,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "php", - "last_reconciled_at": "2026-08-31T16:34:38Z", + "last_reconciled_at": "2026-08-31T17:21:30Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -10934,7 +10934,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -11039,7 +11039,7 @@ "investigated_at": "2026-08-29", "investigated_by": "Claude Sonnet 5, dispatched via tri-comparison-ledger-sweep", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11070,7 +11070,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11139,7 +11139,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11172,7 +11172,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -11285,7 +11285,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "powershell", - "last_reconciled_at": "2026-08-31T16:34:40Z", + "last_reconciled_at": "2026-08-31T17:21:34Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11317,7 +11317,7 @@ "investigated_at": "2026-08-21T03:23:52Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -11376,7 +11376,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -11432,7 +11432,7 @@ "investigated_at": "2026-08-21T03:23:52Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -11465,7 +11465,7 @@ "investigated_at": "2026-08-21T12:03:03Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 100, "last_seen_examples": [ { @@ -11581,7 +11581,7 @@ "investigated_at": "2026-08-21T12:03:03Z", "investigated_by": "claude sonnet 5, tri-comparison-ledger-sweep (direct investigation, no dispatch needed)", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11650,7 +11650,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 5, "last_seen_examples": [ { @@ -11718,7 +11718,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "python", - "last_reconciled_at": "2026-08-31T16:34:47Z", + "last_reconciled_at": "2026-08-31T17:21:44Z", "last_seen_count": 100, "last_seen_examples": [ { @@ -11824,7 +11824,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T16:34:48Z", + "last_reconciled_at": "2026-08-31T17:21:45Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -11866,7 +11866,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T16:34:48Z", + "last_reconciled_at": "2026-08-31T17:21:45Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -11944,7 +11944,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T16:34:48Z", + "last_reconciled_at": "2026-08-31T17:21:45Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -11995,7 +11995,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "ruby", - "last_reconciled_at": "2026-08-31T16:34:48Z", + "last_reconciled_at": "2026-08-31T17:21:45Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -12073,7 +12073,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "ruby", - "last_reconciled_at": "2026-08-31T16:34:48Z", + "last_reconciled_at": "2026-08-31T17:21:45Z", "last_seen_count": 9, "last_seen_examples": [ { @@ -12169,7 +12169,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -12283,7 +12283,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly via live ctags run, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -12336,7 +12336,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -12449,7 +12449,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 25, "last_seen_examples": [ { @@ -12555,7 +12555,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 3, "last_seen_examples": [ { @@ -12606,7 +12606,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep, 2 rounds with self-correction), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 21, "last_seen_examples": [ { @@ -12718,7 +12718,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Gemini (dispatched via tri-comparison-ledger-sweep), confirmed by Claude Sonnet 5", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 21, "last_seen_examples": [ { @@ -12832,7 +12832,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 83, "last_seen_examples": [ { @@ -12946,7 +12946,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -12979,7 +12979,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved directly via live ctags run, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13014,7 +13014,7 @@ "investigated_at": "2026-08-19T00:00:00Z", "investigated_by": "Claude Sonnet 5 (resolved from existing Claim 6 documentation, no dispatch)", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 152, "last_seen_examples": [ { @@ -13127,7 +13127,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "rust", - "last_reconciled_at": "2026-08-31T16:34:51Z", + "last_reconciled_at": "2026-08-31T17:21:49Z", "last_seen_count": 152, "last_seen_examples": [ { @@ -13233,7 +13233,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "scala", - "last_reconciled_at": "2026-08-31T16:34:52Z", + "last_reconciled_at": "2026-08-31T17:21:51Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -13336,7 +13336,7 @@ "investigated_at": "2026-08-20", "investigated_by": "gemini-3.1-pro-high (agy), dispatched via tri-comparison-ledger-sweep, reviewed and fixed by claude-sonnet-5", "language": "scheme", - "last_reconciled_at": "2026-08-31T16:34:54Z", + "last_reconciled_at": "2026-08-31T17:21:56Z", "last_seen_count": 84, "last_seen_examples": [ { @@ -13443,7 +13443,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "scheme", - "last_reconciled_at": "2026-08-31T16:34:54Z", + "last_reconciled_at": "2026-08-31T17:21:56Z", "last_seen_count": 50, "last_seen_examples": [ { @@ -13545,7 +13545,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T16:34:57Z", + "last_reconciled_at": "2026-08-31T17:22:00Z", "last_seen_count": 11, "last_seen_examples": [ { @@ -13659,7 +13659,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T16:34:57Z", + "last_reconciled_at": "2026-08-31T17:22:00Z", "last_seen_count": 14, "last_seen_examples": [ { @@ -13773,7 +13773,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T16:34:57Z", + "last_reconciled_at": "2026-08-31T17:22:00Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13806,7 +13806,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T16:34:57Z", + "last_reconciled_at": "2026-08-31T17:22:00Z", "last_seen_count": 41, "last_seen_examples": [ { @@ -13920,7 +13920,7 @@ "investigated_at": "2026-08-28T23:59:00Z", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "shell", - "last_reconciled_at": "2026-08-31T16:34:57Z", + "last_reconciled_at": "2026-08-31T17:22:00Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -13956,7 +13956,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "solidity", - "last_reconciled_at": "2026-08-31T16:34:58Z", + "last_reconciled_at": "2026-08-31T17:22:01Z", "last_seen_count": 6, "last_seen_examples": [ { @@ -14026,7 +14026,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:03Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14066,7 +14066,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:03Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -14146,7 +14146,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "sqlite", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:03Z", "last_seen_count": 734, "last_seen_examples": [ { @@ -14248,7 +14248,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:05Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14289,7 +14289,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:05Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -14322,7 +14322,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "swift", - "last_reconciled_at": "2026-08-31T16:34:59Z", + "last_reconciled_at": "2026-08-31T17:22:05Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -14354,7 +14354,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 13, "last_seen_examples": [ { @@ -14473,7 +14473,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14515,7 +14515,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), direct investigation via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 93, "last_seen_examples": [ { @@ -14629,7 +14629,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 16, "last_seen_examples": [ { @@ -14745,7 +14745,7 @@ "investigated_at": "2026-08-30", "investigated_by": "Claude (Sonnet 5), enriched during docs/language_status/tcl.md write-up via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14786,7 +14786,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14830,7 +14830,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14875,7 +14875,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "tcl", - "last_reconciled_at": "2026-08-31T16:35:01Z", + "last_reconciled_at": "2026-08-31T17:22:07Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14915,7 +14915,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -14957,7 +14957,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 501, "last_seen_examples": [ { @@ -15069,7 +15069,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 4, "last_seen_examples": [ { @@ -15129,7 +15129,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -15162,7 +15162,7 @@ "investigated_at": "2026-08-26T16:02:21Z", "investigated_by": "Claude (Sonnet 5), tri-comparison-ledger-sweep skill", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 7, "last_seen_examples": [ { @@ -15249,7 +15249,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 204, "last_seen_examples": [ { @@ -15363,7 +15363,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 2226, "last_seen_examples": [ { @@ -15479,7 +15479,7 @@ "investigated_at": "2026-08-24T04:14:26Z", "investigated_by": "Antigravity (direct sweep)", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15520,7 +15520,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15562,7 +15562,7 @@ "investigated_at": "2026-08-26T16:02:21Z", "investigated_by": "Claude (Sonnet 5), tri-comparison-ledger-sweep skill", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15605,7 +15605,7 @@ "investigated_at": "2026-08-26T00:00:00Z", "investigated_by": "Claude (Sonnet 5), dispatched via tri-comparison-ledger-sweep", "language": "typescript", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:14Z", "last_seen_count": 183, "last_seen_examples": [ { @@ -15708,7 +15708,7 @@ "investigated_at": "2026-08-27", "investigated_by": "claude-sonnet-5, dispatched via tri-comparison-ledger-sweep", "language": "yacc", - "last_reconciled_at": "2026-08-31T16:35:06Z", + "last_reconciled_at": "2026-08-31T17:22:15Z", "last_seen_count": 18, "last_seen_examples": [ { @@ -15815,7 +15815,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T16:35:12Z", + "last_reconciled_at": "2026-08-31T17:22:22Z", "last_seen_count": 1, "last_seen_examples": [ { @@ -15850,7 +15850,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T16:35:12Z", + "last_reconciled_at": "2026-08-31T17:22:22Z", "last_seen_count": 2, "last_seen_examples": [ { @@ -15893,7 +15893,7 @@ "investigated_at": "2026-08-23T18:02:16Z", "investigated_by": "Antigravity", "language": "zig", - "last_reconciled_at": "2026-08-31T16:35:12Z", + "last_reconciled_at": "2026-08-31T17:22:22Z", "last_seen_count": 1, "last_seen_examples": [ { diff --git a/gitgalaxy/standards/language_standards/languages/groovy.py b/gitgalaxy/standards/language_standards/languages/groovy.py index 5c085ebfc..b9d537e03 100644 --- a/gitgalaxy/standards/language_standards/languages/groovy.py +++ b/gitgalaxy/standards/language_standards/languages/groovy.py @@ -148,7 +148,7 @@ r"([A-Za-z_$][\w_$]*|\"[^\"]*\"|'[^']*')(?=[ \t\n]*\()" r"|" r"(?!(?:if|for|while|switch|catch|synchronized|new|return|class|interface|enum|trait|def|implementation|testImplementation|api|compileOnly|runtimeOnly|classpath|dependency|from|file|mavenCentral|plugins|dependencies|repositories|task|project|allprojects|subprojects|ext)\b)" - r"([A-Za-z_$][\w_$]*|\"[^\"]*\"|'[^']*')(?=[ \t\n]*\([^)]*\)[ \t\n]*(?:throws[ \t\n]+[\w.,<> \t\n]+)?[ \t\n]*\{)" + r"([A-Za-z_$][\w_$]*|\"[^\"]*\"|'[^']*')(?=[ \t\n]*\((?![^)]*\b[A-Za-z_$][\w$]*:(?!:))[^)]*\)[ \t\n]*(?:throws[ \t\n]+[\w.,<> \t\n]+)?[ \t\n]*\{)" r")", re.M, ), diff --git a/tests/extraction/languages/test_groovy.py b/tests/extraction/languages/test_groovy.py index 15068b3ea..42fa07a1b 100644 --- a/tests/extraction/languages/test_groovy.py +++ b/tests/extraction/languages/test_groovy.py @@ -42,6 +42,10 @@ ("@Override\nprotected > List sort(List list) throws Exception {", "sort"), ("java.lang.String[] fullyQualifiedArrayReturn(int a) {", "fullyQualifiedArrayReturn"), ("MyClass(String constructorArg) {", "MyClass"), + # #2530: a bare constructor whose default value is an empty map + # literal (`[:]`) has a colon, but not adjacent to an identifier + # the way a named-arg call's `key:` is -- must still match. + ("MyClass(Map config = [:]) {", "MyClass"), ], "invalid": [ "if (condition()) {", @@ -51,6 +55,14 @@ "/* def hiddenMethod() { */", '"def stringMethod() {"', "def myClosure = { -> }", + # #2530: MarkupBuilder/Jenkins-DSL named-argument-map calls with a + # trailing closure are syntactically identical to a bare zero- + # prefix declaration otherwise -- the named-arg `key:` shape is + # the discriminator (real declarations never contain one). + 'div(class: "empty-state-block") {', + 'button(name: "clear", type: "submit") {', + "timeout(time: 6, unit: 'HOURS') {", + "a(href: \"newJob\", class: \"content-block__link\") {", ], "pathological": [ ("public \n void \n weirdSpacing \n ( \n ) \n {", "weirdSpacing"), diff --git a/tests/extraction/languages/test_groovy_strict.py b/tests/extraction/languages/test_groovy_strict.py index 68ffc76c9..1579ac138 100644 --- a/tests/extraction/languages/test_groovy_strict.py +++ b/tests/extraction/languages/test_groovy_strict.py @@ -674,3 +674,54 @@ def test_groovy_dead_code_and_doc_no_false_collision(): block_dead_code = "/* class Foo {} */" assert dead_code.search(block_dead_code) assert not doc.search(block_dead_code), "single-star block comment incorrectly triggered doc" + + +def test_groovy_func_start_markup_builder_dsl_call_false_positive_regression(): + """ + #2530: func_start's zero-prefix branch (needed to match a real bare + constructor, `MyClass(String arg) {`) is syntactically indistinguishable + from Groovy's MarkupBuilder/NodeBuilder DSL idiom -- a method call with + a named-argument map plus a trailing closure (`div(class: "x") { ... }`, + `button(name: "clear", type: "submit") { ... }`). Confirmed against the + `language-crucible` `jenkins_view_groovy/` corpus (29 files): 44 of the + 57 misdetected "functions" in that folder were this exact shape. + + Fix: a real Groovy declaration's parameter list can never contain a + `key:` token (that syntax is call-site named-argument sugar only), so + branch 2 now rejects a candidate whose parenthesized argument list + contains an identifier immediately followed by `:` (no intervening + whitespace, to tell it apart from a ternary's `cond ? a : b`, which + conventionally has a space before the colon). + + Verified via a full corpus differential scan (galaxyscope --db-only, + 201 files, 1135 -> 1092 total functions): all 44 removed matches were + in `jenkins_view_groovy/`, zero removals anywhere else in the corpus -- + no legitimate bare constructor lost recall. `div`/`section`/`ul`/`li`/ + `stage`(single-positional-arg Jenkins Pipeline steps like `stage('x') + { }`/`node('x') { }`/`dir(x) { }`, which have no named-arg map at all) + remain a known, unaddressed residual -- same class the issue explicitly + scoped out (a curated tag-name denylist is fragile/incomplete by + construction). + """ + func_start = GROOVY_RULES["func_start"] + + dsl_builder_calls = [ + 'div(class: "empty-state-block") {', + 'form(method: "post", name: "clear", action: "x") {', + 'button(name: "clear", type: "submit", class: "jenkins-button") {', + "timeout(time: 6, unit: 'HOURS') {", + "withChecks(name: 'Tests', includeStage: true) {", + "a(href: \"newJob\", class: \"content-block__link\") {", + ] + for snippet in dsl_builder_calls: + assert not func_start.search(snippet), f"func_start incorrectly matched a DSL builder call: {snippet!r}" + + # Real bare constructors/methods -- including ones that take a Map + # literal or a colon-containing default -- must still match. + assert func_start.search("MyClass(String constructorArg) {") + assert func_start.search("MyClass(Map config = [:]) {") + match = func_start.search("MyClass(String x = cond ? a : b) {") + assert match and match.group(0).strip().startswith("MyClass"), ( + "func_start should still match a bare constructor whose default value is a ternary " + "(space-before-colon), only the tight `key:` named-arg shape is excluded" + ) diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index f70f53554..c6d77f9d2 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T14:24:03.836512+00:00", - "Total Scan Duration": "53.06 seconds" + "Analysis ISO Timestamp": "2026-08-31T16:52:43.293979+00:00", + "Total Scan Duration": "52.43 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -236,9 +236,9 @@ } }, "health": { - "avg_cognitive_load": 29.832, + "avg_cognitive_load": 29.833, "avg_safety_score": 47.587, - "avg_tech_debt": 42.544, + "avg_tech_debt": 42.493, "avg_documentation": 29.612 }, "composition": { @@ -375,7 +375,7 @@ "groovy": { "files": 188, "loc": 8170, - "impact": 2931.6400000000012 + "impact": 2836.740000000001 }, "java": { "files": 14, @@ -2976,12 +2976,12 @@ }, "groovy/jenkins_view_groovy": { "file_count": 30, - "total_mass": 582.2, + "total_mass": 487.3, "avg_exposures": { - "cognitive_load": 10.17, + "cognitive_load": 10.19, "safety_score": 23.62, - "tech_debt": 15.3, - "verification": 6.91, + "tech_debt": 10.49, + "verification": 4.3, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 10.55, @@ -333012,9 +333012,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6773.25, + "X": -6770.88, "Y": -18.75, - "Z": -4424.57 + "Z": -4422.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333203,9 +333203,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6983.54, + "X": -6981.17, "Y": 2.31, - "Z": -5329.49 + "Z": -5327.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333522,9 +333522,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7325.02, + "X": -7322.65, "Y": 23.75, - "Z": -4634.29 + "Z": -4632.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -334525,9 +334525,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7020.23, + "X": -7017.86, "Y": 32.59, - "Z": -4939.04 + "Z": -4937.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7381.25, + "X": 7380.28, "Y": 165.91, - "Z": -8429.86 + "Z": -8428.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7000.64, + "X": 6999.67, "Y": 265.38, - "Z": -7714.79 + "Z": -7713.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6788.84, + "X": 6787.87, "Y": 225.2, - "Z": -7950.44 + "Z": -7949.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7826.31, + "X": 7825.34, "Y": 134.51, - "Z": -8175.65 + "Z": -8174.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7639.45, + "X": 7638.48, "Y": 311.63, - "Z": -7254.99 + "Z": -7253.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7293.9, + "X": 7292.93, "Y": 257.91, - "Z": -7909.88 + "Z": -7908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7203.08, + "X": 7202.11, "Y": 404.61, - "Z": -7210.29 + "Z": -7209.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453324,9 +453324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6583.32, + "X": -6581.2, "Y": 172.11, - "Z": -5078.48 + "Z": -5076.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -453481,9 +453481,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6959.91, + "X": -6957.79, "Y": 31.7, - "Z": -5533.66 + "Z": -5531.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453659,9 +453659,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6474.26, + "X": -6472.14, "Y": 134.89, - "Z": -5522.32 + "Z": -5520.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454557,9 +454557,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5992.89, + "X": -5990.77, "Y": 121.05, - "Z": -5734.91 + "Z": -5733.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454725,9 +454725,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6182.41, + "X": -6180.29, "Y": 256.87, - "Z": -5047.35 + "Z": -5045.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455023,9 +455023,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6797.64, + "X": -6795.53, "Y": 143.2, - "Z": -5271.21 + "Z": -5269.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455381,9 +455381,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6465.92, + "X": -6463.8, "Y": -13.0, - "Z": -5898.42 + "Z": -5896.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470253,9 +470253,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6283.84, + "X": -6282.09, "Y": 205.2, - "Z": -6032.2 + "Z": -6030.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470724,9 +470724,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6915.14, + "X": -6913.38, "Y": 206.22, - "Z": -6135.23 + "Z": -6133.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471028,9 +471028,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6610.36, + "X": -6608.61, "Y": 53.47, - "Z": -6855.37 + "Z": -6853.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471419,9 +471419,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6594.17, + "X": -6592.41, "Y": 177.39, - "Z": -6623.27 + "Z": -6621.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -486632,9 +486632,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6148.21, + "X": -6149.73, "Y": -66.18, - "Z": -6696.32 + "Z": -6698.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487209,9 +487209,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5531.29, + "X": -5532.82, "Y": -114.19, - "Z": -6752.23 + "Z": -6754.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487643,9 +487643,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5360.0, + "X": -5361.53, "Y": -282.71, - "Z": -7412.11 + "Z": -7413.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487928,9 +487928,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5987.03, + "X": -5988.56, "Y": -62.78, - "Z": -6526.91 + "Z": -6528.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488089,9 +488089,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5888.22, + "X": -5889.75, "Y": -181.22, - "Z": -6940.77 + "Z": -6942.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488567,9 +488567,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5824.22, + "X": -5825.74, "Y": -178.55, - "Z": -7595.97 + "Z": -7597.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -489025,9 +489025,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6344.64, + "X": -6346.17, "Y": -39.71, - "Z": -7215.89 + "Z": -7217.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511994,9 +511994,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5837.67, + "X": -5839.41, "Y": -150.43, - "Z": -5664.9 + "Z": -5666.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512313,9 +512313,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4953.16, + "X": -4954.9, "Y": -240.07, - "Z": -5697.5 + "Z": -5699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512473,9 +512473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5827.66, + "X": -5829.4, "Y": 41.65, - "Z": -6529.95 + "Z": -6531.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512765,9 +512765,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6198.35, + "X": -6200.09, "Y": -82.15, - "Z": -5841.61 + "Z": -5843.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512958,9 +512958,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5256.98, + "X": -5258.72, "Y": 63.42, - "Z": -6606.12 + "Z": -6607.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513115,9 +513115,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5541.76, + "X": -5543.5, "Y": -102.3, - "Z": -5996.83 + "Z": -5998.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513444,9 +513444,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5744.29, + "X": -5746.03, "Y": -234.62, - "Z": -5438.32 + "Z": -5440.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513607,9 +513607,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5491.77, + "X": -5493.51, "Y": -27.79, - "Z": -6255.54 + "Z": -6257.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513854,9 +513854,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5114.63, + "X": -5116.37, "Y": -23.65, - "Z": -6119.43 + "Z": -6121.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514016,9 +514016,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5291.49, + "X": -5293.23, "Y": -202.88, - "Z": -5484.23 + "Z": -5486.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514338,9 +514338,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6116.55, + "X": -6118.29, "Y": 1.59, - "Z": -6141.41 + "Z": -6143.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514600,9 +514600,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5335.93, + "X": -5337.67, "Y": -269.26, - "Z": -5120.57 + "Z": -5122.43 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -514757,9 +514757,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6193.45, + "X": -6195.19, "Y": 77.41, - "Z": -6367.84 + "Z": -6369.7 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -540712,9 +540712,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4888.75, + "X": -4890.3, "Y": 4.45, - "Z": -7340.32 + "Z": -7342.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540970,9 +540970,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4563.95, + "X": -4565.5, "Y": 56.66, - "Z": -7316.11 + "Z": -7318.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541418,9 +541418,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5277.51, + "X": -5279.06, "Y": -8.05, - "Z": -7351.54 + "Z": -7353.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541596,9 +541596,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4322.06, + "X": -4323.61, "Y": 121.9, - "Z": -6674.93 + "Z": -6677.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541824,9 +541824,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4379.62, + "X": -4381.16, "Y": 48.05, - "Z": -7528.22 + "Z": -7530.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542032,9 +542032,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5111.51, + "X": -5113.06, "Y": -0.05, - "Z": -7026.99 + "Z": -7029.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542250,9 +542250,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4859.54, + "X": -4861.09, "Y": 100.67, - "Z": -6800.54 + "Z": -6802.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542498,9 +542498,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4468.88, + "X": -4470.43, "Y": 187.15, - "Z": -6211.93 + "Z": -6214.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542686,9 +542686,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4072.13, + "X": -4073.68, "Y": 196.82, - "Z": -6677.1 + "Z": -6679.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542904,9 +542904,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5190.67, + "X": -5192.22, "Y": 53.47, - "Z": -6711.81 + "Z": -6714.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543162,9 +543162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4670.76, + "X": -4672.31, "Y": 123.45, - "Z": -6894.6 + "Z": -6896.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543720,9 +543720,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4822.3, + "X": -4823.85, "Y": 93.56, - "Z": -6397.21 + "Z": -6399.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543918,9 +543918,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4191.22, + "X": -4192.76, "Y": 86.28, - "Z": -7180.68 + "Z": -7183.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -574732,9 +574732,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4685.22, + "X": -4686.53, "Y": -38.82, - "Z": -7970.69 + "Z": -7972.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575225,9 +575225,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4206.2, + "X": -4207.51, "Y": 30.72, - "Z": -8277.14 + "Z": -8279.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575385,9 +575385,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5237.76, + "X": -5239.07, "Y": -77.73, - "Z": -8258.64 + "Z": -8260.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575598,9 +575598,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4669.54, + "X": -4670.85, "Y": 13.64, - "Z": -8725.57 + "Z": -8727.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575873,9 +575873,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4387.1, + "X": -4388.41, "Y": -140.05, - "Z": -7899.9 + "Z": -7902.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576081,9 +576081,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4951.75, + "X": -4953.06, "Y": -172.93, - "Z": -8001.28 + "Z": -8003.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576379,9 +576379,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4800.14, + "X": -4801.45, "Y": -222.35, - "Z": -7463.56 + "Z": -7465.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585274,9 +585274,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5191.77, + "X": 5190.91, "Y": 237.38, - "Z": -9066.25 + "Z": -9064.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585431,9 +585431,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4397.13, + "X": 4396.26, "Y": 229.37, - "Z": -9473.42 + "Z": -9471.75 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -585589,9 +585589,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4896.42, + "X": 4895.55, "Y": 292.43, - "Z": -9846.13 + "Z": -9844.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587625,9 +587625,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4902.34, + "X": 4901.47, "Y": 202.09, - "Z": -9503.5 + "Z": -9501.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -589359,9 +589359,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4600.54, + "X": 4599.67, "Y": 227.35, - "Z": -9004.11 + "Z": -9002.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627595,9 +627595,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4955.52, + "X": -4957.27, "Y": 11.21, - "Z": -5610.75 + "Z": -5613.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627773,9 +627773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3537.96, + "X": -3539.71, "Y": 150.86, - "Z": -6134.12 + "Z": -6136.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627951,9 +627951,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4285.04, + "X": -4286.79, "Y": -67.81, - "Z": -4873.58 + "Z": -4875.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628139,9 +628139,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3850.75, + "X": -3852.5, "Y": 152.92, - "Z": -5932.7 + "Z": -5935.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628317,9 +628317,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4719.61, + "X": -4721.36, "Y": -28.59, - "Z": -5108.78 + "Z": -5111.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628515,9 +628515,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4393.16, + "X": -4394.91, "Y": -40.58, - "Z": -5235.32 + "Z": -5237.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628773,9 +628773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4132.16, + "X": -4133.91, "Y": 60.19, - "Z": -5316.37 + "Z": -5318.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628971,9 +628971,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3588.53, + "X": -3590.28, "Y": -102.43, - "Z": -5101.63 + "Z": -5103.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629149,9 +629149,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3288.89, + "X": -3290.64, "Y": -27.2, - "Z": -5438.32 + "Z": -5440.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629317,9 +629317,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4728.68, + "X": -4730.43, "Y": 167.57, - "Z": -5961.23 + "Z": -5963.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629495,9 +629495,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3939.13, + "X": -3940.88, "Y": 253.61, - "Z": -6286.94 + "Z": -6289.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629663,9 +629663,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4604.54, + "X": -4606.29, "Y": 25.64, - "Z": -5423.78 + "Z": -5426.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629941,9 +629941,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4537.88, + "X": -4539.63, "Y": -117.75, - "Z": -5013.5 + "Z": -5015.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630119,9 +630119,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4097.25, + "X": -4099.0, "Y": 154.95, - "Z": -6008.4 + "Z": -6010.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630339,9 +630339,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4867.5, + "X": -4869.25, "Y": -91.87, - "Z": -5052.02 + "Z": -5054.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630507,9 +630507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3882.12, + "X": -3883.87, "Y": -45.39, - "Z": -5205.45 + "Z": -5207.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630745,9 +630745,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4191.19, + "X": -4192.94, "Y": -113.36, - "Z": -4790.42 + "Z": -4792.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630923,9 +630923,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4796.86, + "X": -4798.61, "Y": 68.97, - "Z": -5657.52 + "Z": -5659.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631121,9 +631121,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3578.15, + "X": -3579.9, "Y": -15.87, - "Z": -5238.36 + "Z": -5240.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631289,9 +631289,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4270.9, + "X": -4272.65, "Y": 227.2, - "Z": -6268.45 + "Z": -6270.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631460,9 +631460,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3421.37, + "X": -3423.12, "Y": 105.78, - "Z": -5595.76 + "Z": -5598.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631638,9 +631638,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3907.6, + "X": -3909.35, "Y": -100.54, - "Z": -4683.95 + "Z": -4686.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631826,9 +631826,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3718.99, + "X": -3720.74, "Y": 101.34, - "Z": -5635.07 + "Z": -5637.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632036,9 +632036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4429.48, + "X": -4431.23, "Y": 164.03, - "Z": -6030.54 + "Z": -6032.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633754,9 +633754,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3563.31, + "X": -3560.95, "Y": -92.25, - "Z": -3946.66 + "Z": -3944.45 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -633911,9 +633911,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5301.62, + "X": -5299.26, "Y": -83.52, - "Z": -4531.99 + "Z": -4529.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -634068,9 +634068,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4932.55, + "X": -4930.19, "Y": -133.7, - "Z": -4827.3 + "Z": -4825.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634256,9 +634256,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3770.11, + "X": -3767.76, "Y": -54.7, - "Z": -4787.22 + "Z": -4785.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634424,9 +634424,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4450.16, + "X": -4447.8, "Y": -83.88, - "Z": -4728.96 + "Z": -4726.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634592,9 +634592,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4785.11, + "X": -4782.75, "Y": -82.78, - "Z": -3581.3 + "Z": -3579.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634760,9 +634760,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4877.73, + "X": -4875.37, "Y": -114.56, - "Z": -4334.54 + "Z": -4332.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634978,9 +634978,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4632.6, + "X": -4630.24, "Y": -114.75, - "Z": -3723.13 + "Z": -3720.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635216,9 +635216,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3681.71, + "X": -3679.35, "Y": -92.75, - "Z": -4251.62 + "Z": -4249.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635394,9 +635394,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4149.66, + "X": -4147.31, "Y": -50.21, - "Z": -4891.95 + "Z": -4889.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635562,9 +635562,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4128.86, + "X": -4126.5, "Y": -149.59, - "Z": -3746.61 + "Z": -3744.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636142,9 +636142,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5150.28, + "X": -5147.92, "Y": -161.67, - "Z": -3660.16 + "Z": -3657.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636320,9 +636320,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4228.69, + "X": -4226.33, "Y": -55.46, - "Z": -5136.81 + "Z": -5134.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636488,9 +636488,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4454.61, + "X": -4452.25, "Y": -160.13, - "Z": -3204.98 + "Z": -3202.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636645,9 +636645,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3811.42, + "X": -3809.06, "Y": -88.51, - "Z": -3734.32 + "Z": -3732.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636823,9 +636823,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4155.6, + "X": -4153.24, "Y": -87.86, - "Z": -3561.91 + "Z": -3559.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637053,9 +637053,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3767.73, + "X": -3765.38, "Y": -126.75, - "Z": -3691.74 + "Z": -3689.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637231,9 +637231,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5190.81, + "X": -5188.45, "Y": -135.86, - "Z": -3996.84 + "Z": -3994.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637409,9 +637409,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4970.65, + "X": -4968.29, "Y": -64.92, - "Z": -4640.25 + "Z": -4638.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637610,9 +637610,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4503.02, + "X": -4500.67, "Y": -150.22, - "Z": -3426.11 + "Z": -3423.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637861,9 +637861,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4665.22, + "X": -4662.87, "Y": -97.63, - "Z": -4729.95 + "Z": -4727.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638243,9 +638243,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4392.13, + "X": -4389.77, "Y": -99.43, - "Z": -4457.11 + "Z": -4454.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638634,9 +638634,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5015.26, + "X": -5012.91, "Y": -123.45, - "Z": -3849.11 + "Z": -3846.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638886,9 +638886,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3903.06, + "X": -3900.71, "Y": -133.74, - "Z": -4238.16 + "Z": -4235.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639147,9 +639147,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4386.27, + "X": -4383.92, "Y": -138.4, - "Z": -4196.9 + "Z": -4194.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639777,9 +639777,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3926.4, + "X": -3924.04, "Y": -124.78, - "Z": -3298.66 + "Z": -3296.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657149,9 +657149,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5544.9, + "X": 5543.92, "Y": 137.98, - "Z": -9185.75 + "Z": -9184.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657306,9 +657306,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5620.67, + "X": 5619.68, "Y": 260.73, - "Z": -8067.69 + "Z": -8066.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657470,9 +657470,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5479.69, + "X": 5478.71, "Y": 205.12, - "Z": -8552.06 + "Z": -8550.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658098,9 +658098,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5856.53, + "X": 5855.55, "Y": 149.3, - "Z": -9181.01 + "Z": -9179.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658446,9 +658446,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5306.1, + "X": 5305.12, "Y": 269.32, - "Z": -8741.78 + "Z": -8740.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658704,9 +658704,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5809.29, + "X": 5808.31, "Y": 186.55, - "Z": -8854.46 + "Z": -8852.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659162,9 +659162,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6072.36, + "X": 6071.37, "Y": 99.09, - "Z": -8312.21 + "Z": -8310.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659450,9 +659450,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6185.38, + "X": 6184.4, "Y": 55.62, - "Z": -8990.53 + "Z": -8989.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716450,9 +716450,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6414.42, + "X": -6412.08, "Y": -297.08, - "Z": -4508.69 + "Z": -4506.9 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716607,9 +716607,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6041.63, + "X": -6039.28, "Y": -179.18, - "Z": -4043.22 + "Z": -4041.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716785,9 +716785,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6540.69, + "X": -6538.34, "Y": -379.97, - "Z": -4658.46 + "Z": -4656.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716953,9 +716953,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6160.43, + "X": -6158.09, "Y": -292.28, - "Z": -5142.43 + "Z": -5140.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717131,9 +717131,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5920.67, + "X": -5918.32, "Y": -240.29, - "Z": -4443.88 + "Z": -4442.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717334,9 +717334,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6156.87, + "X": -6154.53, "Y": -269.3, - "Z": -4145.59 + "Z": -4143.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717544,9 +717544,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5652.07, + "X": -5649.72, "Y": -264.86, - "Z": -4909.86 + "Z": -4908.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717714,9 +717714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5538.95, + "X": -5536.6, "Y": -181.38, - "Z": -4827.81 + "Z": -4826.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717892,9 +717892,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5924.94, + "X": -5922.6, "Y": -244.29, - "Z": -5061.08 + "Z": -5059.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718110,9 +718110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5748.76, + "X": -5746.42, "Y": -138.58, - "Z": -3839.61 + "Z": -3837.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718278,9 +718278,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6448.0, + "X": -6445.66, "Y": -276.61, - "Z": -4194.3 + "Z": -4192.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718446,9 +718446,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5400.77, + "X": -5398.42, "Y": -50.64, - "Z": -4130.05 + "Z": -4128.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718614,9 +718614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5211.44, + "X": -5209.09, "Y": -112.55, - "Z": -4509.28 + "Z": -4507.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718782,9 +718782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5624.7, + "X": -5622.36, "Y": -116.08, - "Z": -4285.44 + "Z": -4283.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725574,45 +725574,45 @@ } } }, - "groovy/jenkins_view_groovy": { - "Directory Group Magnitude": 582.2, - "File Count": 30, + "typescript/playwright": { + "Directory Group Magnitude": 563.96, + "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "96.7%", - "Static: Literature & Documentation": "3.3%" + "Unclassified": "63.6%", + "Static: Literature & Documentation": "36.4%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "10.17%", - "Error & Exception Exposure": "23.62%", - "Tech Debt Exposure": "15.3%", - "Testing Exposure": "6.91%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "10.55%", + "Cognitive Load Exposure": "44.71%", + "Error & Exception Exposure": "58.03%", + "Tech Debt Exposure": "38.98%", + "Testing Exposure": "36.78%", + "API Exposure": "2.82%", + "Concurrency Exposure": "48.67%", + "State Flux Exposure": "45.45%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "74.0%", - "Instability Exposure": "48.33%", + "Specification Exposure": "63.64%", + "Instability Exposure": "31.82%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.12%", + "Documentation Exposure": "15.88%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "groovy/jenkins_view_groovy/LICENSE.txt": { + "typescript/playwright/README.md": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "groovy/jenkins_view_groovy/LICENSE.txt", - "Language": "Plaintext", + "Filename": "README.md", + "Path": "typescript/playwright/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2912.97, - "Y": -266.83, - "Z": -2109.96 + "X": 3075.65, + "Y": -338.21, + "Z": 7200.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725621,10 +725621,10 @@ "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, + "Total LOC": 319, "Coding LOC": 0, - "Documentation LOC": 17, - "Structural Magnitude": 1.0, + "Documentation LOC": 215, + "Structural Magnitude": 6.38, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -725724,10 +725724,10 @@ "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 0, + "Instructional Code Examples": 44, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 22, + "Hyperlinked Literature References": 40, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -725754,217 +725754,76 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/Jenkinsfile": { + "typescript/playwright/SECURITY.md": { "1. Artifact Identity": { - "Filename": "Jenkinsfile", - "Path": "groovy/jenkins_view_groovy/Jenkinsfile", - "Language": "Groovy", + "Filename": "SECURITY.md", + "Path": "typescript/playwright/SECURITY.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (Jenkinsfile)" + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3737.41, - "Y": -119.0, - "Z": -2639.52 + "X": 3106.81, + "Y": -406.69, + "Z": 7706.57 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 257, - "Coding LOC": 208, - "Documentation LOC": 32, - "Structural Magnitude": 115.56, - "Control Flow Ratio": "35.6%", + "Total LOC": 42, + "Coding LOC": 0, + "Documentation LOC": 24, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.207 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.63%", - "Error & Exception Exposure": "60.06%", - "Tech Debt Exposure": "63.76%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "50.38%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.1%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "node", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 136, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 79, - "End Line": 214 - }, - { - "Function Name": "stage", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 73, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 141, - "End Line": 213 - }, - { - "Function Name": "timeout", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 93, - "End Line": 137 - }, - { - "Function Name": "stage", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 89, - "End Line": 138 - }, - { - "Function Name": "recordIssues", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "100.0%", - "Start Line": 155, - "End Line": 195 - }, - { - "Function Name": "stage", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "11.1%", - "Start Line": 20, - "End Line": 57 - }, - { - "Function Name": "node", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "11.1%", - "Start Line": 22, - "End Line": 55 - }, - { - "Function Name": "withChecks", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 129, - "End Line": 136 - }, - { - "Function Name": "realtimeJUnit", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 130, - "End Line": 135 - }, - { - "Function Name": "node", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 228, - "End Line": 249 - }, - { - "Function Name": "withChecks", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 231, - "End Line": 238 - }, - { - "Function Name": "dir", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 197, - "End Line": 204 - }, - { - "Function Name": "dir", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 98 - }, - { - "Function Name": "stage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 82, - "End Line": 84 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 16, - "Sequential Logic Declarations": 29, - "Function Parameters": 36, - "Function/Method Declarations": 11, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 11, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -725973,7 +725832,7 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 2, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -725996,7 +725855,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 190, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726013,19 +725872,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 23, - "Design Camel Case": 13, - "Design Snake Case": 10, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 4, + "Hyperlinked Literature References": 12, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -726052,62 +725911,62 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy": { + "typescript/playwright/SUPPORT.md": { "1. Artifact Identity": { - "Filename": "hudson_PluginWrapper_uninstall.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy", - "Language": "Groovy", + "Filename": "SUPPORT.md", + "Path": "typescript/playwright/SUPPORT.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3156.37, - "Y": -133.29, - "Z": -2150.54 + "X": 2077.97, + "Y": -192.07, + "Z": 7795.7 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 15.34, + "Total LOC": 18, + "Coding LOC": 0, + "Documentation LOC": 10, + "Structural Magnitude": 1.0, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.9%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -726121,14 +725980,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726153,7 +726012,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726170,18 +726029,18 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, + "Structured Literature Headers": 3, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -726202,376 +726061,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "jenkins.model.Jenkins" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy": { + "typescript/playwright/NOTICE": { "1. Artifact Identity": { - "Filename": "hudson_model_AllView_noJob.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy", - "Language": "Groovy", + "Filename": "NOTICE", + "Path": "typescript/playwright/NOTICE", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": -4005.68, - "Y": -132.63, - "Z": -2125.57 + "X": 2915.07, + "Y": -252.8, + "Z": 7050.15 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 143, - "Coding LOC": 120, - "Documentation LOC": 2, - "Structural Magnitude": 110.8, - "Control Flow Ratio": "22.0%", + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 4, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.214 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.47%", - "Error & Exception Exposure": "69.07%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.18%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "div", - "Structural Impact": 25.9, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "26.5%", - "Start Line": 19, - "End Line": 141 - }, - { - "Function Name": "section", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 111, - "End Line": 139 - }, - { - "Function Name": "ul", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "30.8%", - "Start Line": 112, - "End Line": 138 - }, - { - "Function Name": "a", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 114, - "End Line": 122 - }, - { - "Function Name": "li", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 113, - "End Line": 123 - }, - { - "Function Name": "section", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "7.7%", - "Start Line": 42, - "End Line": 76 - }, - { - "Function Name": "ul", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "9.1%", - "Start Line": 44, - "End Line": 75 - }, - { - "Function Name": "a", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 127, - "End Line": 135 - }, - { - "Function Name": "li", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 126, - "End Line": 136 - }, - { - "Function Name": "a", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 73 - }, - { - "Function Name": "section", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 39 - }, - { - "Function Name": "section", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 96 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 36 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 51 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 61 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 88, - "End Line": 93 - }, - { - "Function Name": "ul", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 38 - }, - { - "Function Name": "li", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 74 - }, - { - "Function Name": "ul", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 95 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 37 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 52 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 62 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 94 - }, - { - "Function Name": "span", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 117, - "End Line": 121 - }, - { - "Function Name": "span", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 133 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 50 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 72 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 92 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 46, - "Function Parameters": 45, - "Function/Method Declarations": 30, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 5, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -726588,7 +726144,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726613,7 +726169,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 108, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726630,14 +726186,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 5, - "Design Snake Case": 1, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 2, - "Duplicate Logic": 10, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -726662,106 +726218,90 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.model.Computer", - "hudson.model.Item", - "hudson.model.Job", - "jenkins.model.Jenkins" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy": { + "typescript/playwright/api.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", - "Language": "Groovy", + "Filename": "api.ts", + "Path": "typescript/playwright/api.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4119.84, - "Y": -302.0, - "Z": -1785.73 + "X": 2463.87, + "Y": -272.98, + "Z": 7965.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 2.08, + "Total LOC": 49, + "Coding LOC": 32, + "Documentation LOC": 15, + "Structural Magnitude": 4.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 0.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", + "Cognitive Load Exposure": "4.64%", + "Error & Exception Exposure": "71.09%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "17.88%", + "Concurrency Exposure": "35.51%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "100.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 17 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 3, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 36, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 32, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 5, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 32, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726786,11 +726326,11 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -726803,15 +726343,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -726835,124 +726375,335 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 31, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.model.EnvironmentContributor", - "hudson.scm.SCM" + "./android", + "./browser", + "./browserContext", + "./browserType", + "./cdpSession", + "./clock", + "./consoleMessage", + "./coverage", + "./debugger", + "./dialog", + "./disposable", + "./download", + "./electron", + "./elementHandle", + "./errors", + "./fetch", + "./fileChooser", + "./frame", + "./input", + "./jsHandle", + "./locator", + "./network", + "./page", + "./playwright", + "./screencast", + "./selectors", + "./tracing", + "./types", + "./video", + "./webError", + "./worker" ] }, - "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy": { + "typescript/playwright/bidiConnection.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", - "Language": "Groovy", + "Filename": "bidiConnection.ts", + "Path": "typescript/playwright/bidiConnection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Spaces", + "Parent Entity": "EventEmitter", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3557.12, - "Y": 122.56, - "Z": -3253.04 + "X": 2134.16, + "Y": -157.85, + "Z": 7523.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 30, - "Coding LOC": 4, - "Documentation LOC": 23, - "Structural Magnitude": 12.08, - "Control Flow Ratio": "0.0%", + "Total LOC": 261, + "Coding LOC": 204, + "Documentation LOC": 27, + "Structural Magnitude": 31.55, + "Control Flow Ratio": "42.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.25 + "Raw Cognitive Density": 2.045 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "94.57%", + "Error & Exception Exposure": "99.15%", + "Tech Debt Exposure": "95.32%", + "Testing Exposure": "80.0%", + "API Exposure": "1.45%", + "Concurrency Exposure": "99.88%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.12%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_dispatchMessage", + "Structural Impact": 38.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 24, + "Input Parameters": 1, + "Control Flow Ratio": "82.8%", + "Start Line": 70, + "End Line": 122 + }, + { + "Function Name": "dispatchMessage", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 238, + "End Line": 259 + }, + { + "Function Name": "send", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 193, + "End Line": 205 + }, + { + "Function Name": "sendMayFail", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 207, + "End Line": 209 + }, + { + "Function Name": "dispose", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 219, + "End Line": 232 + }, + { + "Function Name": "_onClose", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 124, + "End Line": 131 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 59 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 169, + "End Line": 181 + }, + { + "Function Name": "close", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 137, + "End Line": 140 + }, + { + "Function Name": "createMainFrameBrowsingContextSession", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 146 + }, + { + "Function Name": "rawSend", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "addFrameBrowsingContext", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 183, + "End Line": 186 + }, + { + "Function Name": "removeFrameBrowsingContext", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 188, + "End Line": 191 + }, + { + "Function Name": "hasCallback", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 236 + }, + { + "Function Name": "nextMessageId", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 63 + }, + { + "Function Name": "isClosed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 133, + "End Line": 135 + }, + { + "Function Name": "markAsCrashed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 211, + "End Line": 213 + }, + { + "Function Name": "isDisposed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 217 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 57, + "Sequential Logic Declarations": 78, + "Function Parameters": 33, + "Function/Method Declarations": 18, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 20, + "Type/Safety Bypasses": 12, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 182, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 25, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 5, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 23, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 11, + "Dependency Injection Constructs": 5, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 9, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 25, + "Resource Deallocation & Cleanup": 11, + "Private / Encapsulated Scopes": 12, + "Event Listeners & Subscribers": 3, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 187, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -726963,15 +726714,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 25, + "Design Camel Case": 3, + "Design Snake Case": 16, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -726995,132 +726746,332 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 8, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../helper", + "../protocolError", + "../transport", + "../types", + "../utils/debugLogger", + "./third_party/bidiCommands", + "./third_party/bidiProtocol", + "events" + ] }, - "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy": { + "typescript/playwright/connection.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_UsageStatistics_global.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy", - "Language": "Groovy", + "Filename": "connection.ts", + "Path": "typescript/playwright/connection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "ChannelOwner, EventEmitter", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3991.21, - "Y": 127.29, - "Z": -3347.46 + "X": 2684.85, + "Y": -180.49, + "Z": 7024.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 18, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, + "Total LOC": 353, + "Coding LOC": 304, + "Documentation LOC": 20, + "Structural Magnitude": 48.63, + "Control Flow Ratio": "49.4%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 2.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "96.6%", + "Error & Exception Exposure": "95.94%", + "Tech Debt Exposure": "89.91%", + "Testing Exposure": "80.0%", + "API Exposure": "0.16%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "65.28%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "div", + "Function Name": "_createRemoteObject", + "Structural Impact": 159.8, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 68, + "Input Parameters": 4, + "Control Flow Ratio": "64.2%", + "Start Line": 232, + "End Line": 342 + }, + { + "Function Name": "sendMessageToServer", + "Structural Impact": 41.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 17, + "Input Parameters": 4, + "Control Flow Ratio": "68.0%", + "Start Line": 127, + "End Line": 149 + }, + { + "Function Name": "dispatch", + "Structural Impact": 22.3, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 13, + "Input Parameters": 1, + "Control Flow Ratio": "65.0%", + "Start Line": 159, + "End Line": 208 + }, + { + "Function Name": "_tChannelImplFromWire", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "85.7%", + "Start Line": 220, + "End Line": 230 + }, + { + "Function Name": "constructor", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 84, + "End Line": 90 + }, + { + "Function Name": "close", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 210, + "End Line": 218 + }, + { + "Function Name": "formatCallLog", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 345, + "End Line": 352 + }, + { + "Function Name": "setIsTracing", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 125 + }, + { + "Function Name": "onmessage", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 68, + "End Line": 81 + }, + { + "Function Name": "_validatorFromWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 151, + "End Line": 157 + }, + { + "Function Name": "constructor", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 13 + "Start Line": 52, + "End Line": 54 + }, + { + "Function Name": "getObjectWithKnownName", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "initialize", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 61 + }, + { + "Function Name": "markAsRemote", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 92, + "End Line": 94 + }, + { + "Function Name": "isRemote", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 98 + }, + { + "Function Name": "useRawBuffers", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 102 + }, + { + "Function Name": "rawBuffers", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "localUtils", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 110 + }, + { + "Function Name": "initializePlaywright", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 112, + "End Line": 114 + }, + { + "Function Name": "isUnderTest", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 156 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 2, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Control Flow Branches": 116, + "Sequential Logic Declarations": 119, + "Function Parameters": 30, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 13, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 138, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Asynchronous/Concurrent Execution": 58, + "UI / View Layer Components": 4, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 6, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 34, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 4, + "Dependency Injection Constructs": 4, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 43, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 10, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 20, + "Resource Deallocation & Cleanup": 3, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 259, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 3, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 3, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -727131,22 +727082,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, + "Core Var Decl": 54, + "Design Camel Case": 1, + "Design Snake Case": 49, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, + "External Network & I/O Hooks": 1, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -727163,119 +727114,350 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 32, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions", - "hudson.model.UsageStatistics", - "jenkins.security.FIPS140" + "../protocol/validator", + "../utils/isomorphic/stackTrace", + "./android", + "./artifact", + "./browser", + "./browserContext", + "./browserType", + "./cdpSession", + "./channelOwner", + "./clientInstrumentation", + "./debugger", + "./dialog", + "./disposable", + "./electron", + "./elementHandle", + "./errors", + "./eventEmitter", + "./fetch", + "./frame", + "./jsHandle", + "./jsonPipe", + "./localUtils", + "./network", + "./page", + "./platform", + "./playwright", + "./stream", + "./tracing", + "./types", + "./worker", + "./writableStream", + "@protocol/channels" ] }, - "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy": { + "typescript/playwright/crConnection.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_GlobalSecurityConfiguration_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy", - "Language": "Groovy", + "Filename": "crConnection.ts", + "Path": "typescript/playwright/crConnection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "SdkObject", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3279.87, - "Y": -39.99, - "Z": -2821.39 + "X": 2834.21, + "Y": -329.2, + "Z": 7886.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 58, - "Documentation LOC": 0, - "Structural Magnitude": 16.16, - "Control Flow Ratio": "41.2%", + "Total LOC": 240, + "Coding LOC": 186, + "Documentation LOC": 22, + "Structural Magnitude": 39.53, + "Control Flow Ratio": "38.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.207 + "Raw Cognitive Density": 2.96 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.23%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "94.61%", + "Error & Exception Exposure": "99.52%", + "Tech Debt Exposure": "58.0%", + "Testing Exposure": "80.0%", + "API Exposure": "2.03%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.78%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_onMessage", + "Structural Impact": 20.8, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 13, + "Input Parameters": 1, + "Control Flow Ratio": "92.9%", + "Start Line": 152, + "End Line": 172 + }, + { + "Function Name": "send", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 136, + "End Line": 146 + }, + { + "Function Name": "_onMessage", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 77, + "End Line": 84 + }, + { + "Function Name": "_sendMayFail", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 148, + "End Line": 150 + }, + { + "Function Name": "constructor", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 117, + "End Line": 124 + }, + { + "Function Name": "_rawSend", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 67, + "End Line": 75 + }, + { + "Function Name": "send", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 217, + "End Line": 219 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 208, + "End Line": 215 + }, + { + "Function Name": "createChildSession", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 130, + "End Line": 134 + }, + { + "Function Name": "_send", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 225, + "End Line": 227 + }, + { + "Function Name": "detach", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 174, + "End Line": 184 + }, + { + "Function Name": "dispose", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 186, + "End Line": 196 + }, + { + "Function Name": "_onClose", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 86, + "End Line": 93 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 65 + }, + { + "Function Name": "close", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 95, + "End Line": 98 + }, + { + "Function Name": "detach", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 221, + "End Line": 223 + }, + { + "Function Name": "attachToTarget", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 229, + "End Line": 232 + }, + { + "Function Name": "createBrowserSession", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 103 + }, + { + "Function Name": "_onClose", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 238 + }, + { + "Function Name": "_markAsCrashed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 128 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 10, - "Function Parameters": 9, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 60, + "Function Parameters": 33, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 6, + "State Mutations / Variable Reassignments": 173, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 121, + "UI / View Layer Components": 4, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 9, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 11, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 4, + "Dependency Injection Constructs": 6, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 8, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 3, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 20, + "Resource Deallocation & Cleanup": 9, + "Private / Encapsulated Scopes": 15, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 47, + "Structural Space Indentations": 163, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727292,15 +727474,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, + "Core Var Decl": 17, + "Design Camel Case": 1, + "Design Snake Case": 10, + "Design Pascal Case": 5, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -727308,7 +727490,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -727324,121 +727506,447 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 9, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions", - "hudson.markup.MarkupFormatterDescriptor", - "hudson.model.Descriptor", - "hudson.security.AuthorizationStrategy", - "hudson.security.SecurityRealm" + "../../utils", + "../helper", + "../instrumentation", + "../protocolError", + "../transport", + "../types", + "../utils/debugLogger", + "./protocol", + "@protocol/progress" ] }, - "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy": { + "typescript/playwright/dispatcher.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_LegacySecurityRealm_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy", - "Language": "Groovy", + "Filename": "dispatcher.ts", + "Path": "typescript/playwright/dispatcher.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "EventEmitter implements channels, Dispatcher", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3863.74, - "Y": -181.45, - "Z": -1876.42 + "X": 2365.55, + "Y": -216.96, + "Z": 7618.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 28, - "Documentation LOC": 0, - "Structural Magnitude": 15.56, - "Control Flow Ratio": "40.0%", + "Total LOC": 415, + "Coding LOC": 339, + "Documentation LOC": 25, + "Structural Magnitude": 58.8, + "Control Flow Ratio": "48.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.321 + "Raw Cognitive Density": 2.405 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.26%", - "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "96.92%", + "Error & Exception Exposure": "99.38%", + "Tech Debt Exposure": "89.53%", + "Testing Exposure": "80.0%", + "API Exposure": "1.19%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "dispatch", + "Structural Impact": 53.5, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 33, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 299, + "End Line": 407 + }, + { + "Function Name": "constructor", + "Structural Impact": 20.7, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "63.6%", + "Start Line": 62, + "End Line": 83 + }, + { + "Function Name": "_tChannelImplFromWire", + "Structural Impact": 18.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "77.8%", + "Start Line": 245, + "End Line": 256 + }, + { + "Function Name": "_disposeRecursively", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 142, + "End Line": 163 + }, + { + "Function Name": "_tChannelImplToWire", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 258, + "End Line": 265 + }, + { + "Function Name": "maybeDisposeStaleDispatchers", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 283, + "End Line": 297 + }, + { + "Function Name": "_runCommand", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 103, + "End Line": 111 + }, + { + "Function Name": "maxDispatchersForBucket", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 42, + "End Line": 47 + }, + { + "Function Name": "_dispatchEvent", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 113, + "End Line": 121 + }, + { + "Function Name": "_doSlowMo", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 409, + "End Line": 413 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 182, + "End Line": 184 + }, + { + "Function Name": "sendDispose", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 225, + "End Line": 227 + }, + { + "Function Name": "registerDispatcher", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 271, + "End Line": 281 + }, + { + "Function Name": "adopt", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 93, + "End Line": 101 + }, + { + "Function Name": "stopPendingOperations", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 131, + "End Line": 140 + }, + { + "Function Name": "collect", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 133, + "End Line": 140 + }, + { + "Function Name": "_dispose", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 123, + "End Line": 126 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 205, + "End Line": 207 + }, + { + "Function Name": "sendCreate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 219 + }, + { + "Function Name": "_validatorToWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 229, + "End Line": 235 + }, + { + "Function Name": "_validatorFromWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 237, + "End Line": 243 + }, + { + "Function Name": "initialize", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 186, + "End Line": 194 + }, + { + "Function Name": "sendEvent", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 209, + "End Line": 213 + }, + { + "Function Name": "addObjectListener", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 91 + }, + { + "Function Name": "sendAdopt", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 221, + "End Line": 223 + }, + { + "Function Name": "setMaxDispatchersForTest", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 41 + }, + { + "Function Name": "onmessage", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 200, + "End Line": 202 + }, + { + "Function Name": "existingDispatcher", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 269 + }, + { + "Function Name": "_debugScopeState", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 165, + "End Line": 170 + }, + { + "Function Name": "parentScope", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "_onDispose", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 129 + }, + { + "Function Name": "waitForEventInfo", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 172, + "End Line": 174 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 5, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 4, + "Control Flow Branches": 82, + "Sequential Logic Declarations": 86, + "Function Parameters": 48, + "Function/Method Declarations": 32, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 29, + "Type/Safety Bypasses": 25, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 292, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 5, + "Asynchronous/Concurrent Execution": 83, + "UI / View Layer Components": 9, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 11, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 16, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 4, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 19, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 10, + "Thread Sleeps & Blocking Waits": 1, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 42, + "Resource Deallocation & Cleanup": 7, + "Private / Encapsulated Scopes": 20, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 310, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727446,7 +727954,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -727455,15 +727963,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 1, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 48, + "Design Camel Case": 13, + "Design Snake Case": 28, + "Design Pascal Case": 2, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 3, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -727471,7 +727979,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 5, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -727487,127 +727995,1729 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.PluginWrapper", - "hudson.model.UnprotectedRootAction", - "jenkins.model.Jenkins" + "../../protocol/validator", + "../../utils", + "../../utils/isomorphic/protocolMetainfo", + "../callLog", + "../errors", + "../instrumentation", + "../progress", + "../protocolError", + "../utils/debug", + "../utils/eventsHelper", + "./playwrightDispatcher", + "@protocol/channels", + "events" ] }, - "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy": { + "typescript/playwright/frames.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "frames.ts", + "Path": "typescript/playwright/frames.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "Error, SdkObject", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4323.01, - "Y": -63.58, - "Z": -2274.31 + "X": 2569.74, + "Y": -230.5, + "Z": 7584.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 15.32, - "Control Flow Ratio": "42.9%", + "Total LOC": 1823, + "Coding LOC": 1533, + "Documentation LOC": 91, + "Structural Magnitude": 369.37, + "Control Flow Ratio": "46.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 3.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "99.35%", + "Error & Exception Exposure": "97.8%", + "Tech Debt Exposure": "95.99%", + "Testing Exposure": "80.0%", + "API Exposure": "1.0%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "15.13%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "waitForSelector", + "Structural Impact": 88.9, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 34, + "Input Parameters": 5, + "Control Flow Ratio": "61.8%", + "Start Line": 770, + "End Line": 833 + }, + { + "Function Name": "_expectInternal", + "Structural Impact": 65.8, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 25, + "Input Parameters": 5, + "Control Flow Ratio": "73.5%", + "Start Line": 1473, + "End Line": 1515 + }, + { + "Function Name": "_retryWithProgressIfNotConnected", + "Structural Impact": 63.3, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 26, + "Input Parameters": 4, + "Control Flow Ratio": "60.5%", + "Start Line": 1132, + "End Line": 1190 + }, + { + "Function Name": "waitForFunctionExpression", + "Structural Impact": 58.9, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 20, + "Input Parameters": 6, + "Control Flow Ratio": "46.5%", + "Start Line": 1517, + "End Line": 1583 + }, + { + "Function Name": "expect", + "Structural Impact": 51.0, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 23, + "Input Parameters": 3, + "Control Flow Ratio": "65.7%", + "Start Line": 1411, + "End Line": 1471 + }, + { + "Function Name": "gotoImpl", + "Structural Impact": 44.8, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 20, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 636, + "End Line": 690 + }, + { + "Function Name": "race", + "Structural Impact": 36.0, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 23, + "Input Parameters": 1, + "Control Flow Ratio": "71.9%", + "Start Line": 1475, + "End Line": 1515 + }, + { + "Function Name": "_callOnElementOnceMatches", + "Structural Impact": 33.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 11, + "Input Parameters": 6, + "Control Flow Ratio": "52.4%", + "Start Line": 1642, + "End Line": 1666 + }, + { + "Function Name": "fixupMetadataError", + "Structural Impact": 32.6, + "Lines of Code (LOC)": 58, + "Control Flow Branches": 20, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1414, + "End Line": 1471 + }, + { + "Function Name": "ariaSnapshot", + "Structural Impact": 30.8, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "64.0%", + "Start Line": 1729, + "End Line": 1756 + }, + { + "Function Name": "resolveSelector", + "Structural Impact": 23.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "52.6%", + "Start Line": 1249, + "End Line": 1277 + }, + { + "Function Name": "waitForNavigation", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "52.9%", + "Start Line": 692, + "End Line": 713 + }, + { + "Function Name": "isVisibleInternal", + "Structural Impact": 20.9, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "53.3%", + "Start Line": 1341, + "End Line": 1356 + }, + { + "Function Name": "_addScriptTag", + "Structural Impact": 19.5, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "29.7%", + "Start Line": 965, + "End Line": 1015 + }, + { + "Function Name": "retryWithProgressAndTimeouts", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "61.5%", + "Start Line": 1088, + "End Line": 1114 + }, + { + "Function Name": "frameCommittedNewDocumentNavigation", + "Structural Impact": 19.2, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 6, + "Input Parameters": 5, + "Control Flow Ratio": "100.0%", + "Start Line": 211, + "End Line": 252 + }, + { + "Function Name": "_recalculateNetworkIdle", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 583, + "End Line": 603 + }, + { + "Function Name": "frameAbortedNavigation", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 269, + "End Line": 284 + }, + { + "Function Name": "inputValue", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "62.5%", + "Start Line": 1299, + "End Line": 1306 + }, + { + "Function Name": "requestStarted", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 300, + "End Line": 314 + }, + { + "Function Name": "frameRequestedNavigation", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 196, + "End Line": 209 + }, + { + "Function Name": "_raceWithCSPError", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "43.8%", + "Start Line": 1063, + "End Line": 1086 + }, + { + "Function Name": "predicate", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 657, + "End Line": 676 + }, + { + "Function Name": "_evaluateExpression", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 749, + "End Line": 753 + }, + { + "Function Name": "_evaluateExpressionHandle", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 759, + "End Line": 763 + }, + { + "Function Name": "frameAttached", + "Structural Impact": 11.4, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 147, + "End Line": 167 + }, + { + "Function Name": "raceNavigationAction", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 605, + "End Line": 619 + }, + { + "Function Name": "requestFailed", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 329, + "End Line": 341 + }, + { + "Function Name": "addFrameNavigation", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1778, + "End Line": 1797 + }, + { + "Function Name": "isNonRetriableError", + "Structural Impact": 10.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 1116, + "End Line": 1130 + }, + { + "Function Name": "_addStyleTag", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "26.3%", + "Start Line": 1021, + "End Line": 1061 + }, + { + "Function Name": "frameCommittedSameDocumentNavigation", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 254, + "End Line": 267 + }, + { + "Function Name": "predicate", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "58.3%", + "Start Line": 1526, + "End Line": 1551 + }, + { + "Function Name": "predicate", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 676, + "End Line": 690 + }, + { + "Function Name": "evaluateExpression", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 745, + "End Line": 747 + }, + { + "Function Name": "evaluateExpressionHandle", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 755, + "End Line": 757 + }, + { + "Function Name": "press", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1395, + "End Line": 1397 + }, + { + "Function Name": "waitForSignalsCreatedBy", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "30.0%", + "Start Line": 169, + "End Line": 184 + }, + { + "Function Name": "queryCount", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 877, + "End Line": 885 + }, + { + "Function Name": "_evalOnSelector", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "40.0%", + "Start Line": 845, + "End Line": 852 + }, + { + "Function Name": "next", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1551, + "End Line": 1570 + }, + { + "Function Name": "raceAgainstEvaluationStallingEvents", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 547, + "End Line": 563 + }, + { + "Function Name": "_elementState", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1327, + "End Line": 1334 + }, + { + "Function Name": "addScriptTag", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 957, + "End Line": 963 + }, + { + "Function Name": "setContent", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "18.2%", + "Start Line": 909, + "End Line": 933 + }, + { + "Function Name": "constructor", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 479, + "End Line": 500 + }, + { + "Function Name": "innerText", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "40.0%", + "Start Line": 1283, + "End Line": 1289 + }, + { + "Function Name": "type", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1391, + "End Line": 1393 + }, + { + "Function Name": "_content", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 891, + "End Line": 907 + }, + { + "Function Name": "_title", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "35.7%", + "Start Line": 1600, + "End Line": 1612 + }, + { + "Function Name": "onWebSocketResponse", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 406, + "End Line": 412 + }, + { + "Function Name": "_inflightRequestFinished", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 356, + "End Line": 365 + }, + { + "Function Name": "contextDestroyed", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1689, + "End Line": 1699 + }, + { + "Function Name": "onLifecycleEvent", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 506, + "End Line": 514 + }, + { + "Function Name": "evalOnSelector", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 841, + "End Line": 843 + }, + { + "Function Name": "abort", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "36.4%", + "Start Line": 1570, + "End Line": 1583 + }, + { + "Function Name": "nonStallingEvaluateInExistingContext", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 574, + "End Line": 581 + }, + { + "Function Name": "_setContext", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1668, + "End Line": 1675 + }, + { + "Function Name": "dispatchEvent", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "16.7%", + "Start Line": 835, + "End Line": 839 + }, + { + "Function Name": "verifyLifecycle", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1810, + "End Line": 1816 + }, + { + "Function Name": "evalOnSelectorAll", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "50.0%", + "Start Line": 854, + "End Line": 856 + }, + { + "Function Name": "renderUnexpectedValue", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1818, + "End Line": 1822 + }, + { + "Function Name": "addStyleTag", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1017, + "End Line": 1019 + }, + { + "Function Name": "_evalOnSelectorAll", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "25.0%", + "Start Line": 858, + "End Line": 863 + }, + { + "Function Name": "getAttribute", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1295, + "End Line": 1297 + }, + { + "Function Name": "addScriptUrl", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 990, + "End Line": 1002 + }, + { + "Function Name": "interceptConsoleMessage", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 376, + "End Line": 386 + }, + { + "Function Name": "addScriptContent", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 1004, + "End Line": 1014 + }, + { + "Function Name": "isVisible", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1336, + "End Line": 1339 + }, + { + "Function Name": "_inflightRequestStarted", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 367, + "End Line": 374 + }, + { + "Function Name": "invalidateNonStallingEvaluations", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 539, + "End Line": 545 + }, + { + "Function Name": "collectNavigations", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 650, + "End Line": 657 + }, + { + "Function Name": "textContent", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1279, + "End Line": 1281 + }, + { + "Function Name": "innerHTML", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1291, + "End Line": 1293 + }, + { + "Function Name": "isHidden", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1358, + "End Line": 1360 + }, + { + "Function Name": "isDisabled", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1362, + "End Line": 1364 + }, + { + "Function Name": "isEnabled", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1366, + "End Line": 1368 + }, + { + "Function Name": "isEditable", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1370, + "End Line": 1372 + }, + { + "Function Name": "isChecked", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1374, + "End Line": 1376 + }, + { + "Function Name": "_onDetached", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1629, + "End Line": 1640 + }, + { + "Function Name": "onWebSocketRequest", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 400, + "End Line": 404 + }, + { + "Function Name": "redirectNavigation", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 621, + "End Line": 629 + }, + { + "Function Name": "onWebSocketFrameSent", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 414, + "End Line": 418 + }, + { + "Function Name": "webSocketFrameReceived", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 420, + "End Line": 424 + }, + { + "Function Name": "click", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 1199, + "End Line": 1201 + }, + { + "Function Name": "tap", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 1231, + "End Line": 1235 + }, + { + "Function Name": "focus", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1241, + "End Line": 1243 + }, + { + "Function Name": "blur", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1245, + "End Line": 1247 + }, + { + "Function Name": "setInputFiles", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "20.0%", + "Start Line": 1386, + "End Line": 1389 + }, + { + "Function Name": "rafrafTimeout", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 1614, + "End Line": 1627 + }, + { + "Function Name": "waitForFunctionValueInUtility", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1585, + "End Line": 1594 + }, + { + "Function Name": "contextCreated", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1677, + "End Line": 1687 + }, + { + "Function Name": "highlight", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 1308, + "End Line": 1315 + }, + { + "Function Name": "reportRequestFinished", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 322, + "End Line": 327 + }, + { + "Function Name": "extendInjectedScript", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1721, + "End Line": 1727 + }, + { + "Function Name": "frameLifecycleEvent", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 294, + "End Line": 298 + }, + { + "Function Name": "webSocketError", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 433, + "End Line": 437 + }, + { + "Function Name": "waitForLoadState", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 715, + "End Line": 719 + }, + { + "Function Name": "_onClearLifecycle", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 516, + "End Line": 527 + }, + { + "Function Name": "_startNetworkIdleTimer", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1701, + "End Line": 1712 + }, + { + "Function Name": "dragAndDrop", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1207, + "End Line": 1229 + }, + { + "Function Name": "frameDetached", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 286, + "End Line": 292 + }, + { + "Function Name": "_removeFramesRecursively", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 348, + "End Line": 354 + }, + { + "Function Name": "nonStallingRawEvaluateInExistingMainContext", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 565, + "End Line": 572 + }, + { + "Function Name": "context", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 725, + "End Line": 731 + }, + { + "Function Name": "origin", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 943, + "End Line": 947 + }, + { + "Function Name": "onerror", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1009, + "End Line": 1015 + }, + { + "Function Name": "collect", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 136, + "End Line": 140 + }, + { + "Function Name": "requestReceivedResponse", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 316, + "End Line": 320 + }, + { + "Function Name": "_clearWebSockets", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 388, + "End Line": 393 + }, + { + "Function Name": "webSocketClosed", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 426, + "End Line": 431 + }, + { + "Function Name": "_setPendingDocument", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 529, + "End Line": 533 + }, + { + "Function Name": "_existingMainContext", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 737, + "End Line": 739 + }, + { + "Function Name": "onerror", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 997, + "End Line": 1002 + }, + { + "Function Name": "frame", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 143, + "End Line": 145 + }, + { + "Function Name": "removeChildFramesRecursively", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 343, + "End Line": 346 + }, + { + "Function Name": "selectOption", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 1382, + "End Line": 1384 + }, + { + "Function Name": "frames", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 131, + "End Line": 141 + }, + { + "Function Name": "rafrafTimeoutScreenshotElementWithProgress", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1192, + "End Line": 1197 + }, + { + "Function Name": "fill", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1237, + "End Line": 1239 + }, + { + "Function Name": "dispose", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 125 + }, + { + "Function Name": "_stopNetworkIdleTimer", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1714, + "End Line": 1719 + }, + { + "Function Name": "createDummyMainFrameIfNeeded", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 115, + "End Line": 118 + }, + { + "Function Name": "frameWillPotentiallyRequestNavigation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 186, + "End Line": 189 + }, + { + "Function Name": "frameDidPotentiallyRequestNavigation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 191, + "End Line": 194 + }, + { + "Function Name": "goto", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 631, + "End Line": 634 + }, + { + "Function Name": "querySelector", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 768 + }, + { + "Function Name": "release", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1803, + "End Line": 1807 + }, + { + "Function Name": "maskSelectors", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 865, + "End Line": 871 + }, + { + "Function Name": "name", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 935, + "End Line": 937 + }, + { + "Function Name": "dblclick", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1203, + "End Line": 1205 + }, + { + "Function Name": "hover", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1378, + "End Line": 1380 + }, + { + "Function Name": "check", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1399, + "End Line": 1401 + }, + { + "Function Name": "uncheck", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1403, + "End Line": 1405 + }, + { + "Function Name": "addStyleUrl", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1036, + "End Line": 1047 + }, + { + "Function Name": "addStyleContent", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1049, + "End Line": 1060 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 90 + }, + { + "Function Name": "onWebSocketCreated", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 395, + "End Line": 398 + }, + { + "Function Name": "_fireInternalFrameNavigation", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 441 + }, + { + "Function Name": "querySelectorAll", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 873, + "End Line": 875 + }, + { + "Function Name": "waitForTimeout", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1407, + "End Line": 1409 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 106, + "End Line": 109 + }, + { + "Function Name": "frameElement", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 721, + "End Line": 723 + }, + { + "Function Name": "content", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 889 + }, + { + "Function Name": "title", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1596, + "End Line": 1598 + }, + { + "Function Name": "_asLocator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1758, + "End Line": 1760 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1768, + "End Line": 1771 + }, + { + "Function Name": "hideHighlight", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1317, + "End Line": 1325 + }, + { + "Function Name": "waitFor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1773, + "End Line": 1776 + }, + { + "Function Name": "_allocateFrameSeq", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 113 + }, + { + "Function Name": "mainFrame", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 129 + }, + { + "Function Name": "_isDetached", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 504 + }, + { + "Function Name": "pendingDocument", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 535, + "End Line": 537 + }, + { + "Function Name": "mainContext", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 733, + "End Line": 735 + }, + { + "Function Name": "utilityContext", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 741, + "End Line": 743 + }, + { + "Function Name": "url", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 939, + "End Line": 941 + }, + { + "Function Name": "parentFrame", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 949, + "End Line": 951 + }, + { + "Function Name": "_getChildFrames", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 953, + "End Line": 955 + }, + { + "Function Name": "retain", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1799, + "End Line": 1801 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Control Flow Branches": 454, + "Sequential Logic Declarations": 516, + "Function Parameters": 276, + "Function/Method Declarations": 161, + "Class/Entity Declarations": 4, + "Defensive Programming Constructs": 78, + "Type/Safety Bypasses": 64, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 928, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 6, + "Asynchronous/Concurrent Execution": 1397, + "UI / View Layer Components": 14, + "Closures and Anonymous Functions": 73, + "Global State Dependencies": 18, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 41, + "Collection Iterators / Comprehensions": 5, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 26, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 12, + "Dependency Injection Constructs": 7, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 43, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 45, + "Thread Sleeps & Blocking Waits": 5, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 192, + "Resource Deallocation & Cleanup": 26, + "Private / Encapsulated Scopes": 39, + "Event Listeners & Subscribers": 2, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 1477, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -727616,25 +729726,25 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, + "Core Var Decl": 235, + "Design Camel Case": 47, + "Design Snake Case": 158, + "Design Pascal Case": 16, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 7, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 56, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "External Network & I/O Hooks": 1, + "Dynamic Code Execution (Eval/Exec)": 5, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -727648,81 +729758,102 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 22, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.security.csrf.CrumbIssuer" + "../utils", + "../utils/isomorphic/manualPromise", + "../utils/isomorphic/selectorParser", + "./browserContext", + "./callLog", + "./console", + "./dom", + "./errors", + "./fileUploadUtils", + "./frameSelectors", + "./helper", + "./instrumentation", + "./javascript", + "./network", + "./page", + "./progress", + "./protocolError", + "./screenshotter", + "./types", + "./utils/eventsHelper", + "@injected/injectedScript", + "@protocol/channels" ] }, - "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy": { + "typescript/playwright/protocol.ts": { "1. Artifact Identity": { - "Filename": "hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", - "Language": "Groovy", + "Filename": "protocol.ts", + "Path": "typescript/playwright/protocol.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4335.49, - "Y": 10.73, - "Z": -2858.75 + "X": 2364.46, + "Y": -153.12, + "Z": 6836.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 12, - "Documentation LOC": 23, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 43, + "Coding LOC": 22, + "Documentation LOC": 17, + "Structural Magnitude": 1.84, + "Control Flow Ratio": "44.4%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.182 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.09%", + "Error & Exception Exposure": "75.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", - "API Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "7.33%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -727752,13 +729883,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727775,11 +729906,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 2, + "Design Upper Case": 1, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -727808,28 +729939,52 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy": { + } + } + }, + "cobol/zopeneditor-sample": { + "Directory Group Magnitude": 533.44, + "File Count": 8, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "33.02%", + "Error & Exception Exposure": "32.53%", + "Tech Debt Exposure": "24.6%", + "Testing Exposure": "21.15%", + "API Exposure": "0.62%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "37.03%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "75.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.34%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cobol/zopeneditor-sample/CUSTCOPY.cpy": { "1. Artifact Identity": { - "Filename": "hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", - "Language": "Groovy", + "Filename": "CUSTCOPY.cpy", + "Path": "cobol/zopeneditor-sample/CUSTCOPY.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3032.16, - "Y": -66.91, - "Z": -2462.75 + "X": 8064.72, + "Y": 72.16, + "Z": 6148.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727838,30 +729993,30 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 12, - "Documentation LOC": 23, - "Structural Magnitude": 15.24, + "Total LOC": 54, + "Coding LOC": 27, + "Documentation LOC": 26, + "Structural Magnitude": 0.78, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.04%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.08%", + "Documentation Exposure": "27.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -727869,7 +730024,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, - "Function Parameters": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -727915,7 +730070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727965,28 +730120,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy": { + "cobol/zopeneditor-sample/DATETIME.cpy": { "1. Artifact Identity": { - "Filename": "hudson_tasks_Shell_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy", - "Language": "Groovy", + "Filename": "DATETIME.cpy", + "Path": "cobol/zopeneditor-sample/DATETIME.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3681.44, - "Y": 6.55, - "Z": -2952.19 + "X": 8239.82, + "Y": 77.7, + "Z": 5554.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727995,37 +730150,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 23, - "Documentation LOC": 23, - "Structural Magnitude": 18.46, - "Control Flow Ratio": "71.4%", + "Total LOC": 19, + "Coding LOC": 10, + "Documentation LOC": 9, + "Structural Magnitude": 0.76, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.696 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "44.59%", - "Error & Exception Exposure": "79.58%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.76%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.44%", + "Documentation Exposure": "45.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -728034,7 +730189,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -728072,7 +730227,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728080,7 +730235,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -728089,12 +730244,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -728128,22 +730283,22 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy": { + "cobol/zopeneditor-sample/REPTTOTL.cpy": { "1. Artifact Identity": { - "Filename": "hudson_triggers_SlowTriggerAdminMonitor_message.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy", - "Language": "Groovy", + "Filename": "REPTTOTL.cpy", + "Path": "cobol/zopeneditor-sample/REPTTOTL.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3469.05, - "Y": -183.94, - "Z": -2033.97 + "X": 7829.58, + "Y": 130.26, + "Z": 5269.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728152,100 +730307,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 41, - "Documentation LOC": 0, - "Structural Magnitude": 17.72, - "Control Flow Ratio": "16.7%", + "Total LOC": 24, + "Coding LOC": 15, + "Documentation LOC": 9, + "Structural Magnitude": 0.87, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.171 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.97%", - "Error & Exception Exposure": "80.24%", - "Tech Debt Exposure": "95.2%", - "Testing Exposure": "2.6%", + "Cognitive Load Exposure": "30.12%", + "Error & Exception Exposure": "78.78%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "96.21%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.08%", + "Documentation Exposure": "58.61%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "table", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 20, - "End Line": 46 - }, - { - "Function Name": "div", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 11, - "End Line": 47 - }, - { - "Function Name": "form", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 16 - }, - { - "Function Name": "button", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 15 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 10, - "Function Parameters": 16, - "Function/Method Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 3, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728270,7 +730384,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 33, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728287,15 +730401,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728319,34 +730433,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.Util", - "hudson.triggers.SlowTriggerAdminMonitor", - "jenkins.model.Jenkins", - "org.apache.commons.jelly.tags.fmt.FmtTagLibrary" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy": { + "cobol/zopeneditor-sample/SAM1.cbl": { "1. Artifact Identity": { - "Filename": "hudson_util_JenkinsReloadFailed_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy", - "Language": "Groovy", + "Filename": "SAM1.cbl", + "Path": "cobol/zopeneditor-sample/SAM1.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3474.61, - "Y": 0.76, - "Z": -3139.03 + "X": 7747.05, + "Y": 128.97, + "Z": 5685.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728355,61 +730464,262 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 0, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 505, + "Coding LOC": 417, + "Documentation LOC": 52, + "Structural Magnitude": 340.74, + "Control Flow Ratio": "79.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 1.007 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "73.62%", + "Error & Exception Exposure": "84.91%", + "Tech Debt Exposure": "99.51%", + "Testing Exposure": "80.0%", + "API Exposure": "2.23%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "12.84%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "100-PROCESS-TRANSACTIONS", + "Structural Impact": 24.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 22, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 261, + "End Line": 291 + }, + { + "Function Name": "710-READ-TRAN-FILE", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "91.7%", + "Start Line": 388, + "End Line": 407 + }, + { + "Function Name": "210-PROCESS-ADD-TRAN", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 10, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 315, + "End Line": 333 + }, + { + "Function Name": "200-PROCESS-UPDATE-TRAN", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 293, + "End Line": 313 + }, + { + "Function Name": "REPORT-FILE", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 360, + "End Line": 386 + }, + { + "Function Name": "730-READ-CUSTOMER-FILE", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 423, + "End Line": 438 + }, + { + "Function Name": "740-WRITE-CUSTOUT-FILE", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 440, + "End Line": 455 + }, + { + "Function Name": "CURRENT-SECOND", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "63.6%", + "Start Line": 232, + "End Line": 257 + }, + { + "Function Name": "220-PROCESS-DELETE-TRAN", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 335, + "End Line": 345 + }, + { + "Function Name": "720-POSITION-CUST-FILE", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 409, + "End Line": 416 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 178, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 38, + "End Line": 215 + }, + { + "Function Name": "830-REPORT-TRAN-PROCESSED", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 471, + "End Line": 478 + }, + { + "Function Name": "721-COPY-RECORDS", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 418, + "End Line": 421 + }, + { + "Function Name": "000-MAIN", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 231 + }, + { + "Function Name": "850-REPORT-TRAN-STATS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 480, + "End Line": 505 + }, + { + "Function Name": "299-REPORT-BAD-TRAN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 347, + "End Line": 354 + }, + { + "Function Name": "800-INIT-REPORT", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 469 + }, + { + "Function Name": "700-OPEN-FILES", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 359 + }, + { + "Function Name": "790-CLOSE-FILES", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 460 + }, + { + "Function Name": "CURRENT-SECOND", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 258, + "End Line": 259 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 102, + "Sequential Logic Declarations": 27, + "Function Parameters": 1, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 22, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 50, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 193, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -728420,27 +730730,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 12, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 417, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, + "Regex Execution": 3, + "Time Date Logic": 5, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -728449,15 +730759,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 15, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Upper Case": 15, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 20, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728481,31 +730791,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "CUSTCOPY", + "TRANREC" ] }, - "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy": { + "cobol/zopeneditor-sample/SAM2.cbl": { "1. Artifact Identity": { - "Filename": "hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", - "Language": "Groovy", + "Filename": "SAM2.cbl", + "Path": "cobol/zopeneditor-sample/SAM2.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -4471.0, - "Y": -74.87, - "Z": -2414.31 + "X": 7530.13, + "Y": 148.97, + "Z": 5846.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728514,59 +730825,120 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "20.0%", + "Total LOC": 159, + "Coding LOC": 119, + "Documentation LOC": 27, + "Structural Magnitude": 188.38, + "Control Flow Ratio": "84.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.857 + "Raw Cognitive Density": 1.246 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "87.9%", + "Error & Exception Exposure": "96.54%", + "Tech Debt Exposure": "97.32%", + "Testing Exposure": "80.0%", + "API Exposure": "2.73%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "20.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "100-VALIDATE-TRAN", + "Structural Impact": 27.0, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 24, + "Input Parameters": 0, + "Control Flow Ratio": "92.3%", + "Start Line": 72, + "End Line": 111 + }, + { + "Function Name": "200-PROCESS-TRAN", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 14, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 113, + "End Line": 141 + }, + { + "Function Name": "000-MAIN", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 57, + "End Line": 70 + }, + { + "Function Name": "310-CRUNCH-LOOP", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 148, + "End Line": 159 + }, + { + "Function Name": "300-PROCESS-CPU-CRUNCH", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 143, + "End Line": 146 + }, + { + "Function Name": "TRAN-MSG", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 54, + "Sequential Logic Declarations": 10, + "Function Parameters": 1, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 17, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 120, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728581,7 +730953,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -728591,14 +730963,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 119, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 1, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -728608,15 +730980,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728640,31 +731012,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.views.ViewsTabBar" + "CUSTCOPY", + "TRANREC" ] }, - "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy": { + "cobol/zopeneditor-sample/SAM2PAR5.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "SAM2PAR5.cpy", + "Path": "cobol/zopeneditor-sample/SAM2PAR5.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3248.42, - "Y": -339.42, - "Z": -1846.71 + "X": 7550.2, + "Y": 244.12, + "Z": 5155.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728673,90 +731046,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 55, - "Coding LOC": 27, - "Documentation LOC": 23, - "Structural Magnitude": 10.94, - "Control Flow Ratio": "28.6%", - "Popularity Rank": 0, + "Total LOC": 11, + "Coding LOC": 2, + "Documentation LOC": 8, + "Structural Magnitude": 0.55, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.407 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.26%", - "Error & Exception Exposure": "75.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.52%", + "Testing Exposure": "0.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "70.33%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.13%", + "Documentation Exposure": "11.48%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "div", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 37, - "End Line": 50 - }, - { - "Function Name": "div", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 38, - "End Line": 46 - }, - { - "Function Name": "div", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 49 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 5, - "Function Parameters": 5, - "Function/Method Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728781,7 +731123,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728798,12 +731140,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -728830,31 +731172,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [ - "hudson.model.AdministrativeMonitor" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy": { + "cobol/zopeneditor-sample/SAM2PARM.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", - "Language": "Groovy", + "Filename": "SAM2PARM.cpy", + "Path": "cobol/zopeneditor-sample/SAM2PARM.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -4556.58, - "Y": 26.88, - "Z": -2638.12 + "X": 7659.46, + "Y": 165.94, + "Z": 6032.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728863,60 +731203,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 46, - "Coding LOC": 19, - "Documentation LOC": 19, - "Structural Magnitude": 5.28, - "Control Flow Ratio": "40.0%", + "Total LOC": 12, + "Coding LOC": 3, + "Documentation LOC": 8, + "Structural Magnitude": 0.58, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.368 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.85%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.48%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.12%", + "Documentation Exposure": "16.8%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 31, - "End Line": 39 - }, - { - "Function Name": "div", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 37 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -728929,14 +731248,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728961,7 +731280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728978,15 +731297,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729010,29 +731329,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "SAM2PAR5" + ] }, - "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy": { + "cobol/zopeneditor-sample/TRANREC.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_ShutdownLink_index.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy", - "Language": "Groovy", + "Filename": "TRANREC.cpy", + "Path": "cobol/zopeneditor-sample/TRANREC.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3929.32, - "Y": 86.23, - "Z": -2954.64 + "X": 7331.65, + "Y": 247.2, + "Z": 5583.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729041,20 +731362,20 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 15.5, - "Control Flow Ratio": "37.5%", - "Popularity Rank": 0, + "Total LOC": 39, + "Coding LOC": 30, + "Documentation LOC": 8, + "Structural Magnitude": 0.78, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", - "Error & Exception Exposure": "78.58%", + "Cognitive Load Exposure": "49.52%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", @@ -729064,19 +731385,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "42.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -729086,14 +731407,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729107,7 +731428,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 4, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -729118,7 +731439,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 30, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729135,12 +731456,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -729167,31 +731488,53 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [ - "jenkins.management.Messages" - ] - }, - "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy": { + "9. Extracted Dependencies": [] + } + } + }, + "dockerfile/moby/builder/remotecontext/internal/tarsum": { + "Directory Group Magnitude": 508.82, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "26.17%", + "Error & Exception Exposure": "72.22%", + "Tech Debt Exposure": "57.45%", + "Testing Exposure": "2.37%", + "API Exposure": "4.44%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "80.0%", + "Commented Logic Exposure": "1.57%", + "Specification Exposure": "96.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.44%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_ArtifactManagerConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "builder_context.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -4221.14, - "Y": -57.32, - "Z": -2660.57 + "X": -6268.32, + "Y": -220.38, + "Z": 7543.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729200,52 +731543,63 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 9, - "Documentation LOC": 23, - "Structural Magnitude": 17.68, - "Control Flow Ratio": "66.7%", + "Total LOC": 22, + "Coding LOC": 12, + "Documentation LOC": 7, + "Structural Magnitude": 18.34, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.111 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "88.26%", + "Error & Exception Exposure": "83.38%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.38%", - "API Exposure": "0.0%", + "Testing Exposure": "2.05%", + "API Exposure": "6.63%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "60.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.17%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Remove", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 13, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -729273,11 +731627,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Tab Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729294,12 +731648,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -729333,22 +731687,22 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", - "Language": "Groovy", + "Filename": "fileinfosums.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3170.72, - "Y": 1.65, - "Z": -2907.95 + "X": -6514.74, + "Y": -198.77, + "Z": 6717.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729357,59 +731711,200 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "50.0%", + "Total LOC": 136, + "Coding LOC": 93, + "Documentation LOC": 21, + "Structural Magnitude": 103.96, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.944 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.72%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "37.64%", + "Error & Exception Exposure": "87.7%", + "Tech Debt Exposure": "98.11%", + "Testing Exposure": "2.55%", + "API Exposure": "6.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GetFile", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 43, + "End Line": 53 + }, + { + "Function Name": "GetAllFile", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 56, + "End Line": 64 + }, + { + "Function Name": "GetDuplicatePaths", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 67, + "End Line": 78 + }, + { + "Function Name": "Less", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 123, + "End Line": 128 + }, + { + "Function Name": "Less", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 110, + "End Line": 115 + }, + { + "Function Name": "SortBySums", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 97, + "End Line": 104 + }, + { + "Function Name": "Less", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 133, + "End Line": 135 + }, + { + "Function Name": "Swap", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 84 + }, + { + "Function Name": "Name", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 29 + }, + { + "Function Name": "Sum", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 33 + }, + { + "Function Name": "Pos", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 37 + }, + { + "Function Name": "Len", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 81 + }, + { + "Function Name": "SortByPos", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 89 + }, + { + "Function Name": "SortByNames", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 92, + "End Line": 94 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 27, + "Function Parameters": 14, + "Function/Method Declarations": 14, + "Class/Entity Declarations": 5, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 40, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 15, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 14, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729419,7 +731914,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -729430,11 +731925,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 16, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 55, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729451,15 +731946,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729483,29 +731978,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "runtime", + "sort", + "strings" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CauseOfInterruption_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy", - "Language": "Groovy", + "Filename": "tarsum.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3152.06, - "Y": -248.87, - "Z": -2012.19 + "X": -6552.92, + "Y": -210.0, + "Z": 7451.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729514,59 +732013,190 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 2, - "Documentation LOC": 1, - "Structural Magnitude": 15.18, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 299, + "Coding LOC": 224, + "Documentation LOC": 39, + "Structural Magnitude": 246.18, + "Control Flow Ratio": "45.3%", + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.5 + "Raw Cognitive Density": 1.283 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "49.17%", + "Error & Exception Exposure": "94.15%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "2.18%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "13.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.28%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Read", + "Structural Impact": 39.9, + "Lines of Code (LOC)": 91, + "Control Flow Branches": 24, + "Input Parameters": 1, + "Control Flow Ratio": "58.5%", + "Start Line": 191, + "End Line": 281 + }, + { + "Function Name": "encodeHeader", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 157, + "End Line": 169 + }, + { + "Function Name": "NewTarSumForLabel", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "42.9%", + "Start Line": 64, + "End Line": 83 + }, + { + "Function Name": "Sum", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 283, + "End Line": 294 + }, + { + "Function Name": "initTarSum", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 171, + "End Line": 189 + }, + { + "Function Name": "NewTarSumHash", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 53, + "End Line": 61 + }, + { + "Function Name": "NewTarSum", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 49 + }, + { + "Function Name": "NewTHash", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 133 + }, + { + "Function Name": "Hash", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "Version", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "Name", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 154 + }, + { + "Function Name": "Hash", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 155, + "End Line": 155 + }, + { + "Function Name": "GetSums", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 296, + "End Line": 298 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 47, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 17, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 8, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 141, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 15, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 10, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729575,22 +732205,22 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 2, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 62, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 182, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -729608,10 +732238,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, + "Core Var Decl": 9, + "Design Camel Case": 4, + "Design Snake Case": 4, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -729640,29 +732270,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 14, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "archive/tar", + "bytes", + "compress/gzip", + "crypto", + "crypto/sha256", + "encoding/hex", + "errors", + "fmt", + "hash", + "io", + "path", + "sha256", + "sha512", + "strings" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", - "Language": "Groovy", + "Filename": "versioning.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3743.74, - "Y": -232.66, - "Z": -1778.07 + "X": -6765.45, + "Y": -122.11, + "Z": 7372.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729671,59 +732316,150 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 120, + "Documentation LOC": 24, + "Structural Magnitude": 135.8, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.867 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "33.8%", + "Error & Exception Exposure": "95.87%", + "Tech Debt Exposure": "92.41%", + "Testing Exposure": "2.45%", + "API Exposure": "5.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "7.86%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "v1TarHeaderSelect", + "Structural Impact": 13.1, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 116, + "End Line": 151 + }, + { + "Function Name": "WriteV1Header", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 26, + "End Line": 30 + }, + { + "Function Name": "GetVersions", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 45, + "End Line": 51 + }, + { + "Function Name": "VersionLabelForChecksum", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 35, + "End Line": 42 + }, + { + "Function Name": "GetVersionFromTarsum", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 71, + "End Line": 78 + }, + { + "Function Name": "getTarHeaderSelector", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 159, + "End Line": 166 + }, + { + "Function Name": "v0TarHeaderSelect", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 114 + }, + { + "Function Name": "selectHeaders", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 97 + }, + { + "Function Name": "String", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 68 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 14, + "Sequential Logic Declarations": 21, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 80, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 13, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 3, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729733,22 +732469,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 2, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 21, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 87, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729765,15 +732501,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 15, + "Design Camel Case": 8, + "Design Snake Case": 4, + "Design Pascal Case": 3, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 2, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729797,29 +732533,39 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 9, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 5, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "archive/tar", + "errors", + "io", + "sort", + "strconv", + "strings", + "tarsum", + "tarsum.dev", + "tarsum.v1" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "writercloser.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -4413.61, - "Y": -155.16, - "Z": -1850.48 + "X": -6982.78, + "Y": -77.95, + "Z": 7076.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729828,52 +732574,73 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 5, + "Total LOC": 23, + "Coding LOC": 17, "Documentation LOC": 0, - "Structural Magnitude": 12.6, + "Structural Magnitude": 4.54, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "5.22%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.77%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "96.71%", + "Testing Exposure": "2.36%", + "API Exposure": "2.3%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.36%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Close", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 18 + }, + { + "Function Name": "Flush", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 22 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -729900,12 +732667,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729922,15 +732689,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729956,69 +732723,94 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "io" ] - }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy": { + } + } + }, + "groovy/jenkins_view_groovy": { + "Directory Group Magnitude": 487.3, + "File Count": 30, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "96.7%", + "Static: Literature & Documentation": "3.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "10.19%", + "Error & Exception Exposure": "23.62%", + "Tech Debt Exposure": "10.49%", + "Testing Exposure": "4.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "10.55%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "74.0%", + "Instability Exposure": "48.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.12%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "groovy/jenkins_view_groovy/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalPluginConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "LICENSE.txt", + "Path": "groovy/jenkins_view_groovy/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3509.71, - "Y": -290.22, - "Z": -1838.66 + "X": 5619.33, + "Y": -266.49, + "Z": -6270.6 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 13, - "Documentation LOC": 1, - "Structural Magnitude": 15.26, - "Control Flow Ratio": "25.0%", + "Total LOC": 23, + "Coding LOC": 0, + "Documentation LOC": 17, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.462 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.99%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.85%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -730032,14 +732824,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730064,7 +732856,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730081,12 +732873,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730113,31 +732905,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.Functions" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy": { + "groovy/jenkins_view_groovy/Jenkinsfile": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Filename": "Jenkinsfile", + "Path": "groovy/jenkins_view_groovy/Jenkinsfile", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": -2843.62, - "Y": -50.2, - "Z": -2783.45 + "X": 4796.64, + "Y": -119.0, + "Z": -6799.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730146,82 +732936,172 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 3.84, - "Control Flow Ratio": "0.0%", + "Total LOC": 257, + "Coding LOC": 208, + "Documentation LOC": 32, + "Structural Magnitude": 95.26, + "Control Flow Ratio": "35.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.01%", + "Cognitive Load Exposure": "12.44%", + "Error & Exception Exposure": "60.06%", + "Tech Debt Exposure": "19.49%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "50.38%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.39%", + "Documentation Exposure": "13.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "div", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Function Name": "node", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 136, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 79, + "End Line": 214 + }, + { + "Function Name": "stage", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 73, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 141, + "End Line": 213 + }, + { + "Function Name": "stage", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 89, + "End Line": 138 + }, + { + "Function Name": "recordIssues", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "100.0%", + "Start Line": 155, + "End Line": 195 + }, + { + "Function Name": "stage", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "11.1%", + "Start Line": 20, + "End Line": 57 + }, + { + "Function Name": "node", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "11.1%", + "Start Line": 22, + "End Line": 55 + }, + { + "Function Name": "node", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 17 + "Start Line": 228, + "End Line": 249 + }, + { + "Function Name": "withChecks", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 231, + "End Line": 238 + }, + { + "Function Name": "dir", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 197, + "End Line": 204 + }, + { + "Function Name": "dir", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 98 }, { - "Function Name": "div", + "Function Name": "stage", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 13 + "Start Line": 82, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Control Flow Branches": 16, + "Sequential Logic Declarations": 29, + "Function Parameters": 36, + "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 2, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -730244,7 +733124,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 190, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730261,12 +733141,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, + "Core Var Decl": 23, + "Design Camel Case": 13, + "Design Snake Case": 10, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730293,19 +733173,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "jenkins.model.ProjectNamingStrategy" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy": { + "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_InterruptedBuildAction_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy", + "Filename": "hudson_PluginWrapper_uninstall.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730315,9 +733193,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -4245.7, - "Y": 143.99, - "Z": -3089.82 + "X": 4253.01, + "Y": -65.57, + "Z": -6270.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730326,37 +733204,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 10, - "Coding LOC": 7, + "Total LOC": 21, + "Coding LOC": 17, "Documentation LOC": 0, - "Structural Magnitude": 13.64, + "Structural Magnitude": 15.34, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "66.88%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, + "Sequential Logic Declarations": 5, "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -730371,14 +733249,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730403,7 +733281,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730420,12 +733298,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730452,17 +733330,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "jenkins.model.Jenkins" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_JenkinsLocationConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Filename": "hudson_model_AllView_noJob.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730472,9 +733352,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -4098.13, - "Y": -153.54, - "Z": -1968.0 + "X": 4319.59, + "Y": -45.97, + "Z": -6584.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730483,44 +733363,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 15.22, - "Control Flow Ratio": "25.0%", + "Total LOC": 143, + "Coding LOC": 120, + "Documentation LOC": 2, + "Structural Magnitude": 17.4, + "Control Flow Ratio": "22.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.545 + "Raw Cognitive Density": 0.15 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "8.32%", + "Error & Exception Exposure": "69.07%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.69%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "21.18%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 46, + "Function Parameters": 45, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -730535,7 +733415,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730560,7 +733440,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 108, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730577,13 +733457,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, + "Core Var Decl": 6, + "Design Camel Case": 5, "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -730609,19 +733489,22 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "hudson.model.Computer", + "hudson.model.Item", + "hudson.model.Job", + "jenkins.model.Jenkins" ] }, - "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Filename": "hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730631,9 +733514,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -3770.76, - "Y": 72.92, - "Z": -3332.29 + "X": 4468.17, + "Y": 104.72, + "Z": -7644.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730642,39 +733525,50 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 15.22, - "Control Flow Ratio": "25.0%", + "Total LOC": 20, + "Coding LOC": 14, + "Documentation LOC": 1, + "Structural Magnitude": 2.08, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.545 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.69%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.23%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "66.03%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 17 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 3, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -730687,14 +733581,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 5, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730719,7 +733613,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730736,15 +733630,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -730768,29 +733662,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.model.EnvironmentContributor", + "hudson.scm.SCM" + ] }, - "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_mvn_GlobalMavenConfig_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy", + "Filename": "hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2832.76, - "Y": -138.99, - "Z": -2328.36 + "X": 3908.95, + "Y": 56.25, + "Z": -6834.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730799,30 +733696,30 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 13.12, + "Total LOC": 30, + "Coding LOC": 4, + "Documentation LOC": 23, + "Structural Magnitude": 12.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.92%", + "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "15.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -730830,7 +733727,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 2, - "Function Parameters": 0, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -730876,7 +733773,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730931,88 +733828,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "typescript/playwright": { - "Directory Group Magnitude": 563.96, - "File Count": 11, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "63.6%", - "Static: Literature & Documentation": "36.4%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "44.71%", - "Error & Exception Exposure": "58.03%", - "Tech Debt Exposure": "38.98%", - "Testing Exposure": "36.78%", - "API Exposure": "2.82%", - "Concurrency Exposure": "48.67%", - "State Flux Exposure": "45.45%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "63.64%", - "Instability Exposure": "31.82%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.88%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "typescript/playwright/README.md": { + }, + "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "typescript/playwright/README.md", - "Language": "Markdown", + "Filename": "hudson_model_UsageStatistics_global.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3075.65, - "Y": -338.21, - "Z": 7200.99 + "X": 5407.21, + "Y": -187.04, + "Z": -6452.44 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 319, - "Coding LOC": 0, - "Documentation LOC": 215, - "Structural Magnitude": 6.38, - "Control Flow Ratio": "0.0%", + "Total LOC": 22, + "Coding LOC": 18, + "Documentation LOC": 0, + "Structural Magnitude": 15.36, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "26.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "65.28%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731033,7 +733905,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731058,7 +733930,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731075,19 +733947,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 44, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 22, - "Hyperlinked Literature References": 40, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -731107,69 +733979,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions", + "hudson.model.UsageStatistics", + "jenkins.security.FIPS140" + ] }, - "typescript/playwright/SECURITY.md": { + "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy": { "1. Artifact Identity": { - "Filename": "SECURITY.md", - "Path": "typescript/playwright/SECURITY.md", - "Language": "Markdown", + "Filename": "hudson_security_GlobalSecurityConfiguration_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3106.81, - "Y": -406.69, - "Z": 7706.57 + "X": 5252.49, + "Y": -40.13, + "Z": -6980.08 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 0, - "Documentation LOC": 24, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 70, + "Coding LOC": 58, + "Documentation LOC": 0, + "Structural Magnitude": 16.16, + "Control Flow Ratio": "41.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.207 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "10.23%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "32.78%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 10, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731183,14 +734059,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731215,7 +734091,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 47, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731232,19 +734108,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 4, - "Hyperlinked Literature References": 12, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -731264,73 +734140,79 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions", + "hudson.markup.MarkupFormatterDescriptor", + "hudson.model.Descriptor", + "hudson.security.AuthorizationStrategy", + "hudson.security.SecurityRealm" + ] }, - "typescript/playwright/SUPPORT.md": { + "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy": { "1. Artifact Identity": { - "Filename": "SUPPORT.md", - "Path": "typescript/playwright/SUPPORT.md", - "Language": "Markdown", + "Filename": "hudson_security_LegacySecurityRealm_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2077.97, - "Y": -192.07, - "Z": 7795.7 + "X": 4670.85, + "Y": -181.04, + "Z": -6038.06 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 0, - "Documentation LOC": 10, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 28, + "Documentation LOC": 0, + "Structural Magnitude": 15.56, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.321 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "15.26%", + "Error & Exception Exposure": "87.13%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "52.08%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -731340,14 +734222,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731372,7 +734254,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731389,18 +734271,18 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 2, + "Design Camel Case": 1, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 3, + "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -731421,69 +734303,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.PluginWrapper", + "hudson.model.UnprotectedRootAction", + "jenkins.model.Jenkins" + ] }, - "typescript/playwright/NOTICE": { + "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "NOTICE", - "Path": "typescript/playwright/NOTICE", - "Language": "Plaintext", + "Filename": "hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (NOTICE)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2915.07, - "Y": -252.8, - "Z": 7050.15 + "X": 5059.16, + "Y": 71.52, + "Z": -7234.62 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 4, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 20, + "Coding LOC": 16, + "Documentation LOC": 0, + "Structural Magnitude": 15.32, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "26.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "68.52%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731497,14 +734383,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731529,7 +734415,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731546,12 +734432,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -731578,81 +734464,83 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.security.csrf.CrumbIssuer" + ] }, - "typescript/playwright/api.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy": { "1. Artifact Identity": { - "Filename": "api.ts", - "Path": "typescript/playwright/api.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2463.87, - "Y": -272.98, - "Z": 7965.4 + "X": 5480.53, + "Y": -120.37, + "Z": -6840.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 32, - "Documentation LOC": 15, - "Structural Magnitude": 4.86, + "Total LOC": 36, + "Coding LOC": 12, + "Documentation LOC": 23, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.094 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.64%", - "Error & Exception Exposure": "71.09%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "17.88%", - "Concurrency Exposure": "35.51%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "100.0%", + "Documentation Exposure": "34.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 36, - "Function Parameters": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 32, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 1, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, @@ -731661,7 +734549,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 32, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731686,11 +734574,11 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -731735,703 +734623,121 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 31, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./android", - "./browser", - "./browserContext", - "./browserType", - "./cdpSession", - "./clock", - "./consoleMessage", - "./coverage", - "./debugger", - "./dialog", - "./disposable", - "./download", - "./electron", - "./elementHandle", - "./errors", - "./fetch", - "./fileChooser", - "./frame", - "./input", - "./jsHandle", - "./locator", - "./network", - "./page", - "./playwright", - "./screencast", - "./selectors", - "./tracing", - "./types", - "./video", - "./webError", - "./worker" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/bidiConnection.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy": { "1. Artifact Identity": { - "Filename": "bidiConnection.ts", - "Path": "typescript/playwright/bidiConnection.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "EventEmitter", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2134.16, - "Y": -157.85, - "Z": 7523.62 + "X": 4386.96, + "Y": -167.98, + "Z": -5886.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 261, - "Coding LOC": 204, - "Documentation LOC": 27, - "Structural Magnitude": 31.55, - "Control Flow Ratio": "42.2%", + "Total LOC": 37, + "Coding LOC": 12, + "Documentation LOC": 23, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.045 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.57%", - "Error & Exception Exposure": "99.15%", - "Tech Debt Exposure": "95.32%", - "Testing Exposure": "80.0%", - "API Exposure": "1.45%", - "Concurrency Exposure": "99.88%", - "State Flux Exposure": "100.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "34.08%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_dispatchMessage", - "Structural Impact": 38.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 24, - "Input Parameters": 1, - "Control Flow Ratio": "82.8%", - "Start Line": 70, - "End Line": 122 - }, - { - "Function Name": "dispatchMessage", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 238, - "End Line": 259 - }, - { - "Function Name": "send", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 193, - "End Line": 205 - }, - { - "Function Name": "sendMayFail", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 207, - "End Line": 209 - }, - { - "Function Name": "dispose", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 219, - "End Line": 232 - }, - { - "Function Name": "_onClose", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 124, - "End Line": 131 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 59 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 169, - "End Line": 181 - }, - { - "Function Name": "close", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 137, - "End Line": 140 - }, - { - "Function Name": "createMainFrameBrowsingContextSession", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 146 - }, - { - "Function Name": "rawSend", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "addFrameBrowsingContext", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 183, - "End Line": 186 - }, - { - "Function Name": "removeFrameBrowsingContext", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 188, - "End Line": 191 - }, - { - "Function Name": "hasCallback", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 236 - }, - { - "Function Name": "nextMessageId", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 63 - }, - { - "Function Name": "isClosed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 135 - }, - { - "Function Name": "markAsCrashed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 213 - }, - { - "Function Name": "isDisposed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 217 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 57, - "Sequential Logic Declarations": 78, - "Function Parameters": 33, - "Function/Method Declarations": 18, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 20, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 182, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 25, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 5, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 23, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 9, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 11, - "Dependency Injection Constructs": 5, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 9, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 25, - "Resource Deallocation & Cleanup": 11, - "Private / Encapsulated Scopes": 12, - "Event Listeners & Subscribers": 3, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 187, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 25, - "Design Camel Case": 3, - "Design Snake Case": 16, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 2, - "Duplicate Logic": 0, - "Orphaned Logic": 7, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 8, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../helper", - "../protocolError", - "../transport", - "../types", - "../utils/debugLogger", - "./third_party/bidiCommands", - "./third_party/bidiProtocol", - "events" - ] - }, - "typescript/playwright/connection.ts": { - "1. Artifact Identity": { - "Filename": "connection.ts", - "Path": "typescript/playwright/connection.ts", - "Language": "Typescript", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "ChannelOwner, EventEmitter", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2684.85, - "Y": -180.49, - "Z": 7024.7 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 353, - "Coding LOC": 304, - "Documentation LOC": 20, - "Structural Magnitude": 48.63, - "Control Flow Ratio": "49.4%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.44 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.6%", - "Error & Exception Exposure": "95.94%", - "Tech Debt Exposure": "89.91%", - "Testing Exposure": "80.0%", - "API Exposure": "0.16%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_createRemoteObject", - "Structural Impact": 159.8, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 68, - "Input Parameters": 4, - "Control Flow Ratio": "64.2%", - "Start Line": 232, - "End Line": 342 - }, - { - "Function Name": "sendMessageToServer", - "Structural Impact": 41.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 17, - "Input Parameters": 4, - "Control Flow Ratio": "68.0%", - "Start Line": 127, - "End Line": 149 - }, - { - "Function Name": "dispatch", - "Structural Impact": 22.3, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "65.0%", - "Start Line": 159, - "End Line": 208 - }, - { - "Function Name": "_tChannelImplFromWire", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "85.7%", - "Start Line": 220, - "End Line": 230 - }, - { - "Function Name": "constructor", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 84, - "End Line": 90 - }, - { - "Function Name": "close", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 210, - "End Line": 218 - }, - { - "Function Name": "formatCallLog", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 345, - "End Line": 352 - }, - { - "Function Name": "setIsTracing", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 125 - }, - { - "Function Name": "onmessage", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 68, - "End Line": 81 - }, - { - "Function Name": "_validatorFromWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 151, - "End Line": 157 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 52, - "End Line": 54 - }, - { - "Function Name": "getObjectWithKnownName", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "initialize", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 61 - }, - { - "Function Name": "markAsRemote", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 94 - }, - { - "Function Name": "isRemote", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 98 - }, - { - "Function Name": "useRawBuffers", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 102 - }, - { - "Function Name": "rawBuffers", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "localUtils", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 110 - }, - { - "Function Name": "initializePlaywright", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 112, - "End Line": 114 - }, - { - "Function Name": "isUnderTest", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 156 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 116, - "Sequential Logic Declarations": 119, - "Function Parameters": 30, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 13, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 138, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 58, - "UI / View Layer Components": 4, - "Closures and Anonymous Functions": 4, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 6, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 34, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 4, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 43, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 10, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 20, - "Resource Deallocation & Cleanup": 3, - "Private / Encapsulated Scopes": 14, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 259, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 3, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -732442,22 +734748,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 54, - "Design Camel Case": 1, - "Design Snake Case": 49, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 1, + "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -732474,350 +734780,115 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 32, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "../protocol/validator", - "../utils/isomorphic/stackTrace", - "./android", - "./artifact", - "./browser", - "./browserContext", - "./browserType", - "./cdpSession", - "./channelOwner", - "./clientInstrumentation", - "./debugger", - "./dialog", - "./disposable", - "./electron", - "./elementHandle", - "./errors", - "./eventEmitter", - "./fetch", - "./frame", - "./jsHandle", - "./jsonPipe", - "./localUtils", - "./network", - "./page", - "./platform", - "./playwright", - "./stream", - "./tracing", - "./types", - "./worker", - "./writableStream", - "@protocol/channels" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/crConnection.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy": { "1. Artifact Identity": { - "Filename": "crConnection.ts", - "Path": "typescript/playwright/crConnection.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_Shell_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "SdkObject", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2834.21, - "Y": -329.2, - "Z": 7886.01 + "X": 4580.34, + "Y": -115.23, + "Z": -6530.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 240, - "Coding LOC": 186, - "Documentation LOC": 22, - "Structural Magnitude": 39.53, - "Control Flow Ratio": "38.8%", + "Total LOC": 50, + "Coding LOC": 23, + "Documentation LOC": 23, + "Structural Magnitude": 18.46, + "Control Flow Ratio": "71.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.96 + "Raw Cognitive Density": 0.696 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.61%", - "Error & Exception Exposure": "99.52%", - "Tech Debt Exposure": "58.0%", - "Testing Exposure": "80.0%", - "API Exposure": "2.03%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", + "Cognitive Load Exposure": "44.59%", + "Error & Exception Exposure": "79.58%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "95.76%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "32.44%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_onMessage", - "Structural Impact": 20.8, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "92.9%", - "Start Line": 152, - "End Line": 172 - }, - { - "Function Name": "send", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 136, - "End Line": 146 - }, - { - "Function Name": "_onMessage", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 77, - "End Line": 84 - }, - { - "Function Name": "_sendMayFail", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 148, - "End Line": 150 - }, - { - "Function Name": "constructor", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 117, - "End Line": 124 - }, - { - "Function Name": "_rawSend", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 67, - "End Line": 75 - }, - { - "Function Name": "send", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 217, - "End Line": 219 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 208, - "End Line": 215 - }, - { - "Function Name": "createChildSession", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 130, - "End Line": 134 - }, - { - "Function Name": "_send", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 225, - "End Line": 227 - }, - { - "Function Name": "detach", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 174, - "End Line": 184 - }, - { - "Function Name": "dispose", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 186, - "End Line": 196 - }, - { - "Function Name": "_onClose", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 86, - "End Line": 93 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 65 - }, - { - "Function Name": "close", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 95, - "End Line": 98 - }, - { - "Function Name": "detach", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 223 - }, - { - "Function Name": "attachToTarget", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 229, - "End Line": 232 - }, - { - "Function Name": "createBrowserSession", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 103 - }, - { - "Function Name": "_onClose", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 238 - }, - { - "Function Name": "_markAsCrashed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 128 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 60, - "Function Parameters": 33, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 9, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, - "State Mutations / Variable Reassignments": 173, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 121, - "UI / View Layer Components": 4, - "Closures and Anonymous Functions": 4, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 9, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 11, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 6, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 8, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 3, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 20, - "Resource Deallocation & Cleanup": 9, - "Private / Encapsulated Scopes": 15, - "Event Listeners & Subscribers": 1, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 163, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -732834,15 +734905,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 1, - "Design Snake Case": 10, - "Design Pascal Case": 5, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -732850,7 +734921,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -732866,2218 +734937,134 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "../../utils", - "../helper", - "../instrumentation", - "../protocolError", - "../transport", - "../types", - "../utils/debugLogger", - "./protocol", - "@protocol/progress" - ] - }, - "typescript/playwright/dispatcher.ts": { - "1. Artifact Identity": { - "Filename": "dispatcher.ts", - "Path": "typescript/playwright/dispatcher.ts", - "Language": "Typescript", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "EventEmitter implements channels, Dispatcher", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2365.55, - "Y": -216.96, - "Z": 7618.62 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 415, - "Coding LOC": 339, - "Documentation LOC": 25, - "Structural Magnitude": 58.8, - "Control Flow Ratio": "48.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.405 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.92%", - "Error & Exception Exposure": "99.38%", - "Tech Debt Exposure": "89.53%", - "Testing Exposure": "80.0%", - "API Exposure": "1.19%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "dispatch", - "Structural Impact": 53.5, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 33, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 299, - "End Line": 407 - }, - { - "Function Name": "constructor", - "Structural Impact": 20.7, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "63.6%", - "Start Line": 62, - "End Line": 83 - }, - { - "Function Name": "_tChannelImplFromWire", - "Structural Impact": 18.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 245, - "End Line": 256 - }, - { - "Function Name": "_disposeRecursively", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 142, - "End Line": 163 - }, - { - "Function Name": "_tChannelImplToWire", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 258, - "End Line": 265 - }, - { - "Function Name": "maybeDisposeStaleDispatchers", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 283, - "End Line": 297 - }, - { - "Function Name": "_runCommand", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 103, - "End Line": 111 - }, - { - "Function Name": "maxDispatchersForBucket", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 42, - "End Line": 47 - }, - { - "Function Name": "_dispatchEvent", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 113, - "End Line": 121 - }, - { - "Function Name": "_doSlowMo", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 409, - "End Line": 413 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 182, - "End Line": 184 - }, - { - "Function Name": "sendDispose", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 225, - "End Line": 227 - }, - { - "Function Name": "registerDispatcher", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 271, - "End Line": 281 - }, - { - "Function Name": "adopt", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 93, - "End Line": 101 - }, - { - "Function Name": "stopPendingOperations", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 131, - "End Line": 140 - }, - { - "Function Name": "collect", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 133, - "End Line": 140 - }, - { - "Function Name": "_dispose", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 123, - "End Line": 126 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 205, - "End Line": 207 - }, - { - "Function Name": "sendCreate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 219 - }, - { - "Function Name": "_validatorToWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 229, - "End Line": 235 - }, - { - "Function Name": "_validatorFromWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 237, - "End Line": 243 - }, - { - "Function Name": "initialize", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 186, - "End Line": 194 - }, - { - "Function Name": "sendEvent", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 209, - "End Line": 213 - }, - { - "Function Name": "addObjectListener", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 91 - }, - { - "Function Name": "sendAdopt", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 223 - }, - { - "Function Name": "setMaxDispatchersForTest", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 41 - }, - { - "Function Name": "onmessage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 200, - "End Line": 202 - }, - { - "Function Name": "existingDispatcher", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 269 - }, - { - "Function Name": "_debugScopeState", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 165, - "End Line": 170 - }, - { - "Function Name": "parentScope", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "_onDispose", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 129 - }, - { - "Function Name": "waitForEventInfo", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 172, - "End Line": 174 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 82, - "Sequential Logic Declarations": 86, - "Function Parameters": 48, - "Function/Method Declarations": 32, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 29, - "Type/Safety Bypasses": 25, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 292, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 5, - "Asynchronous/Concurrent Execution": 83, - "UI / View Layer Components": 9, - "Closures and Anonymous Functions": 3, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 11, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 16, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 19, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 10, - "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 42, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 20, - "Event Listeners & Subscribers": 1, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 310, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 1, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 48, - "Design Camel Case": 13, - "Design Snake Case": 28, - "Design Pascal Case": 2, - "Design Upper Case": 0, - "Design Short Vars": 3, - "Design Long Vars": 1, - "Duplicate Logic": 0, - "Orphaned Logic": 10, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 5, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../../protocol/validator", - "../../utils", - "../../utils/isomorphic/protocolMetainfo", - "../callLog", - "../errors", - "../instrumentation", - "../progress", - "../protocolError", - "../utils/debug", - "../utils/eventsHelper", - "./playwrightDispatcher", - "@protocol/channels", - "events" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/frames.ts": { + "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy": { "1. Artifact Identity": { - "Filename": "frames.ts", - "Path": "typescript/playwright/frames.ts", - "Language": "Typescript", + "Filename": "hudson_triggers_SlowTriggerAdminMonitor_message.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Error, SdkObject", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2569.74, - "Y": -230.5, - "Z": 7584.11 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 1823, - "Coding LOC": 1533, - "Documentation LOC": 91, - "Structural Magnitude": 369.37, - "Control Flow Ratio": "46.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.78 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.35%", - "Error & Exception Exposure": "97.8%", - "Tech Debt Exposure": "95.99%", - "Testing Exposure": "80.0%", - "API Exposure": "1.0%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.13%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "waitForSelector", - "Structural Impact": 88.9, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 34, - "Input Parameters": 5, - "Control Flow Ratio": "61.8%", - "Start Line": 770, - "End Line": 833 - }, - { - "Function Name": "_expectInternal", - "Structural Impact": 65.8, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 25, - "Input Parameters": 5, - "Control Flow Ratio": "73.5%", - "Start Line": 1473, - "End Line": 1515 - }, - { - "Function Name": "_retryWithProgressIfNotConnected", - "Structural Impact": 63.3, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 26, - "Input Parameters": 4, - "Control Flow Ratio": "60.5%", - "Start Line": 1132, - "End Line": 1190 - }, - { - "Function Name": "waitForFunctionExpression", - "Structural Impact": 58.9, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 20, - "Input Parameters": 6, - "Control Flow Ratio": "46.5%", - "Start Line": 1517, - "End Line": 1583 - }, - { - "Function Name": "expect", - "Structural Impact": 51.0, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 23, - "Input Parameters": 3, - "Control Flow Ratio": "65.7%", - "Start Line": 1411, - "End Line": 1471 - }, - { - "Function Name": "gotoImpl", - "Structural Impact": 44.8, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 20, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 636, - "End Line": 690 - }, - { - "Function Name": "race", - "Structural Impact": 36.0, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "71.9%", - "Start Line": 1475, - "End Line": 1515 - }, - { - "Function Name": "_callOnElementOnceMatches", - "Structural Impact": 33.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 11, - "Input Parameters": 6, - "Control Flow Ratio": "52.4%", - "Start Line": 1642, - "End Line": 1666 - }, - { - "Function Name": "fixupMetadataError", - "Structural Impact": 32.6, - "Lines of Code (LOC)": 58, - "Control Flow Branches": 20, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1414, - "End Line": 1471 - }, - { - "Function Name": "ariaSnapshot", - "Structural Impact": 30.8, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "64.0%", - "Start Line": 1729, - "End Line": 1756 - }, - { - "Function Name": "resolveSelector", - "Structural Impact": 23.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "52.6%", - "Start Line": 1249, - "End Line": 1277 - }, - { - "Function Name": "waitForNavigation", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "52.9%", - "Start Line": 692, - "End Line": 713 - }, - { - "Function Name": "isVisibleInternal", - "Structural Impact": 20.9, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "53.3%", - "Start Line": 1341, - "End Line": 1356 - }, - { - "Function Name": "_addScriptTag", - "Structural Impact": 19.5, - "Lines of Code (LOC)": 51, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "29.7%", - "Start Line": 965, - "End Line": 1015 - }, - { - "Function Name": "retryWithProgressAndTimeouts", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "61.5%", - "Start Line": 1088, - "End Line": 1114 - }, - { - "Function Name": "frameCommittedNewDocumentNavigation", - "Structural Impact": 19.2, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 6, - "Input Parameters": 5, - "Control Flow Ratio": "100.0%", - "Start Line": 211, - "End Line": 252 - }, - { - "Function Name": "_recalculateNetworkIdle", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 583, - "End Line": 603 - }, - { - "Function Name": "frameAbortedNavigation", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 269, - "End Line": 284 - }, - { - "Function Name": "inputValue", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "62.5%", - "Start Line": 1299, - "End Line": 1306 - }, - { - "Function Name": "requestStarted", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 300, - "End Line": 314 - }, - { - "Function Name": "frameRequestedNavigation", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 196, - "End Line": 209 - }, - { - "Function Name": "_raceWithCSPError", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "43.8%", - "Start Line": 1063, - "End Line": 1086 - }, - { - "Function Name": "predicate", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 657, - "End Line": 676 - }, - { - "Function Name": "_evaluateExpression", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 749, - "End Line": 753 - }, - { - "Function Name": "_evaluateExpressionHandle", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 759, - "End Line": 763 - }, - { - "Function Name": "frameAttached", - "Structural Impact": 11.4, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 147, - "End Line": 167 - }, - { - "Function Name": "raceNavigationAction", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 605, - "End Line": 619 - }, - { - "Function Name": "requestFailed", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 329, - "End Line": 341 - }, - { - "Function Name": "addFrameNavigation", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1778, - "End Line": 1797 - }, - { - "Function Name": "isNonRetriableError", - "Structural Impact": 10.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 1116, - "End Line": 1130 - }, - { - "Function Name": "_addStyleTag", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "26.3%", - "Start Line": 1021, - "End Line": 1061 - }, - { - "Function Name": "frameCommittedSameDocumentNavigation", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 254, - "End Line": 267 - }, - { - "Function Name": "predicate", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "58.3%", - "Start Line": 1526, - "End Line": 1551 - }, - { - "Function Name": "predicate", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 676, - "End Line": 690 - }, - { - "Function Name": "evaluateExpression", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 745, - "End Line": 747 - }, - { - "Function Name": "evaluateExpressionHandle", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 755, - "End Line": 757 - }, - { - "Function Name": "press", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1395, - "End Line": 1397 - }, - { - "Function Name": "waitForSignalsCreatedBy", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "30.0%", - "Start Line": 169, - "End Line": 184 - }, - { - "Function Name": "queryCount", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 877, - "End Line": 885 - }, - { - "Function Name": "_evalOnSelector", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "40.0%", - "Start Line": 845, - "End Line": 852 - }, - { - "Function Name": "next", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1551, - "End Line": 1570 - }, - { - "Function Name": "raceAgainstEvaluationStallingEvents", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 547, - "End Line": 563 - }, - { - "Function Name": "_elementState", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 1327, - "End Line": 1334 - }, - { - "Function Name": "addScriptTag", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 957, - "End Line": 963 - }, - { - "Function Name": "setContent", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "18.2%", - "Start Line": 909, - "End Line": 933 - }, - { - "Function Name": "constructor", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 479, - "End Line": 500 - }, - { - "Function Name": "innerText", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "40.0%", - "Start Line": 1283, - "End Line": 1289 - }, - { - "Function Name": "type", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1391, - "End Line": 1393 - }, - { - "Function Name": "_content", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 891, - "End Line": 907 - }, - { - "Function Name": "_title", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "35.7%", - "Start Line": 1600, - "End Line": 1612 - }, - { - "Function Name": "onWebSocketResponse", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 406, - "End Line": 412 - }, - { - "Function Name": "_inflightRequestFinished", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 356, - "End Line": 365 - }, - { - "Function Name": "contextDestroyed", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1689, - "End Line": 1699 - }, - { - "Function Name": "onLifecycleEvent", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 506, - "End Line": 514 - }, - { - "Function Name": "evalOnSelector", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 841, - "End Line": 843 - }, - { - "Function Name": "abort", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "36.4%", - "Start Line": 1570, - "End Line": 1583 - }, - { - "Function Name": "nonStallingEvaluateInExistingContext", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 574, - "End Line": 581 - }, - { - "Function Name": "_setContext", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1668, - "End Line": 1675 - }, - { - "Function Name": "dispatchEvent", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "16.7%", - "Start Line": 835, - "End Line": 839 - }, - { - "Function Name": "verifyLifecycle", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1810, - "End Line": 1816 - }, - { - "Function Name": "evalOnSelectorAll", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "50.0%", - "Start Line": 854, - "End Line": 856 - }, - { - "Function Name": "renderUnexpectedValue", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1818, - "End Line": 1822 - }, - { - "Function Name": "addStyleTag", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1017, - "End Line": 1019 - }, - { - "Function Name": "_evalOnSelectorAll", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "25.0%", - "Start Line": 858, - "End Line": 863 - }, - { - "Function Name": "getAttribute", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 1295, - "End Line": 1297 - }, - { - "Function Name": "addScriptUrl", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 990, - "End Line": 1002 - }, - { - "Function Name": "interceptConsoleMessage", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 376, - "End Line": 386 - }, - { - "Function Name": "addScriptContent", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 1004, - "End Line": 1014 - }, - { - "Function Name": "isVisible", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1336, - "End Line": 1339 - }, - { - "Function Name": "_inflightRequestStarted", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 367, - "End Line": 374 - }, - { - "Function Name": "invalidateNonStallingEvaluations", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 539, - "End Line": 545 - }, - { - "Function Name": "collectNavigations", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 650, - "End Line": 657 - }, - { - "Function Name": "textContent", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1279, - "End Line": 1281 - }, - { - "Function Name": "innerHTML", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1291, - "End Line": 1293 - }, - { - "Function Name": "isHidden", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1358, - "End Line": 1360 - }, - { - "Function Name": "isDisabled", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1362, - "End Line": 1364 - }, - { - "Function Name": "isEnabled", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1366, - "End Line": 1368 - }, - { - "Function Name": "isEditable", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1370, - "End Line": 1372 - }, - { - "Function Name": "isChecked", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1374, - "End Line": 1376 - }, - { - "Function Name": "_onDetached", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1629, - "End Line": 1640 - }, - { - "Function Name": "onWebSocketRequest", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 400, - "End Line": 404 - }, - { - "Function Name": "redirectNavigation", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 621, - "End Line": 629 - }, - { - "Function Name": "onWebSocketFrameSent", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 414, - "End Line": 418 - }, - { - "Function Name": "webSocketFrameReceived", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 420, - "End Line": 424 - }, - { - "Function Name": "click", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 1199, - "End Line": 1201 - }, - { - "Function Name": "tap", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 1231, - "End Line": 1235 - }, - { - "Function Name": "focus", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1241, - "End Line": 1243 - }, - { - "Function Name": "blur", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1245, - "End Line": 1247 - }, - { - "Function Name": "setInputFiles", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "20.0%", - "Start Line": 1386, - "End Line": 1389 - }, - { - "Function Name": "rafrafTimeout", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "14.3%", - "Start Line": 1614, - "End Line": 1627 - }, - { - "Function Name": "waitForFunctionValueInUtility", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1585, - "End Line": 1594 - }, - { - "Function Name": "contextCreated", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1677, - "End Line": 1687 - }, - { - "Function Name": "highlight", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "14.3%", - "Start Line": 1308, - "End Line": 1315 - }, - { - "Function Name": "reportRequestFinished", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 322, - "End Line": 327 - }, - { - "Function Name": "extendInjectedScript", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1721, - "End Line": 1727 - }, - { - "Function Name": "frameLifecycleEvent", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 294, - "End Line": 298 - }, - { - "Function Name": "webSocketError", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 433, - "End Line": 437 - }, - { - "Function Name": "waitForLoadState", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 715, - "End Line": 719 - }, - { - "Function Name": "_onClearLifecycle", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 516, - "End Line": 527 - }, - { - "Function Name": "_startNetworkIdleTimer", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1701, - "End Line": 1712 - }, - { - "Function Name": "dragAndDrop", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1207, - "End Line": 1229 - }, - { - "Function Name": "frameDetached", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 286, - "End Line": 292 - }, - { - "Function Name": "_removeFramesRecursively", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 348, - "End Line": 354 - }, - { - "Function Name": "nonStallingRawEvaluateInExistingMainContext", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 565, - "End Line": 572 - }, - { - "Function Name": "context", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 725, - "End Line": 731 - }, - { - "Function Name": "origin", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 943, - "End Line": 947 - }, - { - "Function Name": "onerror", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1009, - "End Line": 1015 - }, - { - "Function Name": "collect", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 136, - "End Line": 140 - }, - { - "Function Name": "requestReceivedResponse", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 316, - "End Line": 320 - }, - { - "Function Name": "_clearWebSockets", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 388, - "End Line": 393 - }, - { - "Function Name": "webSocketClosed", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 426, - "End Line": 431 - }, - { - "Function Name": "_setPendingDocument", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 529, - "End Line": 533 - }, - { - "Function Name": "_existingMainContext", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 737, - "End Line": 739 - }, - { - "Function Name": "onerror", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 997, - "End Line": 1002 - }, - { - "Function Name": "frame", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 143, - "End Line": 145 - }, - { - "Function Name": "removeChildFramesRecursively", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 343, - "End Line": 346 - }, - { - "Function Name": "selectOption", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 1382, - "End Line": 1384 - }, - { - "Function Name": "frames", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 131, - "End Line": 141 - }, - { - "Function Name": "rafrafTimeoutScreenshotElementWithProgress", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1192, - "End Line": 1197 - }, - { - "Function Name": "fill", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1237, - "End Line": 1239 - }, - { - "Function Name": "dispose", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 125 - }, - { - "Function Name": "_stopNetworkIdleTimer", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1714, - "End Line": 1719 - }, - { - "Function Name": "createDummyMainFrameIfNeeded", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 115, - "End Line": 118 - }, - { - "Function Name": "frameWillPotentiallyRequestNavigation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 186, - "End Line": 189 - }, - { - "Function Name": "frameDidPotentiallyRequestNavigation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 191, - "End Line": 194 - }, - { - "Function Name": "goto", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 631, - "End Line": 634 - }, - { - "Function Name": "querySelector", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 768 - }, - { - "Function Name": "release", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1803, - "End Line": 1807 - }, - { - "Function Name": "maskSelectors", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 865, - "End Line": 871 - }, - { - "Function Name": "name", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 935, - "End Line": 937 - }, - { - "Function Name": "dblclick", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1203, - "End Line": 1205 - }, - { - "Function Name": "hover", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1378, - "End Line": 1380 - }, - { - "Function Name": "check", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1399, - "End Line": 1401 - }, - { - "Function Name": "uncheck", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1403, - "End Line": 1405 - }, - { - "Function Name": "addStyleUrl", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1036, - "End Line": 1047 - }, - { - "Function Name": "addStyleContent", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1049, - "End Line": 1060 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 90 - }, - { - "Function Name": "onWebSocketCreated", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 395, - "End Line": 398 - }, - { - "Function Name": "_fireInternalFrameNavigation", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 441 - }, - { - "Function Name": "querySelectorAll", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 873, - "End Line": 875 - }, - { - "Function Name": "waitForTimeout", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1407, - "End Line": 1409 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 109 - }, - { - "Function Name": "frameElement", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 721, - "End Line": 723 - }, - { - "Function Name": "content", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 889 - }, - { - "Function Name": "title", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1596, - "End Line": 1598 - }, - { - "Function Name": "_asLocator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1758, - "End Line": 1760 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1768, - "End Line": 1771 - }, - { - "Function Name": "hideHighlight", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1325 - }, - { - "Function Name": "waitFor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1773, - "End Line": 1776 - }, - { - "Function Name": "_allocateFrameSeq", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 113 - }, - { - "Function Name": "mainFrame", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 129 - }, - { - "Function Name": "_isDetached", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 504 - }, - { - "Function Name": "pendingDocument", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 535, - "End Line": 537 - }, - { - "Function Name": "mainContext", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 733, - "End Line": 735 - }, - { - "Function Name": "utilityContext", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 741, - "End Line": 743 - }, - { - "Function Name": "url", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 939, - "End Line": 941 - }, - { - "Function Name": "parentFrame", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 949, - "End Line": 951 - }, - { - "Function Name": "_getChildFrames", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 953, - "End Line": 955 - }, + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 5647.14, + "Y": -51.69, + "Z": -6906.76 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 49, + "Coding LOC": 41, + "Documentation LOC": 0, + "Structural Magnitude": 6.72, + "Control Flow Ratio": "16.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.171 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "8.97%", + "Error & Exception Exposure": "80.24%", + "Tech Debt Exposure": "95.2%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.08%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "retain", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1799, - "End Line": 1801 + "Function Name": "Unknown_Block", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 14, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 454, - "Sequential Logic Declarations": 516, - "Function Parameters": 276, - "Function/Method Declarations": 161, - "Class/Entity Declarations": 4, - "Defensive Programming Constructs": 78, - "Type/Safety Bypasses": 64, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 928, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 10, + "Function Parameters": 16, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 6, - "Asynchronous/Concurrent Execution": 1397, - "UI / View Layer Components": 14, - "Closures and Anonymous Functions": 73, - "Global State Dependencies": 18, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 41, - "Collection Iterators / Comprehensions": 5, - "Scientific & Mathematical Operations": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 26, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 12, - "Dependency Injection Constructs": 7, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 43, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, - "Fatal Aborts & Exceptions": 45, - "Thread Sleeps & Blocking Waits": 5, - "Bitwise Operations": 6, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 192, - "Resource Deallocation & Cleanup": 26, - "Private / Encapsulated Scopes": 39, - "Event Listeners & Subscribers": 2, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1477, + "Structural Space Indentations": 33, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, + "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -735086,25 +735073,25 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 235, - "Design Camel Case": 47, - "Design Snake Case": 158, - "Design Pascal Case": 16, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 7, - "Design Long Vars": 1, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 56, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 1, - "Dynamic Code Execution (Eval/Exec)": 5, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -735118,113 +735105,95 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 22, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "../utils", - "../utils/isomorphic/manualPromise", - "../utils/isomorphic/selectorParser", - "./browserContext", - "./callLog", - "./console", - "./dom", - "./errors", - "./fileUploadUtils", - "./frameSelectors", - "./helper", - "./instrumentation", - "./javascript", - "./network", - "./page", - "./progress", - "./protocolError", - "./screenshotter", - "./types", - "./utils/eventsHelper", - "@injected/injectedScript", - "@protocol/channels" + "hudson.Util", + "hudson.triggers.SlowTriggerAdminMonitor", + "jenkins.model.Jenkins", + "org.apache.commons.jelly.tags.fmt.FmtTagLibrary" ] }, - "typescript/playwright/protocol.ts": { + "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy": { "1. Artifact Identity": { - "Filename": "protocol.ts", - "Path": "typescript/playwright/protocol.ts", - "Language": "Typescript", + "Filename": "hudson_util_JenkinsReloadFailed_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2364.46, - "Y": -153.12, - "Z": 6836.7 + "X": 4976.2, + "Y": -279.3, + "Z": -6116.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 43, - "Coding LOC": 22, - "Documentation LOC": 17, - "Structural Magnitude": 1.84, - "Control Flow Ratio": "44.4%", - "Popularity Rank": 1, + "Total LOC": 18, + "Coding LOC": 14, + "Documentation LOC": 0, + "Structural Magnitude": 15.28, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.182 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "75.45%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "7.33%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "67.14%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735243,13 +735212,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735266,12 +735235,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 2, - "Design Upper Case": 1, - "Design Short Vars": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735298,53 +735267,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "cobol/zopeneditor-sample": { - "Directory Group Magnitude": 533.44, - "File Count": 8, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "33.02%", - "Error & Exception Exposure": "32.53%", - "Tech Debt Exposure": "24.6%", - "Testing Exposure": "21.15%", - "API Exposure": "0.62%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "37.03%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "75.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.34%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cobol/zopeneditor-sample/CUSTCOPY.cpy": { + "9. Extracted Dependencies": [ + "hudson.Functions" + ] + }, + "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy": { "1. Artifact Identity": { - "Filename": "CUSTCOPY.cpy", - "Path": "cobol/zopeneditor-sample/CUSTCOPY.cpy", - "Language": "Cobol", + "Filename": "hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 8064.72, - "Y": 72.16, - "Z": 6148.68 + "X": 4802.71, + "Y": -308.97, + "Z": -5815.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735353,37 +735300,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 27, - "Documentation LOC": 26, - "Structural Magnitude": 0.78, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, + "Total LOC": 11, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "20.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.04%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.53%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 4, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -735405,7 +735352,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735430,7 +735377,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 27, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735447,12 +735394,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735479,29 +735426,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.views.ViewsTabBar" + ] }, - "cobol/zopeneditor-sample/DATETIME.cpy": { + "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "DATETIME.cpy", - "Path": "cobol/zopeneditor-sample/DATETIME.cpy", - "Language": "Cobol", + "Filename": "jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 8239.82, - "Y": 77.7, - "Z": 5554.83 + "X": 5102.05, + "Y": -223.34, + "Z": -6434.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735510,38 +735459,38 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 10, - "Documentation LOC": 9, - "Structural Magnitude": 0.76, - "Control Flow Ratio": "0.0%", + "Total LOC": 55, + "Coding LOC": 27, + "Documentation LOC": 23, + "Structural Magnitude": 17.54, + "Control Flow Ratio": "28.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.407 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "20.26%", + "Error & Exception Exposure": "75.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.53%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "70.33%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.12%", + "Documentation Exposure": "30.13%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 5, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -735549,13 +735498,183 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 2, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 21, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 2, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "hudson.model.AdministrativeMonitor" + ] + }, + "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy": { + "1. Artifact Identity": { + "Filename": "jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 4473.22, + "Y": -273.55, + "Z": -5695.68 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 46, + "Coding LOC": 19, + "Documentation LOC": 19, + "Structural Magnitude": 3.68, + "Control Flow Ratio": "40.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.368 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "17.85%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "40.12%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 31, + "End Line": 39 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 3, + "Function Parameters": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -735587,7 +735706,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735595,7 +735714,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -735604,15 +735723,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -735643,22 +735762,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/REPTTOTL.cpy": { + "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy": { "1. Artifact Identity": { - "Filename": "REPTTOTL.cpy", - "Path": "cobol/zopeneditor-sample/REPTTOTL.cpy", - "Language": "Cobol", + "Filename": "jenkins_management_ShutdownLink_index.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7829.58, - "Y": 130.26, - "Z": 5269.01 + "X": 4605.64, + "Y": 85.75, + "Z": -7112.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735667,59 +735786,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 15, - "Documentation LOC": 9, - "Structural Magnitude": 0.87, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 25, + "Documentation LOC": 0, + "Structural Magnitude": 15.5, + "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.6 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.12%", - "Error & Exception Exposure": "78.78%", + "Cognitive Load Exposure": "15.19%", + "Error & Exception Exposure": "78.58%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "96.21%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.61%", + "Documentation Exposure": "55.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 5, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735744,7 +735863,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735761,12 +735880,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735793,29 +735912,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "jenkins.management.Messages" + ] }, - "cobol/zopeneditor-sample/SAM1.cbl": { + "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "SAM1.cbl", - "Path": "cobol/zopeneditor-sample/SAM1.cbl", - "Language": "Cobol", + "Filename": "jenkins_model_ArtifactManagerConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7747.05, - "Y": 128.97, - "Z": 5685.36 + "X": 4810.14, + "Y": -20.86, + "Z": -7112.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735824,262 +735945,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 505, - "Coding LOC": 417, - "Documentation LOC": 52, - "Structural Magnitude": 340.74, - "Control Flow Ratio": "79.1%", + "Total LOC": 36, + "Coding LOC": 9, + "Documentation LOC": 23, + "Structural Magnitude": 17.68, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.007 + "Raw Cognitive Density": 1.111 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.62%", - "Error & Exception Exposure": "84.91%", - "Tech Debt Exposure": "99.51%", - "Testing Exposure": "80.0%", - "API Exposure": "2.23%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "88.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.84%", + "Documentation Exposure": "28.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "100-PROCESS-TRANSACTIONS", - "Structural Impact": 24.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 22, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 261, - "End Line": 291 - }, - { - "Function Name": "710-READ-TRAN-FILE", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "91.7%", - "Start Line": 388, - "End Line": 407 - }, - { - "Function Name": "210-PROCESS-ADD-TRAN", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 10, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 315, - "End Line": 333 - }, - { - "Function Name": "200-PROCESS-UPDATE-TRAN", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 293, - "End Line": 313 - }, - { - "Function Name": "REPORT-FILE", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 360, - "End Line": 386 - }, - { - "Function Name": "730-READ-CUSTOMER-FILE", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 423, - "End Line": 438 - }, - { - "Function Name": "740-WRITE-CUSTOUT-FILE", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 440, - "End Line": 455 - }, - { - "Function Name": "CURRENT-SECOND", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "63.6%", - "Start Line": 232, - "End Line": 257 - }, - { - "Function Name": "220-PROCESS-DELETE-TRAN", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 335, - "End Line": 345 - }, - { - "Function Name": "720-POSITION-CUST-FILE", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 409, - "End Line": 416 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 178, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 38, - "End Line": 215 - }, - { - "Function Name": "830-REPORT-TRAN-PROCESSED", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 471, - "End Line": 478 - }, - { - "Function Name": "721-COPY-RECORDS", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 418, - "End Line": 421 - }, - { - "Function Name": "000-MAIN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 231 - }, - { - "Function Name": "850-REPORT-TRAN-STATS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 480, - "End Line": 505 - }, - { - "Function Name": "299-REPORT-BAD-TRAN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 347, - "End Line": 354 - }, - { - "Function Name": "800-INIT-REPORT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 469 - }, - { - "Function Name": "700-OPEN-FILES", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 359 - }, - { - "Function Name": "790-CLOSE-FILES", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 460 - }, - { - "Function Name": "CURRENT-SECOND", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 258, - "End Line": 259 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 102, - "Sequential Logic Declarations": 27, - "Function Parameters": 1, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 22, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 50, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 193, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -736090,27 +736010,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 12, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 417, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 3, - "Time Date Logic": 5, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -736119,15 +736039,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 15, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 20, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -736151,32 +736071,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CUSTCOPY", - "TRANREC" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2.cbl": { + "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy": { "1. Artifact Identity": { - "Filename": "SAM2.cbl", - "Path": "cobol/zopeneditor-sample/SAM2.cbl", - "Language": "Cobol", + "Filename": "jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7530.13, - "Y": 148.97, - "Z": 5846.61 + "X": 4260.59, + "Y": 93.02, + "Z": -7131.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736185,120 +736102,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 159, - "Coding LOC": 119, - "Documentation LOC": 27, - "Structural Magnitude": 188.38, - "Control Flow Ratio": "84.4%", + "Total LOC": 10, + "Coding LOC": 7, + "Documentation LOC": 1, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.246 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.9%", - "Error & Exception Exposure": "96.54%", - "Tech Debt Exposure": "97.32%", - "Testing Exposure": "80.0%", - "API Exposure": "2.73%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.72%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.14%", + "Documentation Exposure": "39.02%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "100-VALIDATE-TRAN", - "Structural Impact": 27.0, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 24, - "Input Parameters": 0, - "Control Flow Ratio": "92.3%", - "Start Line": 72, - "End Line": 111 - }, - { - "Function Name": "200-PROCESS-TRAN", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 14, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 113, - "End Line": 141 - }, - { - "Function Name": "000-MAIN", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 57, - "End Line": 70 - }, - { - "Function Name": "310-CRUNCH-LOOP", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 148, - "End Line": 159 - }, - { - "Function Name": "300-PROCESS-CPU-CRUNCH", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 143, - "End Line": 146 - }, - { - "Function Name": "TRAN-MSG", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 54, - "Sequential Logic Declarations": 10, - "Function Parameters": 1, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 2, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 120, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736313,7 +736169,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -736323,14 +736179,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 119, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -736340,15 +736196,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -736372,32 +736228,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CUSTCOPY", - "TRANREC" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2PAR5.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy": { "1. Artifact Identity": { - "Filename": "SAM2PAR5.cpy", - "Path": "cobol/zopeneditor-sample/SAM2PAR5.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_CauseOfInterruption_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7550.2, - "Y": 244.12, - "Z": 5155.59 + "X": 5371.95, + "Y": 1.17, + "Z": -7203.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736406,12 +736259,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, + "Total LOC": 4, "Coding LOC": 2, - "Documentation LOC": 8, - "Structural Magnitude": 0.55, + "Documentation LOC": 1, + "Structural Magnitude": 15.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -736429,16 +736282,16 @@ "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.48%", + "Documentation Exposure": "12.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -736483,7 +736336,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -736533,28 +736386,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2PARM.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy": { "1. Artifact Identity": { - "Filename": "SAM2PARM.cpy", - "Path": "cobol/zopeneditor-sample/SAM2PARM.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7659.46, - "Y": 165.94, - "Z": 6032.92 + "X": 5677.28, + "Y": -125.95, + "Z": -6631.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736563,38 +736416,38 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 12, - "Coding LOC": 3, - "Documentation LOC": 8, - "Structural Magnitude": 0.58, + "Total LOC": 11, + "Coding LOC": 7, + "Documentation LOC": 1, + "Structural Magnitude": 13.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.667 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.46%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "20.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.8%", + "Documentation Exposure": "39.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -736608,14 +736461,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736657,12 +736510,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -736689,31 +736542,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "SAM2PAR5" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/TRANREC.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "TRANREC.cpy", - "Path": "cobol/zopeneditor-sample/TRANREC.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7331.65, - "Y": 247.2, - "Z": 5583.13 + "X": 5277.48, + "Y": -299.12, + "Z": -5743.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736722,37 +736573,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 30, - "Documentation LOC": 8, - "Structural Magnitude": 0.78, + "Total LOC": 9, + "Coding LOC": 5, + "Documentation LOC": 0, + "Structural Magnitude": 12.6, "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.52%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "0.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.15%", + "Documentation Exposure": "29.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 3, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -736773,8 +736624,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736788,7 +736639,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 4, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -736799,7 +736650,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 30, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -736816,12 +736667,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -736848,53 +736699,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "dockerfile/moby/builder/remotecontext/internal/tarsum": { - "Directory Group Magnitude": 508.82, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "26.17%", - "Error & Exception Exposure": "72.22%", - "Tech Debt Exposure": "57.45%", - "Testing Exposure": "2.37%", - "API Exposure": "4.44%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "80.0%", - "Commented Logic Exposure": "1.57%", - "Specification Exposure": "96.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.44%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go": { + "9. Extracted Dependencies": [ + "hudson.Functions" + ] + }, + "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "builder_context.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go", - "Language": "Go", + "Filename": "jenkins_model_GlobalPluginConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6268.32, - "Y": -220.38, - "Z": 7543.96 + "X": 4240.82, + "Y": -7.73, + "Z": -6944.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736903,70 +736732,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 12, - "Documentation LOC": 7, - "Structural Magnitude": 18.34, - "Control Flow Ratio": "50.0%", + "Total LOC": 18, + "Coding LOC": 13, + "Documentation LOC": 1, + "Structural Magnitude": 15.26, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.462 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "83.38%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.05%", - "API Exposure": "6.63%", + "Testing Exposure": "1.99%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.54%", + "Documentation Exposure": "62.85%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Remove", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 13, - "End Line": 21 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 1, "Sequential Logic Declarations": 3, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 9, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736987,11 +736805,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 7, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737008,12 +736826,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -737040,29 +736858,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions" + ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go": { + "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "fileinfosums.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go", - "Language": "Go", + "Filename": "jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6514.74, - "Y": -198.77, - "Z": 6717.43 + "X": 4762.59, + "Y": 95.18, + "Z": -7280.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737071,193 +736891,52 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 136, - "Coding LOC": 93, - "Documentation LOC": 21, - "Structural Magnitude": 103.96, - "Control Flow Ratio": "40.0%", + "Total LOC": 18, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.944 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "37.64%", - "Error & Exception Exposure": "87.7%", - "Tech Debt Exposure": "98.11%", - "Testing Exposure": "2.55%", - "API Exposure": "6.05%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "60.39%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GetFile", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 43, - "End Line": 53 - }, - { - "Function Name": "GetAllFile", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 56, - "End Line": 64 - }, - { - "Function Name": "GetDuplicatePaths", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 67, - "End Line": 78 - }, - { - "Function Name": "Less", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 123, - "End Line": 128 - }, - { - "Function Name": "Less", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 110, - "End Line": 115 - }, - { - "Function Name": "SortBySums", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 97, - "End Line": 104 - }, - { - "Function Name": "Less", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 135 - }, - { - "Function Name": "Swap", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 84 - }, - { - "Function Name": "Name", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 29 - }, - { - "Function Name": "Sum", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 33 - }, - { - "Function Name": "Pos", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 37 - }, - { - "Function Name": "Len", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 81 - }, - { - "Function Name": "SortByPos", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 89 - }, - { - "Function Name": "SortByNames", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 94 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 27, - "Function Parameters": 14, - "Function/Method Declarations": 14, - "Class/Entity Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 4, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 40, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 15, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 14, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -737274,7 +736953,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -737285,11 +736964,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 55, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737306,15 +736985,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -737338,33 +737017,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "runtime", - "sort", - "strings" + "jenkins.model.ProjectNamingStrategy" ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go": { + "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy": { "1. Artifact Identity": { - "Filename": "tarsum.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go", - "Language": "Go", + "Filename": "jenkins_model_InterruptedBuildAction_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6552.92, - "Y": -210.0, - "Z": 7451.29 + "X": 4103.43, + "Y": -111.44, + "Z": -6139.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737373,190 +737050,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 299, - "Coding LOC": 224, - "Documentation LOC": 39, - "Structural Magnitude": 246.18, - "Control Flow Ratio": "45.3%", - "Popularity Rank": 3, + "Total LOC": 10, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.283 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.17%", - "Error & Exception Exposure": "94.15%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.45%", - "API Exposure": "2.18%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Read", - "Structural Impact": 39.9, - "Lines of Code (LOC)": 91, - "Control Flow Branches": 24, - "Input Parameters": 1, - "Control Flow Ratio": "58.5%", - "Start Line": 191, - "End Line": 281 - }, - { - "Function Name": "encodeHeader", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 157, - "End Line": 169 - }, - { - "Function Name": "NewTarSumForLabel", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "42.9%", - "Start Line": 64, - "End Line": 83 - }, - { - "Function Name": "Sum", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 283, - "End Line": 294 - }, - { - "Function Name": "initTarSum", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 171, - "End Line": 189 - }, - { - "Function Name": "NewTarSumHash", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 53, - "End Line": 61 - }, - { - "Function Name": "NewTarSum", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 49 - }, - { - "Function Name": "NewTHash", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 133 - }, - { - "Function Name": "Hash", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "Version", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "Name", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 154 - }, - { - "Function Name": "Hash", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 155, - "End Line": 155 - }, - { - "Function Name": "GetSums", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 296, - "End Line": 298 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 47, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 141, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 15, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 10, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -737565,23 +737111,23 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 2, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 62, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 182, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737598,12 +737144,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 4, - "Design Snake Case": 4, - "Design Pascal Case": 1, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -737630,44 +737176,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "archive/tar", - "bytes", - "compress/gzip", - "crypto", - "crypto/sha256", - "encoding/hex", - "errors", - "fmt", - "hash", - "io", - "path", - "sha256", - "sha512", - "strings" - ] + "9. Extracted Dependencies": [] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go": { + "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "versioning.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go", - "Language": "Go", + "Filename": "jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6765.45, - "Y": -122.11, - "Z": 7372.79 + "X": 5440.41, + "Y": -196.51, + "Z": -6235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737676,144 +737207,53 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 120, - "Documentation LOC": 24, - "Structural Magnitude": 135.8, - "Control Flow Ratio": "40.0%", + "Total LOC": 15, + "Coding LOC": 11, + "Documentation LOC": 0, + "Structural Magnitude": 15.22, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.867 + "Raw Cognitive Density": 0.545 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "33.8%", - "Error & Exception Exposure": "95.87%", - "Tech Debt Exposure": "92.41%", - "Testing Exposure": "2.45%", - "API Exposure": "5.05%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.69%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "7.86%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "56.69%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "v1TarHeaderSelect", - "Structural Impact": 13.1, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 116, - "End Line": 151 - }, - { - "Function Name": "WriteV1Header", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 26, - "End Line": 30 - }, - { - "Function Name": "GetVersions", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 45, - "End Line": 51 - }, - { - "Function Name": "VersionLabelForChecksum", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 35, - "End Line": 42 - }, - { - "Function Name": "GetVersionFromTarsum", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 71, - "End Line": 78 - }, - { - "Function Name": "getTarHeaderSelector", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 159, - "End Line": 166 - }, - { - "Function Name": "v0TarHeaderSelect", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 114 - }, - { - "Function Name": "selectHeaders", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 97 - }, - { - "Function Name": "String", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 68 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 14, - "Sequential Logic Declarations": 21, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 80, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 13, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, - "Global State Dependencies": 1, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -737829,22 +737269,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 2, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 21, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 87, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737861,15 +737301,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, - "Design Camel Case": 8, - "Design Snake Case": 4, - "Design Pascal Case": 3, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 1, + "Design Short Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -737893,39 +737333,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 5, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "archive/tar", - "errors", - "io", - "sort", - "strconv", - "strings", - "tarsum", - "tarsum.dev", - "tarsum.v1" + "hudson.Functions" ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go": { + "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy": { "1. Artifact Identity": { - "Filename": "writercloser.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go", - "Language": "Go", + "Filename": "jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6982.78, - "Y": -77.95, - "Z": 7076.29 + "X": 4070.63, + "Y": -62.97, + "Z": -6732.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737934,80 +737366,216 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, - "Coding LOC": 17, + "Total LOC": 17, + "Coding LOC": 11, "Documentation LOC": 0, - "Structural Magnitude": 4.54, + "Structural Magnitude": 15.22, + "Control Flow Ratio": "25.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.545 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.69%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "73.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "56.69%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy": { + "1. Artifact Identity": { + "Filename": "jenkins_mvn_GlobalMavenConfig_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 5057.66, + "Y": 133.54, + "Z": -7432.75 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 13.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.22%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "96.71%", - "Testing Exposure": "2.36%", - "API Exposure": "2.3%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.92%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "34.55%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Close", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 18 - }, - { - "Function Name": "Flush", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 22 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -738027,12 +737595,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 4, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 6, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -738049,15 +737617,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -738081,14 +737649,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "io" - ] + "9. Extracted Dependencies": [] } } }, @@ -809399,9 +808965,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4890.37, + "X": -3642.99, "Y": 172.93, - "Z": -7149.99 + "Z": -2988.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809669,9 +809235,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4404.34, + "X": -4129.02, "Y": 231.25, - "Z": -6179.17 + "Z": -2018.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809860,9 +809426,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4617.82, + "X": -3915.54, "Y": 193.13, - "Z": -6565.52 + "Z": -2404.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810173,9 +809739,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4791.62, + "X": -3741.74, "Y": 172.48, - "Z": -6530.07 + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810629,9 +810195,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5698.99, + "X": -2834.37, "Y": 120.23, - "Z": -6305.74 + "Z": -2144.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810799,9 +810365,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5337.77, + "X": -3195.59, "Y": 107.4, - "Z": -7151.64 + "Z": -2990.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810969,9 +810535,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4429.56, + "X": -4103.8, "Y": 193.73, - "Z": -5614.8 + "Z": -1453.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811139,9 +810705,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3996.91, + "X": -4536.44, "Y": 207.29, - "Z": -6980.8 + "Z": -2819.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811310,9 +810876,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5625.72, + "X": -2907.64, "Y": 68.82, - "Z": -6918.66 + "Z": -2757.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811480,9 +811046,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4498.28, + "X": -4035.07, "Y": 137.55, - "Z": -7429.55 + "Z": -3268.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811650,9 +811216,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5233.55, + "X": -3299.81, "Y": 148.65, - "Z": -5847.38 + "Z": -1686.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811820,9 +811386,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5498.25, + "X": -3035.11, "Y": 152.32, - "Z": -6864.45 + "Z": -2703.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812002,9 +811568,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4595.98, + "X": -3937.37, "Y": 175.76, - "Z": -7108.58 + "Z": -2947.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812225,9 +811791,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4041.77, + "X": -4491.58, "Y": 158.1, - "Z": -6596.48 + "Z": -2435.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812396,9 +811962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4206.73, + "X": -4326.63, "Y": 208.93, - "Z": -6317.13 + "Z": -2156.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812628,9 +812194,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5362.92, + "X": -3170.43, "Y": 138.84, - "Z": -6596.71 + "Z": -2435.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812847,9 +812413,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4760.32, + "X": -3773.03, "Y": 91.68, - "Z": -7183.88 + "Z": -3022.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813038,9 +812604,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4969.97, + "X": -3563.39, "Y": 134.72, - "Z": -7356.92 + "Z": -3195.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813210,9 +812776,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5079.68, + "X": -3453.67, "Y": 123.97, - "Z": -6315.22 + "Z": -2154.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813449,9 +813015,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5204.43, + "X": -3328.93, "Y": 111.83, - "Z": -6764.94 + "Z": -2603.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813642,9 +813208,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4072.41, + "X": -4460.95, "Y": 195.02, - "Z": -6020.64 + "Z": -1859.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813823,9 +813389,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4382.56, + "X": -4150.79, "Y": 165.97, - "Z": -6716.03 + "Z": -2555.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814116,9 +813682,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4773.0, + "X": -3760.36, "Y": 213.89, - "Z": -5755.66 + "Z": -1594.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814297,9 +813863,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4267.31, + "X": -4266.05, "Y": 153.16, - "Z": -7122.0 + "Z": -2960.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814503,9 +814069,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5085.83, + "X": -3447.53, "Y": 134.09, - "Z": -7226.72 + "Z": -3065.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814685,9 +814251,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4637.87, + "X": -3895.48, "Y": 168.14, - "Z": -6069.88 + "Z": -1908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814845,9 +814411,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4258.49, + "X": -4274.87, "Y": 119.03, - "Z": -7184.91 + "Z": -3023.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815026,9 +814592,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5034.0, + "X": -3499.36, "Y": 192.9, - "Z": -6146.94 + "Z": -1985.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815218,9 +814784,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5398.23, + "X": -3135.13, "Y": 152.75, - "Z": -6004.15 + "Z": -1843.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815399,9 +814965,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5677.45, + "X": -2855.91, "Y": 123.04, - "Z": -6375.71 + "Z": -2214.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842163,9 +841729,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5990.19, + "X": 5989.2, "Y": -237.07, - "Z": -7862.92 + "Z": -7861.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842320,9 +841886,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6719.07, + "X": 6718.08, "Y": -220.86, - "Z": -7448.83 + "Z": -7447.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842477,9 +842043,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5657.5, + "X": 5656.51, "Y": -230.93, - "Z": -7306.01 + "Z": -7304.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842634,9 +842200,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5599.03, + "X": 5598.05, "Y": -231.03, - "Z": -7703.46 + "Z": -7702.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842802,9 +842368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6069.88, + "X": 6068.89, "Y": -193.38, - "Z": -7170.43 + "Z": -7169.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842959,9 +842525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6917.09, + "X": 6916.1, "Y": -200.35, - "Z": -7589.27 + "Z": -7588.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843127,9 +842693,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.99, + "X": 6234.01, "Y": -189.0, - "Z": -7908.73 + "Z": -7907.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843284,9 +842850,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5984.9, + "X": 5983.91, "Y": -240.46, - "Z": -7406.83 + "Z": -7405.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843441,9 +843007,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.3, + "X": 6232.31, "Y": -208.54, - "Z": -7524.31 + "Z": -7523.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843598,9 +843164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5777.85, + "X": 5776.87, "Y": -209.72, - "Z": -7604.46 + "Z": -7603.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843755,9 +843321,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6472.52, + "X": 6471.53, "Y": -203.73, - "Z": -7069.5 + "Z": -7068.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843912,9 +843478,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6625.05, + "X": 6624.06, "Y": -223.68, - "Z": -7949.84 + "Z": -7948.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844069,9 +843635,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6458.25, + "X": 6457.26, "Y": -203.78, - "Z": -8174.83 + "Z": -8173.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844247,9 +843813,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5834.14, + "X": 5833.15, "Y": -185.31, - "Z": -6887.35 + "Z": -6886.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844415,9 +843981,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6395.2, + "X": 6394.22, "Y": -205.22, - "Z": -6772.04 + "Z": -6770.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871574,9 +871140,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6217.28, + "X": -6218.37, "Y": 109.85, - "Z": -8044.4 + "Z": -8045.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -871731,9 +871297,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5690.89, + "X": -5691.97, "Y": 139.12, - "Z": -8423.65 + "Z": -8425.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871888,9 +871454,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5708.63, + "X": -5709.72, "Y": 91.46, - "Z": -7749.83 + "Z": -7751.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872076,9 +871642,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5522.73, + "X": -5523.81, "Y": 67.31, - "Z": -7418.12 + "Z": -7419.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872244,9 +871810,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5939.24, + "X": -5940.32, "Y": 100.04, - "Z": -7578.47 + "Z": -7579.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872425,9 +871991,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4690.92, + "X": 4689.96, "Y": -56.97, - "Z": -8160.43 + "Z": -8158.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872582,9 +872148,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4274.94, + "X": 4273.98, "Y": -134.4, - "Z": -7602.7 + "Z": -7601.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872754,9 +872320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4656.27, + "X": 4655.31, "Y": -19.84, - "Z": -8960.23 + "Z": -8958.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872926,9 +872492,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4507.33, + "X": 4506.36, "Y": -63.53, - "Z": -8047.62 + "Z": -8045.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873083,9 +872649,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4750.8, + "X": 4749.84, "Y": -42.39, - "Z": -8605.26 + "Z": -8603.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873240,9 +872806,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4980.32, + "X": 4979.36, "Y": -165.67, - "Z": -8014.87 + "Z": -8013.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873397,9 +872963,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4112.53, + "X": 4111.57, "Y": -9.17, - "Z": -8431.67 + "Z": -8430.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873565,9 +873131,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4300.22, + "X": 4299.26, "Y": -85.32, - "Z": -8265.17 + "Z": -8263.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873722,9 +873288,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5337.51, + "X": 5336.54, "Y": -155.33, - "Z": -8173.01 + "Z": -8171.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873890,9 +873456,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4504.25, + "X": 4503.29, "Y": -43.71, - "Z": -8779.43 + "Z": -8777.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874058,9 +873624,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5220.52, + "X": 5219.56, "Y": -126.41, - "Z": -8125.12 + "Z": -8123.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874226,9 +873792,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4568.94, + "X": 4567.98, "Y": -72.45, - "Z": -7704.92 + "Z": -7703.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874420,9 +873986,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4173.57, + "X": 4172.61, "Y": -93.82, - "Z": -8116.01 + "Z": -8114.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874591,9 +874157,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4963.69, + "X": 4962.73, "Y": -84.11, - "Z": -8663.85 + "Z": -8662.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874762,9 +874328,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5079.11, + "X": 5078.15, "Y": -65.26, - "Z": -8504.87 + "Z": -8503.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874933,9 +874499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4935.61, + "X": 4934.65, "Y": -166.2, - "Z": -7629.53 + "Z": -7627.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875133,9 +874699,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6611.57, + "X": 6610.66, "Y": 112.82, - "Z": -9069.19 + "Z": -9067.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875290,9 +874856,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6829.57, + "X": 6828.66, "Y": 160.61, - "Z": -8412.68 + "Z": -8411.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875447,9 +875013,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6130.67, + "X": 6129.76, "Y": 252.1, - "Z": -8732.78 + "Z": -8731.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875604,9 +875170,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6532.08, + "X": 6531.17, "Y": 135.41, - "Z": -8735.67 + "Z": -8734.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875912,9 +875478,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6913.98, + "X": 6913.07, "Y": 94.78, - "Z": -8962.04 + "Z": -8960.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876100,9 +875666,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6289.98, + "X": 6289.06, "Y": 231.79, - "Z": -8576.54 + "Z": -8575.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876322,9 +875888,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4605.77, + "X": -4606.39, "Y": -77.64, - "Z": -8469.13 + "Z": -8470.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876620,9 +876186,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4319.72, + "X": -4320.34, "Y": -42.95, - "Z": -9146.24 + "Z": -9147.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876788,9 +876354,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4846.8, + "X": -4847.42, "Y": -172.45, - "Z": -9024.85 + "Z": -9026.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876956,9 +876522,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4108.87, + "X": -4109.48, "Y": 23.44, - "Z": -8518.76 + "Z": -8520.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877134,9 +876700,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4377.4, + "X": -4378.01, "Y": -92.58, - "Z": -8810.81 + "Z": -8812.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882522,9 +882088,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5854.59, + "X": 5853.71, "Y": -300.32, - "Z": -9991.18 + "Z": -9989.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882690,9 +882256,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5589.63, + "X": 5588.74, "Y": -225.58, - "Z": -9297.35 + "Z": -9295.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882858,9 +882424,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5776.8, + "X": 5775.92, "Y": -210.37, - "Z": -9494.52 + "Z": -9493.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887240,9 +886806,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7575.32, + "X": -7573.2, "Y": -160.84, - "Z": -5507.57 + "Z": -5505.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887397,9 +886963,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7352.51, + "X": -7350.38, "Y": -103.73, - "Z": -6241.12 + "Z": -6239.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887554,9 +887120,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7373.62, + "X": -7371.5, "Y": -123.93, - "Z": -5974.71 + "Z": -5973.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888504,9 +888070,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7467.71, + "X": 7466.83, "Y": -115.43, - "Z": -8879.14 + "Z": -8878.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888661,9 +888227,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7480.37, + "X": 7479.48, "Y": -71.41, - "Z": -8732.9 + "Z": -8731.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888818,9 +888384,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7243.78, + "X": 7242.9, "Y": -21.96, - "Z": -8556.98 + "Z": -8555.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889675,9 +889241,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6651.56, + "X": -6653.11, "Y": -5.53, - "Z": -7250.26 + "Z": -7251.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889832,9 +889398,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6929.39, + "X": -6930.94, "Y": 17.77, - "Z": -7123.9 + "Z": -7125.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889989,9 +889555,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6608.58, + "X": -6610.13, "Y": -57.16, - "Z": -7682.67 + "Z": -7684.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -895328,9 +894894,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6433.88, + "X": 6433.08, "Y": 147.19, - "Z": -9408.6 + "Z": -9407.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897814,9 +897380,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7246.66, + "X": -7244.93, "Y": 164.39, - "Z": -6714.14 + "Z": -6712.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897995,9 +897561,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8014.83, + "X": 8013.85, "Y": -23.25, - "Z": -8119.71 + "Z": -8118.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899033,9 +898599,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6374.79, + "X": -6375.86, "Y": 155.1, - "Z": -8019.4 + "Z": -8020.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902646,9 +902212,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5019.03, + "X": -5019.65, "Y": 12.49, - "Z": -9125.97 + "Z": -9127.1 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906079,9 +905645,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5410.69, + "X": -5412.04, "Y": -155.19, - "Z": -9039.29 + "Z": -9041.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906247,9 +905813,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5620.44, + "X": -5621.79, "Y": -246.07, - "Z": -8430.84 + "Z": -8432.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906404,9 +905970,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5406.77, + "X": -5408.12, "Y": -270.45, - "Z": -8568.81 + "Z": -8570.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -913262,9 +912828,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5415.06, + "X": 5414.16, "Y": 139.72, - "Z": -9770.28 + "Z": -9768.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913805,9 +913371,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7496.36, + "X": -7494.04, "Y": -57.56, - "Z": -5374.93 + "Z": -5373.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913986,9 +913552,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7149.89, + "X": 7148.97, "Y": -122.51, - "Z": -8943.03 + "Z": -8941.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914529,9 +914095,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6939.74, + "X": -6938.04, "Y": 266.93, - "Z": -7016.09 + "Z": -7014.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915253,9 +914819,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5939.56, + "X": -5940.61, "Y": -69.95, - "Z": -8476.72 + "Z": -8478.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915977,9 +915543,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4475.78, + "X": -4476.36, "Y": 175.43, - "Z": -9444.52 + "Z": -9445.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920321,9 +919887,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6287.57, + "X": 6286.67, "Y": -166.67, - "Z": -9828.73 + "Z": -9827.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920864,9 +920430,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7630.71, + "X": -7628.65, "Y": -9.01, - "Z": -6241.51 + "Z": -6239.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921045,9 +920611,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7996.69, + "X": 7995.81, "Y": -156.25, - "Z": -8803.83 + "Z": -8802.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921407,9 +920973,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6855.97, + "X": -6857.46, "Y": 220.39, - "Z": -7798.56 + "Z": -7800.29 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -926472,9 +926038,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4744.85, + "X": 4744.11, "Y": 252.02, - "Z": -9992.86 + "Z": -9991.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926629,9 +926195,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4487.61, + "X": 4486.86, "Y": 281.75, - "Z": -9895.51 + "Z": -9893.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 868031c55..3a630f16d 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-31T14:25:23.222100+00:00", - "Total Scan Duration": "47.25 seconds" + "Analysis ISO Timestamp": "2026-08-31T16:53:42.364125+00:00", + "Total Scan Duration": "47.17 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -236,9 +236,9 @@ } }, "health": { - "avg_cognitive_load": 29.832, + "avg_cognitive_load": 29.833, "avg_safety_score": 47.587, - "avg_tech_debt": 42.544, + "avg_tech_debt": 42.493, "avg_documentation": 29.612 }, "composition": { @@ -375,7 +375,7 @@ "groovy": { "files": 188, "loc": 8170, - "impact": 2931.6400000000012 + "impact": 2836.740000000001 }, "java": { "files": 14, @@ -2976,12 +2976,12 @@ }, "groovy/jenkins_view_groovy": { "file_count": 30, - "total_mass": 582.2, + "total_mass": 487.3, "avg_exposures": { - "cognitive_load": 10.17, + "cognitive_load": 10.19, "safety_score": 23.62, - "tech_debt": 15.3, - "verification": 6.91, + "tech_debt": 10.49, + "verification": 4.3, "api_exposure": 0.0, "concurrency": 0.0, "state_flux": 10.55, @@ -333012,9 +333012,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6773.25, + "X": -6770.88, "Y": -18.75, - "Z": -4424.57 + "Z": -4422.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333203,9 +333203,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6983.54, + "X": -6981.17, "Y": 2.31, - "Z": -5329.49 + "Z": -5327.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -333522,9 +333522,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7325.02, + "X": -7322.65, "Y": 23.75, - "Z": -4634.29 + "Z": -4632.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -334525,9 +334525,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7020.23, + "X": -7017.86, "Y": 32.59, - "Z": -4939.04 + "Z": -4937.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -441424,9 +441424,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7381.25, + "X": 7380.28, "Y": 165.91, - "Z": -8429.86 + "Z": -8428.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -442227,9 +442227,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7000.64, + "X": 6999.67, "Y": 265.38, - "Z": -7714.79 + "Z": -7713.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443197,9 +443197,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 6788.84, + "X": 6787.87, "Y": 225.2, - "Z": -7950.44 + "Z": -7949.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443478,9 +443478,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7826.31, + "X": 7825.34, "Y": 134.51, - "Z": -8175.65 + "Z": -8174.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -443750,9 +443750,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7639.45, + "X": 7638.48, "Y": 311.63, - "Z": -7254.99 + "Z": -7253.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -444028,9 +444028,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7293.9, + "X": 7292.93, "Y": 257.91, - "Z": -7909.88 + "Z": -7908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -445138,9 +445138,9 @@ "Identity Proof": "Single Indicator (Ext: .php)" }, "2. Topological Coordinates": { - "X": 7203.08, + "X": 7202.11, "Y": 404.61, - "Z": -7210.29 + "Z": -7209.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453324,9 +453324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6583.32, + "X": -6581.2, "Y": 172.11, - "Z": -5078.48 + "Z": -5076.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -453481,9 +453481,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6959.91, + "X": -6957.79, "Y": 31.7, - "Z": -5533.66 + "Z": -5531.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -453659,9 +453659,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6474.26, + "X": -6472.14, "Y": 134.89, - "Z": -5522.32 + "Z": -5520.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454557,9 +454557,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5992.89, + "X": -5990.77, "Y": 121.05, - "Z": -5734.91 + "Z": -5733.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -454725,9 +454725,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6182.41, + "X": -6180.29, "Y": 256.87, - "Z": -5047.35 + "Z": -5045.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455023,9 +455023,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6797.64, + "X": -6795.53, "Y": 143.2, - "Z": -5271.21 + "Z": -5269.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -455381,9 +455381,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6465.92, + "X": -6463.8, "Y": -13.0, - "Z": -5898.42 + "Z": -5896.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470253,9 +470253,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6283.84, + "X": -6282.09, "Y": 205.2, - "Z": -6032.2 + "Z": -6030.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -470724,9 +470724,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6915.14, + "X": -6913.38, "Y": 206.22, - "Z": -6135.23 + "Z": -6133.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471028,9 +471028,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6610.36, + "X": -6608.61, "Y": 53.47, - "Z": -6855.37 + "Z": -6853.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -471419,9 +471419,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -6594.17, + "X": -6592.41, "Y": 177.39, - "Z": -6623.27 + "Z": -6621.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -486632,9 +486632,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6148.21, + "X": -6149.73, "Y": -66.18, - "Z": -6696.32 + "Z": -6698.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487209,9 +487209,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5531.29, + "X": -5532.82, "Y": -114.19, - "Z": -6752.23 + "Z": -6754.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487643,9 +487643,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5360.0, + "X": -5361.53, "Y": -282.71, - "Z": -7412.11 + "Z": -7413.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -487928,9 +487928,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5987.03, + "X": -5988.56, "Y": -62.78, - "Z": -6526.91 + "Z": -6528.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488089,9 +488089,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5888.22, + "X": -5889.75, "Y": -181.22, - "Z": -6940.77 + "Z": -6942.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -488567,9 +488567,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5824.22, + "X": -5825.74, "Y": -178.55, - "Z": -7595.97 + "Z": -7597.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -489025,9 +489025,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6344.64, + "X": -6346.17, "Y": -39.71, - "Z": -7215.89 + "Z": -7217.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511994,9 +511994,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5837.67, + "X": -5839.41, "Y": -150.43, - "Z": -5664.9 + "Z": -5666.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512313,9 +512313,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4953.16, + "X": -4954.9, "Y": -240.07, - "Z": -5697.5 + "Z": -5699.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512473,9 +512473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5827.66, + "X": -5829.4, "Y": 41.65, - "Z": -6529.95 + "Z": -6531.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512765,9 +512765,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6198.35, + "X": -6200.09, "Y": -82.15, - "Z": -5841.61 + "Z": -5843.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512958,9 +512958,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5256.98, + "X": -5258.72, "Y": 63.42, - "Z": -6606.12 + "Z": -6607.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513115,9 +513115,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5541.76, + "X": -5543.5, "Y": -102.3, - "Z": -5996.83 + "Z": -5998.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513444,9 +513444,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5744.29, + "X": -5746.03, "Y": -234.62, - "Z": -5438.32 + "Z": -5440.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513607,9 +513607,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5491.77, + "X": -5493.51, "Y": -27.79, - "Z": -6255.54 + "Z": -6257.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -513854,9 +513854,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5114.63, + "X": -5116.37, "Y": -23.65, - "Z": -6119.43 + "Z": -6121.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514016,9 +514016,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5291.49, + "X": -5293.23, "Y": -202.88, - "Z": -5484.23 + "Z": -5486.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514338,9 +514338,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6116.55, + "X": -6118.29, "Y": 1.59, - "Z": -6141.41 + "Z": -6143.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514600,9 +514600,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5335.93, + "X": -5337.67, "Y": -269.26, - "Z": -5120.57 + "Z": -5122.43 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -514757,9 +514757,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6193.45, + "X": -6195.19, "Y": 77.41, - "Z": -6367.84 + "Z": -6369.7 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -540712,9 +540712,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4888.75, + "X": -4890.3, "Y": 4.45, - "Z": -7340.32 + "Z": -7342.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540970,9 +540970,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4563.95, + "X": -4565.5, "Y": 56.66, - "Z": -7316.11 + "Z": -7318.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541418,9 +541418,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5277.51, + "X": -5279.06, "Y": -8.05, - "Z": -7351.54 + "Z": -7353.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541596,9 +541596,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4322.06, + "X": -4323.61, "Y": 121.9, - "Z": -6674.93 + "Z": -6677.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541824,9 +541824,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4379.62, + "X": -4381.16, "Y": 48.05, - "Z": -7528.22 + "Z": -7530.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542032,9 +542032,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5111.51, + "X": -5113.06, "Y": -0.05, - "Z": -7026.99 + "Z": -7029.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542250,9 +542250,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4859.54, + "X": -4861.09, "Y": 100.67, - "Z": -6800.54 + "Z": -6802.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542498,9 +542498,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4468.88, + "X": -4470.43, "Y": 187.15, - "Z": -6211.93 + "Z": -6214.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542686,9 +542686,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4072.13, + "X": -4073.68, "Y": 196.82, - "Z": -6677.1 + "Z": -6679.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542904,9 +542904,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5190.67, + "X": -5192.22, "Y": 53.47, - "Z": -6711.81 + "Z": -6714.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543162,9 +543162,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4670.76, + "X": -4672.31, "Y": 123.45, - "Z": -6894.6 + "Z": -6896.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543720,9 +543720,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4822.3, + "X": -4823.85, "Y": 93.56, - "Z": -6397.21 + "Z": -6399.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -543918,9 +543918,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4191.22, + "X": -4192.76, "Y": 86.28, - "Z": -7180.68 + "Z": -7183.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -574732,9 +574732,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4685.22, + "X": -4686.53, "Y": -38.82, - "Z": -7970.69 + "Z": -7972.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575225,9 +575225,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4206.2, + "X": -4207.51, "Y": 30.72, - "Z": -8277.14 + "Z": -8279.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575385,9 +575385,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5237.76, + "X": -5239.07, "Y": -77.73, - "Z": -8258.64 + "Z": -8260.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575598,9 +575598,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4669.54, + "X": -4670.85, "Y": 13.64, - "Z": -8725.57 + "Z": -8727.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -575873,9 +575873,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4387.1, + "X": -4388.41, "Y": -140.05, - "Z": -7899.9 + "Z": -7902.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576081,9 +576081,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4951.75, + "X": -4953.06, "Y": -172.93, - "Z": -8001.28 + "Z": -8003.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -576379,9 +576379,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4800.14, + "X": -4801.45, "Y": -222.35, - "Z": -7463.56 + "Z": -7465.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585274,9 +585274,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 5191.77, + "X": 5190.91, "Y": 237.38, - "Z": -9066.25 + "Z": -9064.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -585431,9 +585431,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4397.13, + "X": 4396.26, "Y": 229.37, - "Z": -9473.42 + "Z": -9471.75 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -585589,9 +585589,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4896.42, + "X": 4895.55, "Y": 292.43, - "Z": -9846.13 + "Z": -9844.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587625,9 +587625,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4902.34, + "X": 4901.47, "Y": 202.09, - "Z": -9503.5 + "Z": -9501.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -589359,9 +589359,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4600.54, + "X": 4599.67, "Y": 227.35, - "Z": -9004.11 + "Z": -9002.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627595,9 +627595,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4955.52, + "X": -4957.27, "Y": 11.21, - "Z": -5610.75 + "Z": -5613.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627773,9 +627773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3537.96, + "X": -3539.71, "Y": 150.86, - "Z": -6134.12 + "Z": -6136.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -627951,9 +627951,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4285.04, + "X": -4286.79, "Y": -67.81, - "Z": -4873.58 + "Z": -4875.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628139,9 +628139,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3850.75, + "X": -3852.5, "Y": 152.92, - "Z": -5932.7 + "Z": -5935.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628317,9 +628317,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4719.61, + "X": -4721.36, "Y": -28.59, - "Z": -5108.78 + "Z": -5111.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628515,9 +628515,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4393.16, + "X": -4394.91, "Y": -40.58, - "Z": -5235.32 + "Z": -5237.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628773,9 +628773,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4132.16, + "X": -4133.91, "Y": 60.19, - "Z": -5316.37 + "Z": -5318.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -628971,9 +628971,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3588.53, + "X": -3590.28, "Y": -102.43, - "Z": -5101.63 + "Z": -5103.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629149,9 +629149,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3288.89, + "X": -3290.64, "Y": -27.2, - "Z": -5438.32 + "Z": -5440.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629317,9 +629317,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4728.68, + "X": -4730.43, "Y": 167.57, - "Z": -5961.23 + "Z": -5963.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629495,9 +629495,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3939.13, + "X": -3940.88, "Y": 253.61, - "Z": -6286.94 + "Z": -6289.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629663,9 +629663,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4604.54, + "X": -4606.29, "Y": 25.64, - "Z": -5423.78 + "Z": -5426.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -629941,9 +629941,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4537.88, + "X": -4539.63, "Y": -117.75, - "Z": -5013.5 + "Z": -5015.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630119,9 +630119,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4097.25, + "X": -4099.0, "Y": 154.95, - "Z": -6008.4 + "Z": -6010.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630339,9 +630339,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4867.5, + "X": -4869.25, "Y": -91.87, - "Z": -5052.02 + "Z": -5054.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630507,9 +630507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3882.12, + "X": -3883.87, "Y": -45.39, - "Z": -5205.45 + "Z": -5207.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630745,9 +630745,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4191.19, + "X": -4192.94, "Y": -113.36, - "Z": -4790.42 + "Z": -4792.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630923,9 +630923,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4796.86, + "X": -4798.61, "Y": 68.97, - "Z": -5657.52 + "Z": -5659.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631121,9 +631121,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3578.15, + "X": -3579.9, "Y": -15.87, - "Z": -5238.36 + "Z": -5240.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631289,9 +631289,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4270.9, + "X": -4272.65, "Y": 227.2, - "Z": -6268.45 + "Z": -6270.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631460,9 +631460,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3421.37, + "X": -3423.12, "Y": 105.78, - "Z": -5595.76 + "Z": -5598.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631638,9 +631638,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3907.6, + "X": -3909.35, "Y": -100.54, - "Z": -4683.95 + "Z": -4686.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631826,9 +631826,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3718.99, + "X": -3720.74, "Y": 101.34, - "Z": -5635.07 + "Z": -5637.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632036,9 +632036,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4429.48, + "X": -4431.23, "Y": 164.03, - "Z": -6030.54 + "Z": -6032.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633754,9 +633754,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3563.31, + "X": -3560.95, "Y": -92.25, - "Z": -3946.66 + "Z": -3944.45 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -633911,9 +633911,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5301.62, + "X": -5299.26, "Y": -83.52, - "Z": -4531.99 + "Z": -4529.78 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -634068,9 +634068,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4932.55, + "X": -4930.19, "Y": -133.7, - "Z": -4827.3 + "Z": -4825.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634256,9 +634256,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3770.11, + "X": -3767.76, "Y": -54.7, - "Z": -4787.22 + "Z": -4785.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634424,9 +634424,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4450.16, + "X": -4447.8, "Y": -83.88, - "Z": -4728.96 + "Z": -4726.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634592,9 +634592,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4785.11, + "X": -4782.75, "Y": -82.78, - "Z": -3581.3 + "Z": -3579.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634760,9 +634760,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4877.73, + "X": -4875.37, "Y": -114.56, - "Z": -4334.54 + "Z": -4332.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634978,9 +634978,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4632.6, + "X": -4630.24, "Y": -114.75, - "Z": -3723.13 + "Z": -3720.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635216,9 +635216,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3681.71, + "X": -3679.35, "Y": -92.75, - "Z": -4251.62 + "Z": -4249.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635394,9 +635394,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4149.66, + "X": -4147.31, "Y": -50.21, - "Z": -4891.95 + "Z": -4889.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -635562,9 +635562,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4128.86, + "X": -4126.5, "Y": -149.59, - "Z": -3746.61 + "Z": -3744.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636142,9 +636142,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5150.28, + "X": -5147.92, "Y": -161.67, - "Z": -3660.16 + "Z": -3657.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636320,9 +636320,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4228.69, + "X": -4226.33, "Y": -55.46, - "Z": -5136.81 + "Z": -5134.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636488,9 +636488,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4454.61, + "X": -4452.25, "Y": -160.13, - "Z": -3204.98 + "Z": -3202.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636645,9 +636645,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3811.42, + "X": -3809.06, "Y": -88.51, - "Z": -3734.32 + "Z": -3732.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636823,9 +636823,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4155.6, + "X": -4153.24, "Y": -87.86, - "Z": -3561.91 + "Z": -3559.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637053,9 +637053,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3767.73, + "X": -3765.38, "Y": -126.75, - "Z": -3691.74 + "Z": -3689.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637231,9 +637231,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5190.81, + "X": -5188.45, "Y": -135.86, - "Z": -3996.84 + "Z": -3994.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637409,9 +637409,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4970.65, + "X": -4968.29, "Y": -64.92, - "Z": -4640.25 + "Z": -4638.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637610,9 +637610,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4503.02, + "X": -4500.67, "Y": -150.22, - "Z": -3426.11 + "Z": -3423.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637861,9 +637861,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4665.22, + "X": -4662.87, "Y": -97.63, - "Z": -4729.95 + "Z": -4727.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638243,9 +638243,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4392.13, + "X": -4389.77, "Y": -99.43, - "Z": -4457.11 + "Z": -4454.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638634,9 +638634,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5015.26, + "X": -5012.91, "Y": -123.45, - "Z": -3849.11 + "Z": -3846.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638886,9 +638886,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3903.06, + "X": -3900.71, "Y": -133.74, - "Z": -4238.16 + "Z": -4235.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639147,9 +639147,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4386.27, + "X": -4383.92, "Y": -138.4, - "Z": -4196.9 + "Z": -4194.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639777,9 +639777,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3926.4, + "X": -3924.04, "Y": -124.78, - "Z": -3298.66 + "Z": -3296.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657149,9 +657149,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 5544.9, + "X": 5543.92, "Y": 137.98, - "Z": -9185.75 + "Z": -9184.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657306,9 +657306,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5620.67, + "X": 5619.68, "Y": 260.73, - "Z": -8067.69 + "Z": -8066.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -657470,9 +657470,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5479.69, + "X": 5478.71, "Y": 205.12, - "Z": -8552.06 + "Z": -8550.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658098,9 +658098,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5856.53, + "X": 5855.55, "Y": 149.3, - "Z": -9181.01 + "Z": -9179.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658446,9 +658446,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5306.1, + "X": 5305.12, "Y": 269.32, - "Z": -8741.78 + "Z": -8740.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -658704,9 +658704,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 5809.29, + "X": 5808.31, "Y": 186.55, - "Z": -8854.46 + "Z": -8852.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659162,9 +659162,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6072.36, + "X": 6071.37, "Y": 99.09, - "Z": -8312.21 + "Z": -8310.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -659450,9 +659450,9 @@ "Identity Proof": "Single Indicator (Ext: .abap)" }, "2. Topological Coordinates": { - "X": 6185.38, + "X": 6184.4, "Y": 55.62, - "Z": -8990.53 + "Z": -8989.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716450,9 +716450,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6414.42, + "X": -6412.08, "Y": -297.08, - "Z": -4508.69 + "Z": -4506.9 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716607,9 +716607,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6041.63, + "X": -6039.28, "Y": -179.18, - "Z": -4043.22 + "Z": -4041.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716785,9 +716785,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6540.69, + "X": -6538.34, "Y": -379.97, - "Z": -4658.46 + "Z": -4656.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716953,9 +716953,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6160.43, + "X": -6158.09, "Y": -292.28, - "Z": -5142.43 + "Z": -5140.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717131,9 +717131,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5920.67, + "X": -5918.32, "Y": -240.29, - "Z": -4443.88 + "Z": -4442.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717334,9 +717334,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6156.87, + "X": -6154.53, "Y": -269.3, - "Z": -4145.59 + "Z": -4143.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717544,9 +717544,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5652.07, + "X": -5649.72, "Y": -264.86, - "Z": -4909.86 + "Z": -4908.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717714,9 +717714,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5538.95, + "X": -5536.6, "Y": -181.38, - "Z": -4827.81 + "Z": -4826.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717892,9 +717892,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5924.94, + "X": -5922.6, "Y": -244.29, - "Z": -5061.08 + "Z": -5059.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718110,9 +718110,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5748.76, + "X": -5746.42, "Y": -138.58, - "Z": -3839.61 + "Z": -3837.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718278,9 +718278,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6448.0, + "X": -6445.66, "Y": -276.61, - "Z": -4194.3 + "Z": -4192.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718446,9 +718446,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5400.77, + "X": -5398.42, "Y": -50.64, - "Z": -4130.05 + "Z": -4128.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718614,9 +718614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5211.44, + "X": -5209.09, "Y": -112.55, - "Z": -4509.28 + "Z": -4507.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718782,9 +718782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5624.7, + "X": -5622.36, "Y": -116.08, - "Z": -4285.44 + "Z": -4283.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -725574,45 +725574,45 @@ } } }, - "groovy/jenkins_view_groovy": { - "Directory Group Magnitude": 582.2, - "File Count": 30, + "typescript/playwright": { + "Directory Group Magnitude": 563.96, + "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "96.7%", - "Static: Literature & Documentation": "3.3%" + "Unclassified": "63.6%", + "Static: Literature & Documentation": "36.4%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "10.17%", - "Error & Exception Exposure": "23.62%", - "Tech Debt Exposure": "15.3%", - "Testing Exposure": "6.91%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "10.55%", + "Cognitive Load Exposure": "44.71%", + "Error & Exception Exposure": "58.03%", + "Tech Debt Exposure": "38.98%", + "Testing Exposure": "36.78%", + "API Exposure": "2.82%", + "Concurrency Exposure": "48.67%", + "State Flux Exposure": "45.45%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "74.0%", - "Instability Exposure": "48.33%", + "Specification Exposure": "63.64%", + "Instability Exposure": "31.82%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.12%", + "Documentation Exposure": "15.88%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "groovy/jenkins_view_groovy/LICENSE.txt": { + "typescript/playwright/README.md": { "1. Artifact Identity": { - "Filename": "LICENSE.txt", - "Path": "groovy/jenkins_view_groovy/LICENSE.txt", - "Language": "Plaintext", + "Filename": "README.md", + "Path": "typescript/playwright/README.md", + "Language": "Markdown", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -2912.97, - "Y": -266.83, - "Z": -2109.96 + "X": 3075.65, + "Y": -338.21, + "Z": 7200.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -725621,10 +725621,10 @@ "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, + "Total LOC": 319, "Coding LOC": 0, - "Documentation LOC": 17, - "Structural Magnitude": 1.0, + "Documentation LOC": 215, + "Structural Magnitude": 6.38, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -725724,10 +725724,10 @@ "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 0, + "Instructional Code Examples": 44, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 22, + "Hyperlinked Literature References": 40, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -725754,217 +725754,76 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/Jenkinsfile": { + "typescript/playwright/SECURITY.md": { "1. Artifact Identity": { - "Filename": "Jenkinsfile", - "Path": "groovy/jenkins_view_groovy/Jenkinsfile", - "Language": "Groovy", + "Filename": "SECURITY.md", + "Path": "typescript/playwright/SECURITY.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (Jenkinsfile)" + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3737.41, - "Y": -119.0, - "Z": -2639.52 + "X": 3106.81, + "Y": -406.69, + "Z": 7706.57 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 257, - "Coding LOC": 208, - "Documentation LOC": 32, - "Structural Magnitude": 115.56, - "Control Flow Ratio": "35.6%", + "Total LOC": 42, + "Coding LOC": 0, + "Documentation LOC": 24, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.207 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "9.63%", - "Error & Exception Exposure": "60.06%", - "Tech Debt Exposure": "63.76%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "50.38%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.1%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "node", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 136, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 79, - "End Line": 214 - }, - { - "Function Name": "stage", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 73, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 141, - "End Line": 213 - }, - { - "Function Name": "timeout", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 93, - "End Line": 137 - }, - { - "Function Name": "stage", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 89, - "End Line": 138 - }, - { - "Function Name": "recordIssues", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "100.0%", - "Start Line": 155, - "End Line": 195 - }, - { - "Function Name": "stage", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "11.1%", - "Start Line": 20, - "End Line": 57 - }, - { - "Function Name": "node", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "11.1%", - "Start Line": 22, - "End Line": 55 - }, - { - "Function Name": "withChecks", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 129, - "End Line": 136 - }, - { - "Function Name": "realtimeJUnit", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 130, - "End Line": 135 - }, - { - "Function Name": "node", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 228, - "End Line": 249 - }, - { - "Function Name": "withChecks", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 231, - "End Line": 238 - }, - { - "Function Name": "dir", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 197, - "End Line": 204 - }, - { - "Function Name": "dir", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 94, - "End Line": 98 - }, - { - "Function Name": "stage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 82, - "End Line": 84 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 16, - "Sequential Logic Declarations": 29, - "Function Parameters": 36, - "Function/Method Declarations": 11, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 11, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 4, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -725973,7 +725832,7 @@ "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 2, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -725996,7 +725855,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 190, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726013,19 +725872,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 23, - "Design Camel Case": 13, - "Design Snake Case": 10, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, + "Structured Literature Headers": 4, + "Hyperlinked Literature References": 12, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -726052,62 +725911,62 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy": { + "typescript/playwright/SUPPORT.md": { "1. Artifact Identity": { - "Filename": "hudson_PluginWrapper_uninstall.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy", - "Language": "Groovy", + "Filename": "SUPPORT.md", + "Path": "typescript/playwright/SUPPORT.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3156.37, - "Y": -133.29, - "Z": -2150.54 + "X": 2077.97, + "Y": -192.07, + "Z": 7795.7 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 21, - "Coding LOC": 17, - "Documentation LOC": 0, - "Structural Magnitude": 15.34, + "Total LOC": 18, + "Coding LOC": 0, + "Documentation LOC": 10, + "Structural Magnitude": 1.0, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.294 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.9%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.88%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 1, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -726121,14 +725980,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726153,7 +726012,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726170,18 +726029,18 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, + "Structured Literature Headers": 3, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -726202,376 +726061,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "jenkins.model.Jenkins" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy": { + "typescript/playwright/NOTICE": { "1. Artifact Identity": { - "Filename": "hudson_model_AllView_noJob.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy", - "Language": "Groovy", + "Filename": "NOTICE", + "Path": "typescript/playwright/NOTICE", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": -4005.68, - "Y": -132.63, - "Z": -2125.57 + "X": 2915.07, + "Y": -252.8, + "Z": 7050.15 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 143, - "Coding LOC": 120, - "Documentation LOC": 2, - "Structural Magnitude": 110.8, - "Control Flow Ratio": "22.0%", + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 4, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.214 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.47%", - "Error & Exception Exposure": "69.07%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.18%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, - "5. Function Analysis": [ - { - "Function Name": "div", - "Structural Impact": 25.9, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "26.5%", - "Start Line": 19, - "End Line": 141 - }, - { - "Function Name": "section", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 111, - "End Line": 139 - }, - { - "Function Name": "ul", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "30.8%", - "Start Line": 112, - "End Line": 138 - }, - { - "Function Name": "a", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 114, - "End Line": 122 - }, - { - "Function Name": "li", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 113, - "End Line": 123 - }, - { - "Function Name": "section", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "7.7%", - "Start Line": 42, - "End Line": 76 - }, - { - "Function Name": "ul", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "9.1%", - "Start Line": 44, - "End Line": 75 - }, - { - "Function Name": "a", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 127, - "End Line": 135 - }, - { - "Function Name": "li", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 126, - "End Line": 136 - }, - { - "Function Name": "a", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 73 - }, - { - "Function Name": "section", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 39 - }, - { - "Function Name": "section", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 96 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 36 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 51 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 61 - }, - { - "Function Name": "a", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 88, - "End Line": 93 - }, - { - "Function Name": "ul", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 38 - }, - { - "Function Name": "li", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 74 - }, - { - "Function Name": "ul", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 95 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 37 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 52 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 62 - }, - { - "Function Name": "li", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 94 - }, - { - "Function Name": "span", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 117, - "End Line": 121 - }, - { - "Function Name": "span", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 133 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 35 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 50 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 58, - "End Line": 60 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 72 - }, - { - "Function Name": "span", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 92 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 46, - "Function Parameters": 45, - "Function/Method Declarations": 30, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 5, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -726588,7 +726144,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726613,7 +726169,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 108, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -726630,14 +726186,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 5, - "Design Snake Case": 1, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 2, - "Duplicate Logic": 10, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -726662,106 +726218,90 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.model.Computer", - "hudson.model.Item", - "hudson.model.Job", - "jenkins.model.Jenkins" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy": { + "typescript/playwright/api.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", - "Language": "Groovy", + "Filename": "api.ts", + "Path": "typescript/playwright/api.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4119.84, - "Y": -302.0, - "Z": -1785.73 + "X": 2463.87, + "Y": -272.98, + "Z": 7965.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 14, - "Documentation LOC": 1, - "Structural Magnitude": 2.08, + "Total LOC": 49, + "Coding LOC": 32, + "Documentation LOC": 15, + "Structural Magnitude": 4.86, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 0.094 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", + "Cognitive Load Exposure": "4.64%", + "Error & Exception Exposure": "71.09%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "17.88%", + "Concurrency Exposure": "35.51%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "66.03%", + "Documentation Exposure": "100.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 17 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 6, - "Function Parameters": 3, - "Function/Method Declarations": 1, + "Sequential Logic Declarations": 36, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 32, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 5, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 32, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -726786,11 +726326,11 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -726803,15 +726343,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -726835,124 +726375,335 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 31, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.model.EnvironmentContributor", - "hudson.scm.SCM" + "./android", + "./browser", + "./browserContext", + "./browserType", + "./cdpSession", + "./clock", + "./consoleMessage", + "./coverage", + "./debugger", + "./dialog", + "./disposable", + "./download", + "./electron", + "./elementHandle", + "./errors", + "./fetch", + "./fileChooser", + "./frame", + "./input", + "./jsHandle", + "./locator", + "./network", + "./page", + "./playwright", + "./screencast", + "./selectors", + "./tracing", + "./types", + "./video", + "./webError", + "./worker" ] }, - "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy": { + "typescript/playwright/bidiConnection.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", - "Language": "Groovy", + "Filename": "bidiConnection.ts", + "Path": "typescript/playwright/bidiConnection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Spaces", + "Parent Entity": "EventEmitter", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3557.12, - "Y": 122.56, - "Z": -3253.04 + "X": 2134.16, + "Y": -157.85, + "Z": 7523.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 30, - "Coding LOC": 4, - "Documentation LOC": 23, - "Structural Magnitude": 12.08, - "Control Flow Ratio": "0.0%", + "Total LOC": 261, + "Coding LOC": 204, + "Documentation LOC": 27, + "Structural Magnitude": 31.55, + "Control Flow Ratio": "42.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.25 + "Raw Cognitive Density": 2.045 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.61%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "94.57%", + "Error & Exception Exposure": "99.15%", + "Tech Debt Exposure": "95.32%", + "Testing Exposure": "80.0%", + "API Exposure": "1.45%", + "Concurrency Exposure": "99.88%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "26.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.12%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_dispatchMessage", + "Structural Impact": 38.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 24, + "Input Parameters": 1, + "Control Flow Ratio": "82.8%", + "Start Line": 70, + "End Line": 122 + }, + { + "Function Name": "dispatchMessage", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 238, + "End Line": 259 + }, + { + "Function Name": "send", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 193, + "End Line": 205 + }, + { + "Function Name": "sendMayFail", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 207, + "End Line": 209 + }, + { + "Function Name": "dispose", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 219, + "End Line": 232 + }, + { + "Function Name": "_onClose", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 124, + "End Line": 131 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 59 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 169, + "End Line": 181 + }, + { + "Function Name": "close", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 137, + "End Line": 140 + }, + { + "Function Name": "createMainFrameBrowsingContextSession", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 146 + }, + { + "Function Name": "rawSend", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 68 + }, + { + "Function Name": "addFrameBrowsingContext", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 183, + "End Line": 186 + }, + { + "Function Name": "removeFrameBrowsingContext", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 188, + "End Line": 191 + }, + { + "Function Name": "hasCallback", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 236 + }, + { + "Function Name": "nextMessageId", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 63 + }, + { + "Function Name": "isClosed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 133, + "End Line": 135 + }, + { + "Function Name": "markAsCrashed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 211, + "End Line": 213 + }, + { + "Function Name": "isDisposed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 217 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 57, + "Sequential Logic Declarations": 78, + "Function Parameters": 33, + "Function/Method Declarations": 18, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 20, + "Type/Safety Bypasses": 12, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 182, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 25, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 5, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 23, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 11, + "Dependency Injection Constructs": 5, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 9, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 25, + "Resource Deallocation & Cleanup": 11, + "Private / Encapsulated Scopes": 12, + "Event Listeners & Subscribers": 3, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 187, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -726963,15 +726714,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 25, + "Design Camel Case": 3, + "Design Snake Case": 16, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 7, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -726995,132 +726746,332 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 8, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "../helper", + "../protocolError", + "../transport", + "../types", + "../utils/debugLogger", + "./third_party/bidiCommands", + "./third_party/bidiProtocol", + "events" + ] }, - "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy": { + "typescript/playwright/connection.ts": { "1. Artifact Identity": { - "Filename": "hudson_model_UsageStatistics_global.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy", - "Language": "Groovy", + "Filename": "connection.ts", + "Path": "typescript/playwright/connection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "ChannelOwner, EventEmitter", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3991.21, - "Y": 127.29, - "Z": -3347.46 + "X": 2684.85, + "Y": -180.49, + "Z": 7024.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 18, - "Documentation LOC": 0, - "Structural Magnitude": 1.96, - "Control Flow Ratio": "40.0%", - "Popularity Rank": 0, + "Total LOC": 353, + "Coding LOC": 304, + "Documentation LOC": 20, + "Structural Magnitude": 48.63, + "Control Flow Ratio": "49.4%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 2.44 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "96.6%", + "Error & Exception Exposure": "95.94%", + "Tech Debt Exposure": "89.91%", + "Testing Exposure": "80.0%", + "API Exposure": "0.16%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "65.28%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "div", + "Function Name": "_createRemoteObject", + "Structural Impact": 159.8, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 68, + "Input Parameters": 4, + "Control Flow Ratio": "64.2%", + "Start Line": 232, + "End Line": 342 + }, + { + "Function Name": "sendMessageToServer", + "Structural Impact": 41.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 17, + "Input Parameters": 4, + "Control Flow Ratio": "68.0%", + "Start Line": 127, + "End Line": 149 + }, + { + "Function Name": "dispatch", + "Structural Impact": 22.3, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 13, + "Input Parameters": 1, + "Control Flow Ratio": "65.0%", + "Start Line": 159, + "End Line": 208 + }, + { + "Function Name": "_tChannelImplFromWire", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "85.7%", + "Start Line": 220, + "End Line": 230 + }, + { + "Function Name": "constructor", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 84, + "End Line": 90 + }, + { + "Function Name": "close", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 210, + "End Line": 218 + }, + { + "Function Name": "formatCallLog", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 345, + "End Line": 352 + }, + { + "Function Name": "setIsTracing", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 125 + }, + { + "Function Name": "onmessage", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "16.7%", + "Start Line": 68, + "End Line": 81 + }, + { + "Function Name": "_validatorFromWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 151, + "End Line": 157 + }, + { + "Function Name": "constructor", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 13 + "Start Line": 52, + "End Line": 54 + }, + { + "Function Name": "getObjectWithKnownName", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "initialize", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 61 + }, + { + "Function Name": "markAsRemote", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 92, + "End Line": 94 + }, + { + "Function Name": "isRemote", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 98 + }, + { + "Function Name": "useRawBuffers", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 102 + }, + { + "Function Name": "rawBuffers", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 106 + }, + { + "Function Name": "localUtils", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 110 + }, + { + "Function Name": "initializePlaywright", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 112, + "End Line": 114 + }, + { + "Function Name": "isUnderTest", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 156 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 2, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Control Flow Branches": 116, + "Sequential Logic Declarations": 119, + "Function Parameters": 30, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 13, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 138, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Asynchronous/Concurrent Execution": 58, + "UI / View Layer Components": 4, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 6, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 34, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 4, + "Dependency Injection Constructs": 4, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 43, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 10, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 20, + "Resource Deallocation & Cleanup": 3, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, + "Structural Space Indentations": 259, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 3, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 3, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -727131,22 +727082,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, + "Core Var Decl": 54, + "Design Camel Case": 1, + "Design Snake Case": 49, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 9, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, + "External Network & I/O Hooks": 1, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -727163,119 +727114,350 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 32, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions", - "hudson.model.UsageStatistics", - "jenkins.security.FIPS140" + "../protocol/validator", + "../utils/isomorphic/stackTrace", + "./android", + "./artifact", + "./browser", + "./browserContext", + "./browserType", + "./cdpSession", + "./channelOwner", + "./clientInstrumentation", + "./debugger", + "./dialog", + "./disposable", + "./electron", + "./elementHandle", + "./errors", + "./eventEmitter", + "./fetch", + "./frame", + "./jsHandle", + "./jsonPipe", + "./localUtils", + "./network", + "./page", + "./platform", + "./playwright", + "./stream", + "./tracing", + "./types", + "./worker", + "./writableStream", + "@protocol/channels" ] }, - "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy": { + "typescript/playwright/crConnection.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_GlobalSecurityConfiguration_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy", - "Language": "Groovy", + "Filename": "crConnection.ts", + "Path": "typescript/playwright/crConnection.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "SdkObject", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3279.87, - "Y": -39.99, - "Z": -2821.39 + "X": 2834.21, + "Y": -329.2, + "Z": 7886.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 58, - "Documentation LOC": 0, - "Structural Magnitude": 16.16, - "Control Flow Ratio": "41.2%", + "Total LOC": 240, + "Coding LOC": 186, + "Documentation LOC": 22, + "Structural Magnitude": 39.53, + "Control Flow Ratio": "38.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.207 + "Raw Cognitive Density": 2.96 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "10.23%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "94.61%", + "Error & Exception Exposure": "99.52%", + "Tech Debt Exposure": "58.0%", + "Testing Exposure": "80.0%", + "API Exposure": "2.03%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.78%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "_onMessage", + "Structural Impact": 20.8, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 13, + "Input Parameters": 1, + "Control Flow Ratio": "92.9%", + "Start Line": 152, + "End Line": 172 + }, + { + "Function Name": "send", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 136, + "End Line": 146 + }, + { + "Function Name": "_onMessage", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 77, + "End Line": 84 + }, + { + "Function Name": "_sendMayFail", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 148, + "End Line": 150 + }, + { + "Function Name": "constructor", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 117, + "End Line": 124 + }, + { + "Function Name": "_rawSend", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 67, + "End Line": 75 + }, + { + "Function Name": "send", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 217, + "End Line": 219 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 208, + "End Line": 215 + }, + { + "Function Name": "createChildSession", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 130, + "End Line": 134 + }, + { + "Function Name": "_send", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 225, + "End Line": 227 + }, + { + "Function Name": "detach", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 174, + "End Line": 184 + }, + { + "Function Name": "dispose", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 186, + "End Line": 196 + }, + { + "Function Name": "_onClose", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 86, + "End Line": 93 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 65 + }, + { + "Function Name": "close", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 95, + "End Line": 98 + }, + { + "Function Name": "detach", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 221, + "End Line": 223 + }, + { + "Function Name": "attachToTarget", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 229, + "End Line": 232 + }, + { + "Function Name": "createBrowserSession", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 100, + "End Line": 103 + }, + { + "Function Name": "_onClose", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 234, + "End Line": 238 + }, + { + "Function Name": "_markAsCrashed", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 128 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 10, - "Function Parameters": 9, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 60, + "Function Parameters": 33, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 9, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 6, + "State Mutations / Variable Reassignments": 173, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 121, + "UI / View Layer Components": 4, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 9, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 11, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 4, + "Dependency Injection Constructs": 6, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 8, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 3, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 20, + "Resource Deallocation & Cleanup": 9, + "Private / Encapsulated Scopes": 15, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 47, + "Structural Space Indentations": 163, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727292,15 +727474,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, + "Core Var Decl": 17, + "Design Camel Case": 1, + "Design Snake Case": 10, + "Design Pascal Case": 5, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -727308,7 +727490,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 1, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -727324,121 +727506,447 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 9, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions", - "hudson.markup.MarkupFormatterDescriptor", - "hudson.model.Descriptor", - "hudson.security.AuthorizationStrategy", - "hudson.security.SecurityRealm" + "../../utils", + "../helper", + "../instrumentation", + "../protocolError", + "../transport", + "../types", + "../utils/debugLogger", + "./protocol", + "@protocol/progress" ] }, - "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy": { + "typescript/playwright/dispatcher.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_LegacySecurityRealm_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy", - "Language": "Groovy", + "Filename": "dispatcher.ts", + "Path": "typescript/playwright/dispatcher.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "EventEmitter implements channels, Dispatcher", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -3863.74, - "Y": -181.45, - "Z": -1876.42 + "X": 2365.55, + "Y": -216.96, + "Z": 7618.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 28, - "Documentation LOC": 0, - "Structural Magnitude": 15.56, - "Control Flow Ratio": "40.0%", + "Total LOC": 415, + "Coding LOC": 339, + "Documentation LOC": 25, + "Structural Magnitude": 58.8, + "Control Flow Ratio": "48.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.321 + "Raw Cognitive Density": 2.405 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.26%", - "Error & Exception Exposure": "87.13%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "96.92%", + "Error & Exception Exposure": "99.38%", + "Tech Debt Exposure": "89.53%", + "Testing Exposure": "80.0%", + "API Exposure": "1.19%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "52.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "dispatch", + "Structural Impact": 53.5, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 33, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 299, + "End Line": 407 + }, + { + "Function Name": "constructor", + "Structural Impact": 20.7, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "63.6%", + "Start Line": 62, + "End Line": 83 + }, + { + "Function Name": "_tChannelImplFromWire", + "Structural Impact": 18.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "77.8%", + "Start Line": 245, + "End Line": 256 + }, + { + "Function Name": "_disposeRecursively", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 142, + "End Line": 163 + }, + { + "Function Name": "_tChannelImplToWire", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 258, + "End Line": 265 + }, + { + "Function Name": "maybeDisposeStaleDispatchers", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 283, + "End Line": 297 + }, + { + "Function Name": "_runCommand", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 103, + "End Line": 111 + }, + { + "Function Name": "maxDispatchersForBucket", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 42, + "End Line": 47 + }, + { + "Function Name": "_dispatchEvent", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 113, + "End Line": 121 + }, + { + "Function Name": "_doSlowMo", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 409, + "End Line": 413 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 182, + "End Line": 184 + }, + { + "Function Name": "sendDispose", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 225, + "End Line": 227 + }, + { + "Function Name": "registerDispatcher", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 271, + "End Line": 281 + }, + { + "Function Name": "adopt", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 93, + "End Line": 101 + }, + { + "Function Name": "stopPendingOperations", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 131, + "End Line": 140 + }, + { + "Function Name": "collect", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 133, + "End Line": 140 + }, + { + "Function Name": "_dispose", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 123, + "End Line": 126 + }, + { + "Function Name": "constructor", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 205, + "End Line": 207 + }, + { + "Function Name": "sendCreate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 215, + "End Line": 219 + }, + { + "Function Name": "_validatorToWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 229, + "End Line": 235 + }, + { + "Function Name": "_validatorFromWireContext", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 237, + "End Line": 243 + }, + { + "Function Name": "initialize", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 186, + "End Line": 194 + }, + { + "Function Name": "sendEvent", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 209, + "End Line": 213 + }, + { + "Function Name": "addObjectListener", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 91 + }, + { + "Function Name": "sendAdopt", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 221, + "End Line": 223 + }, + { + "Function Name": "setMaxDispatchersForTest", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 41 + }, + { + "Function Name": "onmessage", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 200, + "End Line": 202 + }, + { + "Function Name": "existingDispatcher", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 269 + }, + { + "Function Name": "_debugScopeState", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 165, + "End Line": 170 + }, + { + "Function Name": "parentScope", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 85, + "End Line": 87 + }, + { + "Function Name": "_onDispose", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 129 + }, + { + "Function Name": "waitForEventInfo", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 172, + "End Line": 174 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 6, - "Function Parameters": 5, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 4, + "Control Flow Branches": 82, + "Sequential Logic Declarations": 86, + "Function Parameters": 48, + "Function/Method Declarations": 32, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 29, + "Type/Safety Bypasses": 25, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 7, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 292, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 5, + "Asynchronous/Concurrent Execution": 83, + "UI / View Layer Components": 9, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 11, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 16, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 4, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 19, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 10, + "Thread Sleeps & Blocking Waits": 1, + "Bitwise Operations": 2, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 42, + "Resource Deallocation & Cleanup": 7, + "Private / Encapsulated Scopes": 20, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 310, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727446,7 +727954,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -727455,15 +727963,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 1, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 48, + "Design Camel Case": 13, + "Design Snake Case": 28, + "Design Pascal Case": 2, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 3, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -727471,7 +727979,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "Dynamic Code Execution (Eval/Exec)": 5, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -727487,127 +727995,1729 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 13, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.PluginWrapper", - "hudson.model.UnprotectedRootAction", - "jenkins.model.Jenkins" + "../../protocol/validator", + "../../utils", + "../../utils/isomorphic/protocolMetainfo", + "../callLog", + "../errors", + "../instrumentation", + "../progress", + "../protocolError", + "../utils/debug", + "../utils/eventsHelper", + "./playwrightDispatcher", + "@protocol/channels", + "events" ] }, - "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy": { + "typescript/playwright/frames.ts": { "1. Artifact Identity": { - "Filename": "hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "frames.ts", + "Path": "typescript/playwright/frames.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Parent Entity": "Error, SdkObject", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4323.01, - "Y": -63.58, - "Z": -2274.31 + "X": 2569.74, + "Y": -230.5, + "Z": 7584.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 20, - "Coding LOC": 16, - "Documentation LOC": 0, - "Structural Magnitude": 15.32, - "Control Flow Ratio": "42.9%", + "Total LOC": 1823, + "Coding LOC": 1533, + "Documentation LOC": 91, + "Structural Magnitude": 369.37, + "Control Flow Ratio": "46.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 3.78 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.89%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "99.35%", + "Error & Exception Exposure": "97.8%", + "Tech Debt Exposure": "95.99%", + "Testing Exposure": "80.0%", + "API Exposure": "1.0%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "68.52%", + "Documentation Exposure": "15.13%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "waitForSelector", + "Structural Impact": 88.9, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 34, + "Input Parameters": 5, + "Control Flow Ratio": "61.8%", + "Start Line": 770, + "End Line": 833 + }, + { + "Function Name": "_expectInternal", + "Structural Impact": 65.8, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 25, + "Input Parameters": 5, + "Control Flow Ratio": "73.5%", + "Start Line": 1473, + "End Line": 1515 + }, + { + "Function Name": "_retryWithProgressIfNotConnected", + "Structural Impact": 63.3, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 26, + "Input Parameters": 4, + "Control Flow Ratio": "60.5%", + "Start Line": 1132, + "End Line": 1190 + }, + { + "Function Name": "waitForFunctionExpression", + "Structural Impact": 58.9, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 20, + "Input Parameters": 6, + "Control Flow Ratio": "46.5%", + "Start Line": 1517, + "End Line": 1583 + }, + { + "Function Name": "expect", + "Structural Impact": 51.0, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 23, + "Input Parameters": 3, + "Control Flow Ratio": "65.7%", + "Start Line": 1411, + "End Line": 1471 + }, + { + "Function Name": "gotoImpl", + "Structural Impact": 44.8, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 20, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 636, + "End Line": 690 + }, + { + "Function Name": "race", + "Structural Impact": 36.0, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 23, + "Input Parameters": 1, + "Control Flow Ratio": "71.9%", + "Start Line": 1475, + "End Line": 1515 + }, + { + "Function Name": "_callOnElementOnceMatches", + "Structural Impact": 33.0, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 11, + "Input Parameters": 6, + "Control Flow Ratio": "52.4%", + "Start Line": 1642, + "End Line": 1666 + }, + { + "Function Name": "fixupMetadataError", + "Structural Impact": 32.6, + "Lines of Code (LOC)": 58, + "Control Flow Branches": 20, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1414, + "End Line": 1471 + }, + { + "Function Name": "ariaSnapshot", + "Structural Impact": 30.8, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "64.0%", + "Start Line": 1729, + "End Line": 1756 + }, + { + "Function Name": "resolveSelector", + "Structural Impact": 23.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "52.6%", + "Start Line": 1249, + "End Line": 1277 + }, + { + "Function Name": "waitForNavigation", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "52.9%", + "Start Line": 692, + "End Line": 713 + }, + { + "Function Name": "isVisibleInternal", + "Structural Impact": 20.9, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "53.3%", + "Start Line": 1341, + "End Line": 1356 + }, + { + "Function Name": "_addScriptTag", + "Structural Impact": 19.5, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "29.7%", + "Start Line": 965, + "End Line": 1015 + }, + { + "Function Name": "retryWithProgressAndTimeouts", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "61.5%", + "Start Line": 1088, + "End Line": 1114 + }, + { + "Function Name": "frameCommittedNewDocumentNavigation", + "Structural Impact": 19.2, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 6, + "Input Parameters": 5, + "Control Flow Ratio": "100.0%", + "Start Line": 211, + "End Line": 252 + }, + { + "Function Name": "_recalculateNetworkIdle", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 583, + "End Line": 603 + }, + { + "Function Name": "frameAbortedNavigation", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 269, + "End Line": 284 + }, + { + "Function Name": "inputValue", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "62.5%", + "Start Line": 1299, + "End Line": 1306 + }, + { + "Function Name": "requestStarted", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 300, + "End Line": 314 + }, + { + "Function Name": "frameRequestedNavigation", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 196, + "End Line": 209 + }, + { + "Function Name": "_raceWithCSPError", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "43.8%", + "Start Line": 1063, + "End Line": 1086 + }, + { + "Function Name": "predicate", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 657, + "End Line": 676 + }, + { + "Function Name": "_evaluateExpression", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 749, + "End Line": 753 + }, + { + "Function Name": "_evaluateExpressionHandle", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 759, + "End Line": 763 + }, + { + "Function Name": "frameAttached", + "Structural Impact": 11.4, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 147, + "End Line": 167 + }, + { + "Function Name": "raceNavigationAction", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 605, + "End Line": 619 + }, + { + "Function Name": "requestFailed", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 329, + "End Line": 341 + }, + { + "Function Name": "addFrameNavigation", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1778, + "End Line": 1797 + }, + { + "Function Name": "isNonRetriableError", + "Structural Impact": 10.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 1116, + "End Line": 1130 + }, + { + "Function Name": "_addStyleTag", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "26.3%", + "Start Line": 1021, + "End Line": 1061 + }, + { + "Function Name": "frameCommittedSameDocumentNavigation", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 254, + "End Line": 267 + }, + { + "Function Name": "predicate", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "58.3%", + "Start Line": 1526, + "End Line": 1551 + }, + { + "Function Name": "predicate", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 676, + "End Line": 690 + }, + { + "Function Name": "evaluateExpression", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 745, + "End Line": 747 + }, + { + "Function Name": "evaluateExpressionHandle", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 755, + "End Line": 757 + }, + { + "Function Name": "press", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1395, + "End Line": 1397 + }, + { + "Function Name": "waitForSignalsCreatedBy", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "30.0%", + "Start Line": 169, + "End Line": 184 + }, + { + "Function Name": "queryCount", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 877, + "End Line": 885 + }, + { + "Function Name": "_evalOnSelector", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "40.0%", + "Start Line": 845, + "End Line": 852 + }, + { + "Function Name": "next", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1551, + "End Line": 1570 + }, + { + "Function Name": "raceAgainstEvaluationStallingEvents", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 547, + "End Line": 563 + }, + { + "Function Name": "_elementState", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1327, + "End Line": 1334 + }, + { + "Function Name": "addScriptTag", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 957, + "End Line": 963 + }, + { + "Function Name": "setContent", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "18.2%", + "Start Line": 909, + "End Line": 933 + }, + { + "Function Name": "constructor", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 479, + "End Line": 500 + }, + { + "Function Name": "innerText", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "40.0%", + "Start Line": 1283, + "End Line": 1289 + }, + { + "Function Name": "type", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1391, + "End Line": 1393 + }, + { + "Function Name": "_content", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 891, + "End Line": 907 + }, + { + "Function Name": "_title", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "35.7%", + "Start Line": 1600, + "End Line": 1612 + }, + { + "Function Name": "onWebSocketResponse", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 406, + "End Line": 412 + }, + { + "Function Name": "_inflightRequestFinished", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 356, + "End Line": 365 + }, + { + "Function Name": "contextDestroyed", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1689, + "End Line": 1699 + }, + { + "Function Name": "onLifecycleEvent", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 506, + "End Line": 514 + }, + { + "Function Name": "evalOnSelector", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 841, + "End Line": 843 + }, + { + "Function Name": "abort", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "36.4%", + "Start Line": 1570, + "End Line": 1583 + }, + { + "Function Name": "nonStallingEvaluateInExistingContext", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 574, + "End Line": 581 + }, + { + "Function Name": "_setContext", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1668, + "End Line": 1675 + }, + { + "Function Name": "dispatchEvent", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "16.7%", + "Start Line": 835, + "End Line": 839 + }, + { + "Function Name": "verifyLifecycle", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1810, + "End Line": 1816 + }, + { + "Function Name": "evalOnSelectorAll", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 6, + "Control Flow Ratio": "50.0%", + "Start Line": 854, + "End Line": 856 + }, + { + "Function Name": "renderUnexpectedValue", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1818, + "End Line": 1822 + }, + { + "Function Name": "addStyleTag", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1017, + "End Line": 1019 + }, + { + "Function Name": "_evalOnSelectorAll", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "25.0%", + "Start Line": 858, + "End Line": 863 + }, + { + "Function Name": "getAttribute", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1295, + "End Line": 1297 + }, + { + "Function Name": "addScriptUrl", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 990, + "End Line": 1002 + }, + { + "Function Name": "interceptConsoleMessage", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 376, + "End Line": 386 + }, + { + "Function Name": "addScriptContent", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 1004, + "End Line": 1014 + }, + { + "Function Name": "isVisible", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1336, + "End Line": 1339 + }, + { + "Function Name": "_inflightRequestStarted", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 367, + "End Line": 374 + }, + { + "Function Name": "invalidateNonStallingEvaluations", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 539, + "End Line": 545 + }, + { + "Function Name": "collectNavigations", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 650, + "End Line": 657 + }, + { + "Function Name": "textContent", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1279, + "End Line": 1281 + }, + { + "Function Name": "innerHTML", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1291, + "End Line": 1293 + }, + { + "Function Name": "isHidden", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1358, + "End Line": 1360 + }, + { + "Function Name": "isDisabled", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1362, + "End Line": 1364 + }, + { + "Function Name": "isEnabled", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1366, + "End Line": 1368 + }, + { + "Function Name": "isEditable", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1370, + "End Line": 1372 + }, + { + "Function Name": "isChecked", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1374, + "End Line": 1376 + }, + { + "Function Name": "_onDetached", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1629, + "End Line": 1640 + }, + { + "Function Name": "onWebSocketRequest", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 400, + "End Line": 404 + }, + { + "Function Name": "redirectNavigation", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 621, + "End Line": 629 + }, + { + "Function Name": "onWebSocketFrameSent", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 414, + "End Line": 418 + }, + { + "Function Name": "webSocketFrameReceived", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 420, + "End Line": 424 + }, + { + "Function Name": "click", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 1199, + "End Line": 1201 + }, + { + "Function Name": "tap", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 1231, + "End Line": 1235 + }, + { + "Function Name": "focus", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1241, + "End Line": 1243 + }, + { + "Function Name": "blur", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1245, + "End Line": 1247 + }, + { + "Function Name": "setInputFiles", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "20.0%", + "Start Line": 1386, + "End Line": 1389 + }, + { + "Function Name": "rafrafTimeout", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 1614, + "End Line": 1627 + }, + { + "Function Name": "waitForFunctionValueInUtility", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "16.7%", + "Start Line": 1585, + "End Line": 1594 + }, + { + "Function Name": "contextCreated", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1677, + "End Line": 1687 + }, + { + "Function Name": "highlight", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "14.3%", + "Start Line": 1308, + "End Line": 1315 + }, + { + "Function Name": "reportRequestFinished", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 322, + "End Line": 327 + }, + { + "Function Name": "extendInjectedScript", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1721, + "End Line": 1727 + }, + { + "Function Name": "frameLifecycleEvent", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 294, + "End Line": 298 + }, + { + "Function Name": "webSocketError", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 433, + "End Line": 437 + }, + { + "Function Name": "waitForLoadState", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 715, + "End Line": 719 + }, + { + "Function Name": "_onClearLifecycle", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 516, + "End Line": 527 + }, + { + "Function Name": "_startNetworkIdleTimer", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1701, + "End Line": 1712 + }, + { + "Function Name": "dragAndDrop", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1207, + "End Line": 1229 + }, + { + "Function Name": "frameDetached", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 286, + "End Line": 292 + }, + { + "Function Name": "_removeFramesRecursively", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 348, + "End Line": 354 + }, + { + "Function Name": "nonStallingRawEvaluateInExistingMainContext", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 565, + "End Line": 572 + }, + { + "Function Name": "context", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 725, + "End Line": 731 + }, + { + "Function Name": "origin", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 943, + "End Line": 947 + }, + { + "Function Name": "onerror", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1009, + "End Line": 1015 + }, + { + "Function Name": "collect", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 136, + "End Line": 140 + }, + { + "Function Name": "requestReceivedResponse", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 316, + "End Line": 320 + }, + { + "Function Name": "_clearWebSockets", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 388, + "End Line": 393 + }, + { + "Function Name": "webSocketClosed", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 426, + "End Line": 431 + }, + { + "Function Name": "_setPendingDocument", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 529, + "End Line": 533 + }, + { + "Function Name": "_existingMainContext", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 737, + "End Line": 739 + }, + { + "Function Name": "onerror", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 997, + "End Line": 1002 + }, + { + "Function Name": "frame", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 143, + "End Line": 145 + }, + { + "Function Name": "removeChildFramesRecursively", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 343, + "End Line": 346 + }, + { + "Function Name": "selectOption", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 1382, + "End Line": 1384 + }, + { + "Function Name": "frames", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 131, + "End Line": 141 + }, + { + "Function Name": "rafrafTimeoutScreenshotElementWithProgress", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1192, + "End Line": 1197 + }, + { + "Function Name": "fill", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1237, + "End Line": 1239 + }, + { + "Function Name": "dispose", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 125 + }, + { + "Function Name": "_stopNetworkIdleTimer", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1714, + "End Line": 1719 + }, + { + "Function Name": "createDummyMainFrameIfNeeded", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 115, + "End Line": 118 + }, + { + "Function Name": "frameWillPotentiallyRequestNavigation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 186, + "End Line": 189 + }, + { + "Function Name": "frameDidPotentiallyRequestNavigation", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 191, + "End Line": 194 + }, + { + "Function Name": "goto", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 631, + "End Line": 634 + }, + { + "Function Name": "querySelector", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 765, + "End Line": 768 + }, + { + "Function Name": "release", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 1803, + "End Line": 1807 + }, + { + "Function Name": "maskSelectors", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 865, + "End Line": 871 + }, + { + "Function Name": "name", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 935, + "End Line": 937 + }, + { + "Function Name": "dblclick", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1203, + "End Line": 1205 + }, + { + "Function Name": "hover", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1378, + "End Line": 1380 + }, + { + "Function Name": "check", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1399, + "End Line": 1401 + }, + { + "Function Name": "uncheck", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1403, + "End Line": 1405 + }, + { + "Function Name": "addStyleUrl", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1036, + "End Line": 1047 + }, + { + "Function Name": "addStyleContent", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1049, + "End Line": 1060 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 90 + }, + { + "Function Name": "onWebSocketCreated", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 395, + "End Line": 398 + }, + { + "Function Name": "_fireInternalFrameNavigation", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 439, + "End Line": 441 + }, + { + "Function Name": "querySelectorAll", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 873, + "End Line": 875 + }, + { + "Function Name": "waitForTimeout", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1407, + "End Line": 1409 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 106, + "End Line": 109 + }, + { + "Function Name": "frameElement", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 721, + "End Line": 723 + }, + { + "Function Name": "content", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 887, + "End Line": 889 + }, + { + "Function Name": "title", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1596, + "End Line": 1598 + }, + { + "Function Name": "_asLocator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1758, + "End Line": 1760 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1768, + "End Line": 1771 + }, + { + "Function Name": "hideHighlight", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1317, + "End Line": 1325 + }, + { + "Function Name": "waitFor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1773, + "End Line": 1776 + }, + { + "Function Name": "_allocateFrameSeq", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 113 + }, + { + "Function Name": "mainFrame", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 129 + }, + { + "Function Name": "_isDetached", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 502, + "End Line": 504 + }, + { + "Function Name": "pendingDocument", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 535, + "End Line": 537 + }, + { + "Function Name": "mainContext", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 733, + "End Line": 735 + }, + { + "Function Name": "utilityContext", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 741, + "End Line": 743 + }, + { + "Function Name": "url", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 939, + "End Line": 941 + }, + { + "Function Name": "parentFrame", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 949, + "End Line": 951 + }, + { + "Function Name": "_getChildFrames", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 953, + "End Line": 955 + }, + { + "Function Name": "retain", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1799, + "End Line": 1801 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, - "Function Parameters": 1, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Control Flow Branches": 454, + "Sequential Logic Declarations": 516, + "Function Parameters": 276, + "Function/Method Declarations": 161, + "Class/Entity Declarations": 4, + "Defensive Programming Constructs": 78, + "Type/Safety Bypasses": 64, + "High-Risk Execution Commands": 3, + "I/O and Network Boundaries": 4, + "Exposed API / Public Exports": 8, + "State Mutations / Variable Reassignments": 928, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 6, + "Asynchronous/Concurrent Execution": 1397, + "UI / View Layer Components": 14, + "Closures and Anonymous Functions": 73, + "Global State Dependencies": 18, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 41, + "Collection Iterators / Comprehensions": 5, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 26, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 12, + "Dependency Injection Constructs": 7, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 43, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 45, + "Thread Sleeps & Blocking Waits": 5, + "Bitwise Operations": 6, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 192, + "Resource Deallocation & Cleanup": 26, + "Private / Encapsulated Scopes": 39, + "Event Listeners & Subscribers": 2, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 1477, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, + "Serialization Parsing": 2, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 4, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -727616,25 +729726,25 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, + "Core Var Decl": 235, + "Design Camel Case": 47, + "Design Snake Case": 158, + "Design Pascal Case": 16, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 7, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 56, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, + "External Network & I/O Hooks": 1, + "Dynamic Code Execution (Eval/Exec)": 5, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -727648,81 +729758,102 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 22, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.security.csrf.CrumbIssuer" + "../utils", + "../utils/isomorphic/manualPromise", + "../utils/isomorphic/selectorParser", + "./browserContext", + "./callLog", + "./console", + "./dom", + "./errors", + "./fileUploadUtils", + "./frameSelectors", + "./helper", + "./instrumentation", + "./javascript", + "./network", + "./page", + "./progress", + "./protocolError", + "./screenshotter", + "./types", + "./utils/eventsHelper", + "@injected/injectedScript", + "@protocol/channels" ] }, - "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy": { + "typescript/playwright/protocol.ts": { "1. Artifact Identity": { - "Filename": "hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", - "Language": "Groovy", + "Filename": "protocol.ts", + "Path": "typescript/playwright/protocol.ts", + "Language": "Typescript", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "typescript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -4335.49, - "Y": 10.73, - "Z": -2858.75 + "X": 2364.46, + "Y": -153.12, + "Z": 6836.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 12, - "Documentation LOC": 23, - "Structural Magnitude": 15.24, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 43, + "Coding LOC": 22, + "Documentation LOC": 17, + "Structural Magnitude": 1.84, + "Control Flow Ratio": "44.4%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.182 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.09%", + "Error & Exception Exposure": "75.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", - "API Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "7.33%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.08%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 5, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 3, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 1, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, @@ -727752,13 +729883,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 1, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727775,11 +729906,11 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Pascal Case": 2, + "Design Upper Case": 1, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, @@ -727808,28 +729939,52 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy": { + } + } + }, + "cobol/zopeneditor-sample": { + "Directory Group Magnitude": 533.44, + "File Count": 8, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "33.02%", + "Error & Exception Exposure": "32.53%", + "Tech Debt Exposure": "24.6%", + "Testing Exposure": "21.15%", + "API Exposure": "0.62%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "37.03%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "75.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "29.34%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cobol/zopeneditor-sample/CUSTCOPY.cpy": { "1. Artifact Identity": { - "Filename": "hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", - "Language": "Groovy", + "Filename": "CUSTCOPY.cpy", + "Path": "cobol/zopeneditor-sample/CUSTCOPY.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3032.16, - "Y": -66.91, - "Z": -2462.75 + "X": 8064.72, + "Y": 72.16, + "Z": 6148.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727838,30 +729993,30 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 37, - "Coding LOC": 12, - "Documentation LOC": 23, - "Structural Magnitude": 15.24, + "Total LOC": 54, + "Coding LOC": 27, + "Documentation LOC": 26, + "Structural Magnitude": 0.78, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.185 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "8.04%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.84%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.08%", + "Documentation Exposure": "27.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -727869,7 +730024,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 0, - "Function Parameters": 3, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -727915,7 +730070,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 27, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -727965,28 +730120,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy": { + "cobol/zopeneditor-sample/DATETIME.cpy": { "1. Artifact Identity": { - "Filename": "hudson_tasks_Shell_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy", - "Language": "Groovy", + "Filename": "DATETIME.cpy", + "Path": "cobol/zopeneditor-sample/DATETIME.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3681.44, - "Y": 6.55, - "Z": -2952.19 + "X": 8239.82, + "Y": 77.7, + "Z": 5554.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -727995,37 +730150,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 50, - "Coding LOC": 23, - "Documentation LOC": 23, - "Structural Magnitude": 18.46, - "Control Flow Ratio": "71.4%", + "Total LOC": 19, + "Coding LOC": 10, + "Documentation LOC": 9, + "Structural Magnitude": 0.76, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.696 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "44.59%", - "Error & Exception Exposure": "79.58%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.53%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.76%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "66.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.44%", + "Documentation Exposure": "45.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 5, - "Sequential Logic Declarations": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -728034,7 +730189,7 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -728072,7 +730227,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728080,7 +730235,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 1, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -728089,12 +730244,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -728128,22 +730283,22 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy": { + "cobol/zopeneditor-sample/REPTTOTL.cpy": { "1. Artifact Identity": { - "Filename": "hudson_triggers_SlowTriggerAdminMonitor_message.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy", - "Language": "Groovy", + "Filename": "REPTTOTL.cpy", + "Path": "cobol/zopeneditor-sample/REPTTOTL.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3469.05, - "Y": -183.94, - "Z": -2033.97 + "X": 7829.58, + "Y": 130.26, + "Z": 5269.01 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728152,100 +730307,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 41, - "Documentation LOC": 0, - "Structural Magnitude": 17.72, - "Control Flow Ratio": "16.7%", + "Total LOC": 24, + "Coding LOC": 15, + "Documentation LOC": 9, + "Structural Magnitude": 0.87, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.171 + "Raw Cognitive Density": 0.6 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.97%", - "Error & Exception Exposure": "80.24%", - "Tech Debt Exposure": "95.2%", - "Testing Exposure": "2.6%", + "Cognitive Load Exposure": "30.12%", + "Error & Exception Exposure": "78.78%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "96.21%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "41.08%", + "Documentation Exposure": "58.61%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "table", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 20, - "End Line": 46 - }, - { - "Function Name": "div", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 11, - "End Line": 47 - }, - { - "Function Name": "form", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 12, - "End Line": 16 - }, - { - "Function Name": "button", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 15 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 10, - "Function Parameters": 16, - "Function/Method Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 3, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 2, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 2, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728270,7 +730384,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 33, + "Structural Space Indentations": 15, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728287,15 +730401,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728319,34 +730433,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.Util", - "hudson.triggers.SlowTriggerAdminMonitor", - "jenkins.model.Jenkins", - "org.apache.commons.jelly.tags.fmt.FmtTagLibrary" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy": { + "cobol/zopeneditor-sample/SAM1.cbl": { "1. Artifact Identity": { - "Filename": "hudson_util_JenkinsReloadFailed_index.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy", - "Language": "Groovy", + "Filename": "SAM1.cbl", + "Path": "cobol/zopeneditor-sample/SAM1.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -3474.61, - "Y": 0.76, - "Z": -3139.03 + "X": 7747.05, + "Y": 128.97, + "Z": 5685.36 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728355,61 +730464,262 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 14, - "Documentation LOC": 0, - "Structural Magnitude": 15.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 505, + "Coding LOC": 417, + "Documentation LOC": 52, + "Structural Magnitude": 340.74, + "Control Flow Ratio": "79.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.357 + "Raw Cognitive Density": 1.007 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.14%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "73.62%", + "Error & Exception Exposure": "84.91%", + "Tech Debt Exposure": "99.51%", + "Testing Exposure": "80.0%", + "API Exposure": "2.23%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "93.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.14%", + "Documentation Exposure": "12.84%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "100-PROCESS-TRANSACTIONS", + "Structural Impact": 24.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 22, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 261, + "End Line": 291 + }, + { + "Function Name": "710-READ-TRAN-FILE", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 11, + "Input Parameters": 0, + "Control Flow Ratio": "91.7%", + "Start Line": 388, + "End Line": 407 + }, + { + "Function Name": "210-PROCESS-ADD-TRAN", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 10, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 315, + "End Line": 333 + }, + { + "Function Name": "200-PROCESS-UPDATE-TRAN", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 293, + "End Line": 313 + }, + { + "Function Name": "REPORT-FILE", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 360, + "End Line": 386 + }, + { + "Function Name": "730-READ-CUSTOMER-FILE", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 423, + "End Line": 438 + }, + { + "Function Name": "740-WRITE-CUSTOUT-FILE", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 440, + "End Line": 455 + }, + { + "Function Name": "CURRENT-SECOND", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 0, + "Control Flow Ratio": "63.6%", + "Start Line": 232, + "End Line": 257 + }, + { + "Function Name": "220-PROCESS-DELETE-TRAN", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 335, + "End Line": 345 + }, + { + "Function Name": "720-POSITION-CUST-FILE", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 409, + "End Line": 416 + }, + { + "Function Name": "FILE-CONTROL", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 178, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 38, + "End Line": 215 + }, + { + "Function Name": "830-REPORT-TRAN-PROCESSED", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 471, + "End Line": 478 + }, + { + "Function Name": "721-COPY-RECORDS", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 418, + "End Line": 421 + }, + { + "Function Name": "000-MAIN", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 217, + "End Line": 231 + }, + { + "Function Name": "850-REPORT-TRAN-STATS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 480, + "End Line": 505 + }, + { + "Function Name": "299-REPORT-BAD-TRAN", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 347, + "End Line": 354 + }, + { + "Function Name": "800-INIT-REPORT", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 462, + "End Line": 469 + }, + { + "Function Name": "700-OPEN-FILES", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 359 + }, + { + "Function Name": "790-CLOSE-FILES", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 460 + }, + { + "Function Name": "CURRENT-SECOND", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 258, + "End Line": 259 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 102, + "Sequential Logic Declarations": 27, + "Function Parameters": 1, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 22, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 50, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 193, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -728420,27 +730730,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 12, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Resource Deallocation & Cleanup": 5, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 417, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 1, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 0, + "Regex Execution": 3, + "Time Date Logic": 5, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -728449,15 +730759,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 15, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Upper Case": 15, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 20, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728481,31 +730791,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "CUSTCOPY", + "TRANREC" ] }, - "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy": { + "cobol/zopeneditor-sample/SAM2.cbl": { "1. Artifact Identity": { - "Filename": "hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", - "Path": "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", - "Language": "Groovy", + "Filename": "SAM2.cbl", + "Path": "cobol/zopeneditor-sample/SAM2.cbl", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cbl)" }, "2. Topological Coordinates": { - "X": -4471.0, - "Y": -74.87, - "Z": -2414.31 + "X": 7530.13, + "Y": 148.97, + "Z": 5846.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728514,59 +730825,120 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, - "Coding LOC": 7, - "Documentation LOC": 0, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "20.0%", + "Total LOC": 159, + "Coding LOC": 119, + "Documentation LOC": 27, + "Structural Magnitude": 188.38, + "Control Flow Ratio": "84.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.857 + "Raw Cognitive Density": 1.246 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "87.9%", + "Error & Exception Exposure": "96.54%", + "Tech Debt Exposure": "97.32%", + "Testing Exposure": "80.0%", + "API Exposure": "2.73%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "20.14%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "100-VALIDATE-TRAN", + "Structural Impact": 27.0, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 24, + "Input Parameters": 0, + "Control Flow Ratio": "92.3%", + "Start Line": 72, + "End Line": 111 + }, + { + "Function Name": "200-PROCESS-TRAN", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 14, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 113, + "End Line": 141 + }, + { + "Function Name": "000-MAIN", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "88.9%", + "Start Line": 57, + "End Line": 70 + }, + { + "Function Name": "310-CRUNCH-LOOP", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 6, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 148, + "End Line": 159 + }, + { + "Function Name": "300-PROCESS-CPU-CRUNCH", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 143, + "End Line": 146 + }, + { + "Function Name": "TRAN-MSG", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 55 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 4, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 54, + "Sequential Logic Declarations": 10, + "Function Parameters": 1, + "Function/Method Declarations": 6, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 17, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 120, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728581,7 +730953,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -728591,14 +730963,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 119, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 1, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -728608,15 +730980,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -728640,31 +731012,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.views.ViewsTabBar" + "CUSTCOPY", + "TRANREC" ] }, - "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy": { + "cobol/zopeneditor-sample/SAM2PAR5.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "SAM2PAR5.cpy", + "Path": "cobol/zopeneditor-sample/SAM2PAR5.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3248.42, - "Y": -339.42, - "Z": -1846.71 + "X": 7550.2, + "Y": 244.12, + "Z": 5155.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728673,90 +731046,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 55, - "Coding LOC": 27, - "Documentation LOC": 23, - "Structural Magnitude": 10.94, - "Control Flow Ratio": "28.6%", - "Popularity Rank": 0, + "Total LOC": 11, + "Coding LOC": 2, + "Documentation LOC": 8, + "Structural Magnitude": 0.55, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.407 + "Raw Cognitive Density": 2.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "20.26%", - "Error & Exception Exposure": "75.93%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.52%", + "Testing Exposure": "0.31%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "70.33%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.13%", + "Documentation Exposure": "11.48%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "div", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 37, - "End Line": 50 - }, - { - "Function Name": "div", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 38, - "End Line": 46 - }, - { - "Function Name": "div", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 49 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 5, - "Function Parameters": 5, - "Function/Method Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728781,7 +731123,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 21, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728798,12 +731140,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -728830,31 +731172,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [ - "hudson.model.AdministrativeMonitor" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy": { + "cobol/zopeneditor-sample/SAM2PARM.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", - "Language": "Groovy", + "Filename": "SAM2PARM.cpy", + "Path": "cobol/zopeneditor-sample/SAM2PARM.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -4556.58, - "Y": 26.88, - "Z": -2638.12 + "X": 7659.46, + "Y": 165.94, + "Z": 6032.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728863,60 +731203,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 46, - "Coding LOC": 19, - "Documentation LOC": 19, - "Structural Magnitude": 5.28, - "Control Flow Ratio": "40.0%", + "Total LOC": 12, + "Coding LOC": 3, + "Documentation LOC": 8, + "Structural Magnitude": 0.58, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.368 + "Raw Cognitive Density": 1.667 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.85%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.48%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "20.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "40.12%", + "Documentation Exposure": "16.8%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Unknown_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 31, - "End Line": 39 - }, - { - "Function Name": "div", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 37 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, - "Function/Method Declarations": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -728929,14 +731248,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -728961,7 +731280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 14, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -728978,15 +731297,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729010,29 +731329,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "SAM2PAR5" + ] }, - "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy": { + "cobol/zopeneditor-sample/TRANREC.cpy": { "1. Artifact Identity": { - "Filename": "jenkins_management_ShutdownLink_index.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy", - "Language": "Groovy", + "Filename": "TRANREC.cpy", + "Path": "cobol/zopeneditor-sample/TRANREC.cpy", + "Language": "Cobol", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Folder Dominant Lang": "cobol", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -3929.32, - "Y": 86.23, - "Z": -2954.64 + "X": 7331.65, + "Y": 247.2, + "Z": 5583.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729041,20 +731362,20 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 32, - "Coding LOC": 25, - "Documentation LOC": 0, - "Structural Magnitude": 15.5, - "Control Flow Ratio": "37.5%", - "Popularity Rank": 0, + "Total LOC": 39, + "Coding LOC": 30, + "Documentation LOC": 8, + "Structural Magnitude": 0.78, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.32 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.19%", - "Error & Exception Exposure": "78.58%", + "Cognitive Load Exposure": "49.52%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", @@ -729064,19 +731385,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "55.53%", + "Documentation Exposure": "42.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -729086,14 +731407,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729107,7 +731428,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 4, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -729118,7 +731439,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 30, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729135,12 +731456,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 3, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 3, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -729167,31 +731488,53 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, - "9. Extracted Dependencies": [ - "jenkins.management.Messages" - ] - }, - "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy": { + "9. Extracted Dependencies": [] + } + } + }, + "dockerfile/moby/builder/remotecontext/internal/tarsum": { + "Directory Group Magnitude": 508.82, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "26.17%", + "Error & Exception Exposure": "72.22%", + "Tech Debt Exposure": "57.45%", + "Testing Exposure": "2.37%", + "API Exposure": "4.44%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "80.0%", + "Commented Logic Exposure": "1.57%", + "Specification Exposure": "96.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "11.44%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_ArtifactManagerConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "builder_context.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -4221.14, - "Y": -57.32, - "Z": -2660.57 + "X": -6268.32, + "Y": -220.38, + "Z": 7543.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729200,52 +731543,63 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 36, - "Coding LOC": 9, - "Documentation LOC": 23, - "Structural Magnitude": 17.68, - "Control Flow Ratio": "66.7%", + "Total LOC": 22, + "Coding LOC": 12, + "Documentation LOC": 7, + "Structural Magnitude": 18.34, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.111 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "88.26%", + "Error & Exception Exposure": "83.38%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.38%", - "API Exposure": "0.0%", + "Testing Exposure": "2.05%", + "API Exposure": "6.63%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "60.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.17%", + "Documentation Exposure": "9.54%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Remove", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 13, + "End Line": 21 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 3, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -729273,11 +731627,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5, + "Structural Tab Indentations": 7, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729294,12 +731648,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -729333,22 +731687,22 @@ }, "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", - "Language": "Groovy", + "Filename": "fileinfosums.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3170.72, - "Y": 1.65, - "Z": -2907.95 + "X": -6514.74, + "Y": -198.77, + "Z": 6717.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729357,59 +731711,200 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 10, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "50.0%", + "Total LOC": 136, + "Coding LOC": 93, + "Documentation LOC": 21, + "Structural Magnitude": 103.96, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.944 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "89.72%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "37.64%", + "Error & Exception Exposure": "87.7%", + "Tech Debt Exposure": "98.11%", + "Testing Exposure": "2.55%", + "API Exposure": "6.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "GetFile", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 43, + "End Line": 53 + }, + { + "Function Name": "GetAllFile", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 56, + "End Line": 64 + }, + { + "Function Name": "GetDuplicatePaths", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 67, + "End Line": 78 + }, + { + "Function Name": "Less", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 123, + "End Line": 128 + }, + { + "Function Name": "Less", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 110, + "End Line": 115 + }, + { + "Function Name": "SortBySums", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 97, + "End Line": 104 + }, + { + "Function Name": "Less", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 133, + "End Line": 135 + }, + { + "Function Name": "Swap", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 84 + }, + { + "Function Name": "Name", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 27, + "End Line": 29 + }, + { + "Function Name": "Sum", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 31, + "End Line": 33 + }, + { + "Function Name": "Pos", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 37 + }, + { + "Function Name": "Len", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 81 + }, + { + "Function Name": "SortByPos", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 87, + "End Line": 89 + }, + { + "Function Name": "SortByNames", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 92, + "End Line": 94 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Control Flow Branches": 18, + "Sequential Logic Declarations": 27, + "Function Parameters": 14, + "Function/Method Declarations": 14, + "Class/Entity Declarations": 5, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 40, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 15, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 14, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729419,7 +731914,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -729430,11 +731925,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 16, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Tab Indentations": 55, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729451,15 +731946,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729483,29 +731978,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 2, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "runtime", + "sort", + "strings" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CauseOfInterruption_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy", - "Language": "Groovy", + "Filename": "tarsum.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3152.06, - "Y": -248.87, - "Z": -2012.19 + "X": -6552.92, + "Y": -210.0, + "Z": 7451.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729514,59 +732013,190 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 2, - "Documentation LOC": 1, - "Structural Magnitude": 15.18, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 299, + "Coding LOC": 224, + "Documentation LOC": 39, + "Structural Magnitude": 246.18, + "Control Flow Ratio": "45.3%", + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.5 + "Raw Cognitive Density": 1.283 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "49.17%", + "Error & Exception Exposure": "94.15%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.31%", - "API Exposure": "0.0%", + "Testing Exposure": "2.45%", + "API Exposure": "2.18%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "13.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.28%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Read", + "Structural Impact": 39.9, + "Lines of Code (LOC)": 91, + "Control Flow Branches": 24, + "Input Parameters": 1, + "Control Flow Ratio": "58.5%", + "Start Line": 191, + "End Line": 281 + }, + { + "Function Name": "encodeHeader", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 157, + "End Line": 169 + }, + { + "Function Name": "NewTarSumForLabel", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "42.9%", + "Start Line": 64, + "End Line": 83 + }, + { + "Function Name": "Sum", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 283, + "End Line": 294 + }, + { + "Function Name": "initTarSum", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 171, + "End Line": 189 + }, + { + "Function Name": "NewTarSumHash", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 53, + "End Line": 61 + }, + { + "Function Name": "NewTarSum", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 47, + "End Line": 49 + }, + { + "Function Name": "NewTHash", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 133 + }, + { + "Function Name": "Hash", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 118 + }, + { + "Function Name": "Version", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 + }, + { + "Function Name": "Name", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 154 + }, + { + "Function Name": "Hash", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 155, + "End Line": 155 + }, + { + "Function Name": "GetSums", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 296, + "End Line": 298 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 39, + "Sequential Logic Declarations": 47, + "Function Parameters": 13, + "Function/Method Declarations": 13, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 17, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "I/O and Network Boundaries": 8, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 141, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 15, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 10, + "Global State Dependencies": 2, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729575,22 +732205,22 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 2, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 62, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 182, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -729608,10 +732238,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, + "Core Var Decl": 9, + "Design Camel Case": 4, + "Design Snake Case": 4, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -729640,29 +732270,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 14, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "archive/tar", + "bytes", + "compress/gzip", + "crypto", + "crypto/sha256", + "encoding/hex", + "errors", + "fmt", + "hash", + "io", + "path", + "sha256", + "sha512", + "strings" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", - "Language": "Groovy", + "Filename": "versioning.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -3743.74, - "Y": -232.66, - "Z": -1778.07 + "X": -6765.45, + "Y": -122.11, + "Z": 7372.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729671,59 +732316,150 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, - "Coding LOC": 7, - "Documentation LOC": 1, - "Structural Magnitude": 13.64, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 120, + "Documentation LOC": 24, + "Structural Magnitude": 135.8, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.867 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "33.8%", + "Error & Exception Exposure": "95.87%", + "Tech Debt Exposure": "92.41%", + "Testing Exposure": "2.45%", + "API Exposure": "5.05%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "7.86%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.02%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "v1TarHeaderSelect", + "Structural Impact": 13.1, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 116, + "End Line": 151 + }, + { + "Function Name": "WriteV1Header", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 26, + "End Line": 30 + }, + { + "Function Name": "GetVersions", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 45, + "End Line": 51 + }, + { + "Function Name": "VersionLabelForChecksum", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 35, + "End Line": 42 + }, + { + "Function Name": "GetVersionFromTarsum", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 71, + "End Line": 78 + }, + { + "Function Name": "getTarHeaderSelector", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 159, + "End Line": 166 + }, + { + "Function Name": "v0TarHeaderSelect", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 114 + }, + { + "Function Name": "selectHeaders", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 97 + }, + { + "Function Name": "String", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 68 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 2, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 14, + "Sequential Logic Declarations": 21, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 80, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 13, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 3, + "Global State Dependencies": 1, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -729733,22 +732469,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, + "Explicit Type Casts": 2, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 2, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 21, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Tab Indentations": 87, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729765,15 +732501,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, - "Design Pascal Case": 0, + "Core Var Decl": 15, + "Design Camel Case": 8, + "Design Snake Case": 4, + "Design Pascal Case": 3, "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Short Vars": 2, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729797,29 +732533,39 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 9, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 5, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "archive/tar", + "errors", + "io", + "sort", + "strconv", + "strings", + "tarsum", + "tarsum.dev", + "tarsum.v1" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy": { + "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "writercloser.go", + "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go", + "Language": "Go", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "groovy", + "Indentation Style": "Tabs", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "go", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -4413.61, - "Y": -155.16, - "Z": -1850.48 + "X": -6982.78, + "Y": -77.95, + "Z": 7076.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729828,52 +732574,73 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 5, + "Total LOC": 23, + "Coding LOC": 17, "Documentation LOC": 0, - "Structural Magnitude": 12.6, + "Structural Magnitude": 4.54, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "5.22%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.77%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "96.71%", + "Testing Exposure": "2.36%", + "API Exposure": "2.3%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "33.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.36%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Close", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 18 + }, + { + "Function Name": "Flush", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 22 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -729900,12 +732667,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Tab Indentations": 6, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -729922,15 +732689,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -729956,69 +732723,94 @@ "8. Dependency Network": { "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "io" ] - }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy": { + } + } + }, + "groovy/jenkins_view_groovy": { + "Directory Group Magnitude": 487.3, + "File Count": 30, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "96.7%", + "Static: Literature & Documentation": "3.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "10.19%", + "Error & Exception Exposure": "23.62%", + "Tech Debt Exposure": "10.49%", + "Testing Exposure": "4.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "10.55%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "74.0%", + "Instability Exposure": "48.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.12%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "groovy/jenkins_view_groovy/LICENSE.txt": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalPluginConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy", - "Language": "Groovy", + "Filename": "LICENSE.txt", + "Path": "groovy/jenkins_view_groovy/LICENSE.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -3509.71, - "Y": -290.22, - "Z": -1838.66 + "X": 5619.33, + "Y": -266.49, + "Z": -6270.6 }, "3. Architectural Profile": { - "Repository Archetype": "Unclassified", + "Repository Archetype": "Static: Literature & Documentation", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": null, + "File Archetype": "N/A", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 13, - "Documentation LOC": 1, - "Structural Magnitude": 15.26, - "Control Flow Ratio": "25.0%", + "Total LOC": 23, + "Coding LOC": 0, + "Documentation LOC": 17, + "Structural Magnitude": 1.0, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.462 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.99%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "86.67%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "62.85%", - "Hardcoded Payload Artifacts": "0.0%" + "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", + "Error & Exception Exposure": "[UNSCANNED - NO DATA]", + "Tech Debt Exposure": "[UNSCANNED - NO DATA]", + "Testing Exposure": "[UNSCANNED - NO DATA]", + "API Exposure": "[UNSCANNED - NO DATA]", + "Concurrency Exposure": "[UNSCANNED - NO DATA]", + "State Flux Exposure": "[UNSCANNED - NO DATA]", + "Commented Logic Exposure": "[UNSCANNED - NO DATA]", + "Specification Exposure": "[UNSCANNED - NO DATA]", + "Instability Exposure": "[UNSCANNED - NO DATA]", + "Volatility Exposure": "[UNSCANNED - NO DATA]", + "Documentation Exposure": "[UNSCANNED - NO DATA]", + "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -730032,14 +732824,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730064,7 +732856,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 8, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730081,12 +732873,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730113,31 +732905,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "hudson.Functions" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy": { + "groovy/jenkins_view_groovy/Jenkinsfile": { "1. Artifact Identity": { - "Filename": "jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Filename": "Jenkinsfile", + "Path": "groovy/jenkins_view_groovy/Jenkinsfile", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .groovy)" + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (Jenkinsfile)" }, "2. Topological Coordinates": { - "X": -2843.62, - "Y": -50.2, - "Z": -2783.45 + "X": 4796.64, + "Y": -119.0, + "Z": -6799.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730146,82 +732936,172 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 3.84, - "Control Flow Ratio": "0.0%", + "Total LOC": 257, + "Coding LOC": 208, + "Documentation LOC": 32, + "Structural Magnitude": 95.26, + "Control Flow Ratio": "35.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.417 + "Raw Cognitive Density": 0.279 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.01%", + "Cognitive Load Exposure": "12.44%", + "Error & Exception Exposure": "60.06%", + "Tech Debt Exposure": "19.49%", + "Testing Exposure": "80.0%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "50.38%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "60.39%", + "Documentation Exposure": "13.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "div", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Function Name": "node", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 136, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 79, + "End Line": 214 + }, + { + "Function Name": "stage", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 73, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 141, + "End Line": 213 + }, + { + "Function Name": "stage", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 89, + "End Line": 138 + }, + { + "Function Name": "recordIssues", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "100.0%", + "Start Line": 155, + "End Line": 195 + }, + { + "Function Name": "stage", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "11.1%", + "Start Line": 20, + "End Line": 57 + }, + { + "Function Name": "node", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "11.1%", + "Start Line": 22, + "End Line": 55 + }, + { + "Function Name": "node", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 7, - "End Line": 17 + "Start Line": 228, + "End Line": 249 + }, + { + "Function Name": "withChecks", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 231, + "End Line": 238 + }, + { + "Function Name": "dir", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 197, + "End Line": 204 + }, + { + "Function Name": "dir", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 94, + "End Line": 98 }, { - "Function Name": "div", + "Function Name": "stage", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 13 + "Start Line": 82, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 4, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "Control Flow Branches": 16, + "Sequential Logic Declarations": 29, + "Function Parameters": 36, + "Function/Method Declarations": 8, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 11, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 2, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 4, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 2, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -730244,7 +733124,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 7, + "Structural Space Indentations": 190, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730261,12 +733141,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, - "Design Snake Case": 1, + "Core Var Decl": 23, + "Design Camel Case": 13, + "Design Snake Case": 10, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730293,19 +733173,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "jenkins.model.ProjectNamingStrategy" - ] + "9. Extracted Dependencies": [] }, - "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy": { + "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_InterruptedBuildAction_summary.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy", + "Filename": "hudson_PluginWrapper_uninstall.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_PluginWrapper_uninstall.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730315,9 +733193,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -4245.7, - "Y": 143.99, - "Z": -3089.82 + "X": 4253.01, + "Y": -65.57, + "Z": -6270.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730326,37 +733204,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 10, - "Coding LOC": 7, + "Total LOC": 21, + "Coding LOC": 17, "Documentation LOC": 0, - "Structural Magnitude": 13.64, + "Structural Magnitude": 15.34, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.714 + "Raw Cognitive Density": 0.294 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "13.9%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.07%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "46.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.48%", + "Documentation Exposure": "66.88%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 3, + "Sequential Logic Declarations": 5, "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -730371,14 +733249,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730403,7 +733281,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730420,12 +733298,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -730452,17 +733330,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "jenkins.model.Jenkins" + ] }, - "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_JenkinsLocationConfiguration_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Filename": "hudson_model_AllView_noJob.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_AllView_noJob.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730472,9 +733352,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -4098.13, - "Y": -153.54, - "Z": -1968.0 + "X": 4319.59, + "Y": -45.97, + "Z": -6584.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730483,44 +733363,44 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 15, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 15.22, - "Control Flow Ratio": "25.0%", + "Total LOC": 143, + "Coding LOC": 120, + "Documentation LOC": 2, + "Structural Magnitude": 17.4, + "Control Flow Ratio": "22.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.545 + "Raw Cognitive Density": 0.15 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "8.32%", + "Error & Exception Exposure": "69.07%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.69%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "21.18%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 46, + "Function Parameters": 45, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, @@ -730535,7 +733415,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730560,7 +733440,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 6, + "Structural Space Indentations": 108, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730577,13 +733457,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, - "Design Camel Case": 0, + "Core Var Decl": 6, + "Design Camel Case": 5, "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -730609,19 +733489,22 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "hudson.Functions" + "hudson.model.Computer", + "hudson.model.Item", + "hudson.model.Job", + "jenkins.model.Jenkins" ] }, - "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Filename": "hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_EnvironmentContributor_EnvVarsHtml_index.groovy", "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -730631,9 +733514,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -3770.76, - "Y": 72.92, - "Z": -3332.29 + "X": 4468.17, + "Y": 104.72, + "Z": -7644.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730642,39 +733525,50 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 17, - "Coding LOC": 11, - "Documentation LOC": 0, - "Structural Magnitude": 15.22, - "Control Flow Ratio": "25.0%", + "Total LOC": 20, + "Coding LOC": 14, + "Documentation LOC": 1, + "Structural Magnitude": 2.08, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.545 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.69%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.23%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "73.33%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "56.69%", + "Documentation Exposure": "66.03%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 10, + "End Line": 17 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 3, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 6, + "Function Parameters": 3, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -730687,14 +733581,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 5, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -730719,7 +733613,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730736,15 +733630,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 1, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 1, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -730768,29 +733662,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.model.EnvironmentContributor", + "hudson.scm.SCM" + ] }, - "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy": { + "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy": { "1. Artifact Identity": { - "Filename": "jenkins_mvn_GlobalMavenConfig_config.groovy", - "Path": "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy", + "Filename": "hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_UpdateCenter_DownloadJob_SuccessButRequiresRestart_status.groovy", "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "groovy", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -2832.76, - "Y": -138.99, - "Z": -2328.36 + "X": 3908.95, + "Y": 56.25, + "Z": -6834.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730799,30 +733696,30 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 9, - "Coding LOC": 6, - "Documentation LOC": 0, - "Structural Magnitude": 13.12, + "Total LOC": 30, + "Coding LOC": 4, + "Documentation LOC": 23, + "Structural Magnitude": 12.08, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.25 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.92%", + "Testing Exposure": "0.61%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "40.0%", + "Specification Exposure": "26.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.55%", + "Documentation Exposure": "15.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -730830,7 +733727,7 @@ "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, "Sequential Logic Declarations": 2, - "Function Parameters": 0, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -730876,7 +733773,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -730931,88 +733828,63 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "typescript/playwright": { - "Directory Group Magnitude": 563.96, - "File Count": 11, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "63.6%", - "Static: Literature & Documentation": "36.4%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "44.71%", - "Error & Exception Exposure": "58.03%", - "Tech Debt Exposure": "38.98%", - "Testing Exposure": "36.78%", - "API Exposure": "2.82%", - "Concurrency Exposure": "48.67%", - "State Flux Exposure": "45.45%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "63.64%", - "Instability Exposure": "31.82%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.88%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "typescript/playwright/README.md": { + }, + "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy": { "1. Artifact Identity": { - "Filename": "README.md", - "Path": "typescript/playwright/README.md", - "Language": "Markdown", + "Filename": "hudson_model_UsageStatistics_global.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_model_UsageStatistics_global.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3075.65, - "Y": -338.21, - "Z": 7200.99 + "X": 5407.21, + "Y": -187.04, + "Z": -6452.44 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 319, - "Coding LOC": 0, - "Documentation LOC": 215, - "Structural Magnitude": 6.38, - "Control Flow Ratio": "0.0%", + "Total LOC": 22, + "Coding LOC": 18, + "Documentation LOC": 0, + "Structural Magnitude": 15.36, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "26.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "65.28%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731033,7 +733905,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731058,7 +733930,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731075,19 +733947,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, - "Instructional Code Examples": 44, + "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 22, - "Hyperlinked Literature References": 40, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -731107,69 +733979,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions", + "hudson.model.UsageStatistics", + "jenkins.security.FIPS140" + ] }, - "typescript/playwright/SECURITY.md": { + "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy": { "1. Artifact Identity": { - "Filename": "SECURITY.md", - "Path": "typescript/playwright/SECURITY.md", - "Language": "Markdown", + "Filename": "hudson_security_GlobalSecurityConfiguration_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_GlobalSecurityConfiguration_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3106.81, - "Y": -406.69, - "Z": 7706.57 + "X": 5252.49, + "Y": -40.13, + "Z": -6980.08 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 0, - "Documentation LOC": 24, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 70, + "Coding LOC": 58, + "Documentation LOC": 0, + "Structural Magnitude": 16.16, + "Control Flow Ratio": "41.2%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.207 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "10.23%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "32.78%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 10, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731183,14 +734059,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731215,7 +734091,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 47, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731232,19 +734108,19 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 4, - "Hyperlinked Literature References": 12, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -731264,73 +734140,79 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 5, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions", + "hudson.markup.MarkupFormatterDescriptor", + "hudson.model.Descriptor", + "hudson.security.AuthorizationStrategy", + "hudson.security.SecurityRealm" + ] }, - "typescript/playwright/SUPPORT.md": { + "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy": { "1. Artifact Identity": { - "Filename": "SUPPORT.md", - "Path": "typescript/playwright/SUPPORT.md", - "Language": "Markdown", + "Filename": "hudson_security_LegacySecurityRealm_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_LegacySecurityRealm_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2077.97, - "Y": -192.07, - "Z": 7795.7 + "X": 4670.85, + "Y": -181.04, + "Z": -6038.06 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 18, - "Coding LOC": 0, - "Documentation LOC": 10, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 28, + "Documentation LOC": 0, + "Structural Magnitude": 15.56, + "Control Flow Ratio": "40.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.321 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "15.26%", + "Error & Exception Exposure": "87.13%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "52.08%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 4, + "Sequential Logic Declarations": 6, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, @@ -731340,14 +734222,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731372,7 +734254,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 21, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731389,18 +734271,18 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Core Var Decl": 2, + "Design Camel Case": 1, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 3, + "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -731421,69 +734303,73 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 3, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.PluginWrapper", + "hudson.model.UnprotectedRootAction", + "jenkins.model.Jenkins" + ] }, - "typescript/playwright/NOTICE": { + "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "NOTICE", - "Path": "typescript/playwright/NOTICE", - "Language": "Plaintext", + "Filename": "hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_security_csrf_GlobalCrumbIssuerConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (NOTICE)" + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2915.07, - "Y": -252.8, - "Z": 7050.15 + "X": 5059.16, + "Y": 71.52, + "Z": -7234.62 }, "3. Architectural Profile": { - "Repository Archetype": "Static: Literature & Documentation", + "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "N/A", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 4, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 20, + "Coding LOC": 16, + "Documentation LOC": 0, + "Structural Magnitude": 15.32, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.5 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "[UNSCANNED - NO DATA]", - "Error & Exception Exposure": "[UNSCANNED - NO DATA]", - "Tech Debt Exposure": "[UNSCANNED - NO DATA]", - "Testing Exposure": "[UNSCANNED - NO DATA]", - "API Exposure": "[UNSCANNED - NO DATA]", - "Concurrency Exposure": "[UNSCANNED - NO DATA]", - "State Flux Exposure": "[UNSCANNED - NO DATA]", - "Commented Logic Exposure": "[UNSCANNED - NO DATA]", - "Specification Exposure": "[UNSCANNED - NO DATA]", - "Instability Exposure": "[UNSCANNED - NO DATA]", - "Volatility Exposure": "[UNSCANNED - NO DATA]", - "Documentation Exposure": "[UNSCANNED - NO DATA]", - "Hardcoded Payload Artifacts": "[UNSCANNED - NO DATA]" + "Cognitive Load Exposure": "26.89%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "68.52%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 1, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -731497,14 +734383,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731529,7 +734415,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -731546,12 +734432,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -731578,81 +734464,83 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.security.csrf.CrumbIssuer" + ] }, - "typescript/playwright/api.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy": { "1. Artifact Identity": { - "Filename": "api.ts", - "Path": "typescript/playwright/api.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_ArtifactArchiver_help-defaultExcludes.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2463.87, - "Y": -272.98, - "Z": 7965.4 + "X": 5480.53, + "Y": -120.37, + "Z": -6840.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 49, - "Coding LOC": 32, - "Documentation LOC": 15, - "Structural Magnitude": 4.86, + "Total LOC": 36, + "Coding LOC": 12, + "Documentation LOC": 23, + "Structural Magnitude": 15.24, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.094 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.64%", - "Error & Exception Exposure": "71.09%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "17.88%", - "Concurrency Exposure": "35.51%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "100.0%", + "Documentation Exposure": "34.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 36, - "Function Parameters": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 32, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 1, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, @@ -731661,7 +734549,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 32, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -731686,11 +734574,11 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, @@ -731735,703 +734623,121 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 31, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "./android", - "./browser", - "./browserContext", - "./browserType", - "./cdpSession", - "./clock", - "./consoleMessage", - "./coverage", - "./debugger", - "./dialog", - "./disposable", - "./download", - "./electron", - "./elementHandle", - "./errors", - "./fetch", - "./fileChooser", - "./frame", - "./input", - "./jsHandle", - "./locator", - "./network", - "./page", - "./playwright", - "./screencast", - "./selectors", - "./tracing", - "./types", - "./video", - "./webError", - "./worker" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/bidiConnection.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy": { "1. Artifact Identity": { - "Filename": "bidiConnection.ts", - "Path": "typescript/playwright/bidiConnection.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_Fingerprinter_help-defaultExcludes.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "EventEmitter", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2134.16, - "Y": -157.85, - "Z": 7523.62 + "X": 4386.96, + "Y": -167.98, + "Z": -5886.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 261, - "Coding LOC": 204, - "Documentation LOC": 27, - "Structural Magnitude": 31.55, - "Control Flow Ratio": "42.2%", + "Total LOC": 37, + "Coding LOC": 12, + "Documentation LOC": 23, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.045 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.57%", - "Error & Exception Exposure": "99.15%", - "Tech Debt Exposure": "95.32%", - "Testing Exposure": "80.0%", - "API Exposure": "1.45%", - "Concurrency Exposure": "99.88%", - "State Flux Exposure": "100.0%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "34.08%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_dispatchMessage", - "Structural Impact": 38.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 24, - "Input Parameters": 1, - "Control Flow Ratio": "82.8%", - "Start Line": 70, - "End Line": 122 - }, - { - "Function Name": "dispatchMessage", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 238, - "End Line": 259 - }, - { - "Function Name": "send", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 193, - "End Line": 205 - }, - { - "Function Name": "sendMayFail", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 207, - "End Line": 209 - }, - { - "Function Name": "dispose", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 219, - "End Line": 232 - }, - { - "Function Name": "_onClose", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 124, - "End Line": 131 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 59 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 169, - "End Line": 181 - }, - { - "Function Name": "close", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 137, - "End Line": 140 - }, - { - "Function Name": "createMainFrameBrowsingContextSession", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 146 - }, - { - "Function Name": "rawSend", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 68 - }, - { - "Function Name": "addFrameBrowsingContext", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 183, - "End Line": 186 - }, - { - "Function Name": "removeFrameBrowsingContext", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 188, - "End Line": 191 - }, - { - "Function Name": "hasCallback", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 236 - }, - { - "Function Name": "nextMessageId", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 63 - }, - { - "Function Name": "isClosed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 135 - }, - { - "Function Name": "markAsCrashed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 213 - }, - { - "Function Name": "isDisposed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 217 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 57, - "Sequential Logic Declarations": 78, - "Function Parameters": 33, - "Function/Method Declarations": 18, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 20, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 182, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 25, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 5, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 23, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 9, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 11, - "Dependency Injection Constructs": 5, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 9, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 25, - "Resource Deallocation & Cleanup": 11, - "Private / Encapsulated Scopes": 12, - "Event Listeners & Subscribers": 3, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 187, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 1, - "Regex Execution": 0, - "Time Date Logic": 0, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 25, - "Design Camel Case": 3, - "Design Snake Case": 16, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 1, - "Design Long Vars": 2, - "Duplicate Logic": 0, - "Orphaned Logic": 7, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 0, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 8, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../helper", - "../protocolError", - "../transport", - "../types", - "../utils/debugLogger", - "./third_party/bidiCommands", - "./third_party/bidiProtocol", - "events" - ] - }, - "typescript/playwright/connection.ts": { - "1. Artifact Identity": { - "Filename": "connection.ts", - "Path": "typescript/playwright/connection.ts", - "Language": "Typescript", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "ChannelOwner, EventEmitter", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2684.85, - "Y": -180.49, - "Z": 7024.7 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 353, - "Coding LOC": 304, - "Documentation LOC": 20, - "Structural Magnitude": 48.63, - "Control Flow Ratio": "49.4%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.44 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.6%", - "Error & Exception Exposure": "95.94%", - "Tech Debt Exposure": "89.91%", - "Testing Exposure": "80.0%", - "API Exposure": "0.16%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_createRemoteObject", - "Structural Impact": 159.8, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 68, - "Input Parameters": 4, - "Control Flow Ratio": "64.2%", - "Start Line": 232, - "End Line": 342 - }, - { - "Function Name": "sendMessageToServer", - "Structural Impact": 41.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 17, - "Input Parameters": 4, - "Control Flow Ratio": "68.0%", - "Start Line": 127, - "End Line": 149 - }, - { - "Function Name": "dispatch", - "Structural Impact": 22.3, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "65.0%", - "Start Line": 159, - "End Line": 208 - }, - { - "Function Name": "_tChannelImplFromWire", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "85.7%", - "Start Line": 220, - "End Line": 230 - }, - { - "Function Name": "constructor", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 84, - "End Line": 90 - }, - { - "Function Name": "close", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 210, - "End Line": 218 - }, - { - "Function Name": "formatCallLog", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 345, - "End Line": 352 - }, - { - "Function Name": "setIsTracing", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 125 - }, - { - "Function Name": "onmessage", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "16.7%", - "Start Line": 68, - "End Line": 81 - }, - { - "Function Name": "_validatorFromWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 151, - "End Line": 157 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 52, - "End Line": 54 - }, - { - "Function Name": "getObjectWithKnownName", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "initialize", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 61 - }, - { - "Function Name": "markAsRemote", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 94 - }, - { - "Function Name": "isRemote", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 98 - }, - { - "Function Name": "useRawBuffers", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 102 - }, - { - "Function Name": "rawBuffers", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "localUtils", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 110 - }, - { - "Function Name": "initializePlaywright", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 112, - "End Line": 114 - }, - { - "Function Name": "isUnderTest", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 156 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 116, - "Sequential Logic Declarations": 119, - "Function Parameters": 30, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 13, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 138, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 58, - "UI / View Layer Components": 4, - "Closures and Anonymous Functions": 4, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 6, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 34, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 4, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 43, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 10, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 20, - "Resource Deallocation & Cleanup": 3, - "Private / Encapsulated Scopes": 14, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 259, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 3, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, + "Serialization Parsing": 0, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -732442,22 +734748,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 54, - "Design Camel Case": 1, - "Design Snake Case": 49, + "Core Var Decl": 0, + "Design Camel Case": 0, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 1, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 9, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 1, + "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -732474,350 +734780,115 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 32, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "../protocol/validator", - "../utils/isomorphic/stackTrace", - "./android", - "./artifact", - "./browser", - "./browserContext", - "./browserType", - "./cdpSession", - "./channelOwner", - "./clientInstrumentation", - "./debugger", - "./dialog", - "./disposable", - "./electron", - "./elementHandle", - "./errors", - "./eventEmitter", - "./fetch", - "./frame", - "./jsHandle", - "./jsonPipe", - "./localUtils", - "./network", - "./page", - "./platform", - "./playwright", - "./stream", - "./tracing", - "./types", - "./worker", - "./writableStream", - "@protocol/channels" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/crConnection.ts": { + "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy": { "1. Artifact Identity": { - "Filename": "crConnection.ts", - "Path": "typescript/playwright/crConnection.ts", - "Language": "Typescript", + "Filename": "hudson_tasks_Shell_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_tasks_Shell_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "SdkObject", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2834.21, - "Y": -329.2, - "Z": 7886.01 + "X": 4580.34, + "Y": -115.23, + "Z": -6530.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 240, - "Coding LOC": 186, - "Documentation LOC": 22, - "Structural Magnitude": 39.53, - "Control Flow Ratio": "38.8%", + "Total LOC": 50, + "Coding LOC": 23, + "Documentation LOC": 23, + "Structural Magnitude": 18.46, + "Control Flow Ratio": "71.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.96 + "Raw Cognitive Density": 0.696 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "94.61%", - "Error & Exception Exposure": "99.52%", - "Tech Debt Exposure": "58.0%", - "Testing Exposure": "80.0%", - "API Exposure": "2.03%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", + "Cognitive Load Exposure": "44.59%", + "Error & Exception Exposure": "79.58%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.3%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "95.76%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "32.44%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_onMessage", - "Structural Impact": 20.8, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 13, - "Input Parameters": 1, - "Control Flow Ratio": "92.9%", - "Start Line": 152, - "End Line": 172 - }, - { - "Function Name": "send", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 136, - "End Line": 146 - }, - { - "Function Name": "_onMessage", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 77, - "End Line": 84 - }, - { - "Function Name": "_sendMayFail", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 148, - "End Line": 150 - }, - { - "Function Name": "constructor", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 117, - "End Line": 124 - }, - { - "Function Name": "_rawSend", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 67, - "End Line": 75 - }, - { - "Function Name": "send", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 217, - "End Line": 219 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 208, - "End Line": 215 - }, - { - "Function Name": "createChildSession", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 130, - "End Line": 134 - }, - { - "Function Name": "_send", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 225, - "End Line": 227 - }, - { - "Function Name": "detach", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 174, - "End Line": 184 - }, - { - "Function Name": "dispose", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 186, - "End Line": 196 - }, - { - "Function Name": "_onClose", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 86, - "End Line": 93 - }, - { - "Function Name": "constructor", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 65 - }, - { - "Function Name": "close", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 95, - "End Line": 98 - }, - { - "Function Name": "detach", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 223 - }, - { - "Function Name": "attachToTarget", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 229, - "End Line": 232 - }, - { - "Function Name": "createBrowserSession", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 100, - "End Line": 103 - }, - { - "Function Name": "_onClose", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 234, - "End Line": 238 - }, - { - "Function Name": "_markAsCrashed", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 128 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 60, - "Function Parameters": 33, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 9, + "Control Flow Branches": 5, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 6, - "State Mutations / Variable Reassignments": 173, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 121, - "UI / View Layer Components": 4, - "Closures and Anonymous Functions": 4, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 9, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 11, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 6, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 8, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 3, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 20, - "Resource Deallocation & Cleanup": 9, - "Private / Encapsulated Scopes": 15, - "Event Listeners & Subscribers": 1, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 163, + "Structural Space Indentations": 17, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -732834,15 +734905,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 1, - "Design Snake Case": 10, - "Design Pascal Case": 5, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -732850,7 +734921,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -732866,2218 +734937,134 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "../../utils", - "../helper", - "../instrumentation", - "../protocolError", - "../transport", - "../types", - "../utils/debugLogger", - "./protocol", - "@protocol/progress" - ] - }, - "typescript/playwright/dispatcher.ts": { - "1. Artifact Identity": { - "Filename": "dispatcher.ts", - "Path": "typescript/playwright/dispatcher.ts", - "Language": "Typescript", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "EventEmitter implements channels, Dispatcher", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2365.55, - "Y": -216.96, - "Z": 7618.62 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 415, - "Coding LOC": 339, - "Documentation LOC": 25, - "Structural Magnitude": 58.8, - "Control Flow Ratio": "48.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 2.405 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.92%", - "Error & Exception Exposure": "99.38%", - "Tech Debt Exposure": "89.53%", - "Testing Exposure": "80.0%", - "API Exposure": "1.19%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "dispatch", - "Structural Impact": 53.5, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 33, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 299, - "End Line": 407 - }, - { - "Function Name": "constructor", - "Structural Impact": 20.7, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "63.6%", - "Start Line": 62, - "End Line": 83 - }, - { - "Function Name": "_tChannelImplFromWire", - "Structural Impact": 18.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 245, - "End Line": 256 - }, - { - "Function Name": "_disposeRecursively", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 142, - "End Line": 163 - }, - { - "Function Name": "_tChannelImplToWire", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 258, - "End Line": 265 - }, - { - "Function Name": "maybeDisposeStaleDispatchers", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 283, - "End Line": 297 - }, - { - "Function Name": "_runCommand", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 103, - "End Line": 111 - }, - { - "Function Name": "maxDispatchersForBucket", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 42, - "End Line": 47 - }, - { - "Function Name": "_dispatchEvent", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 113, - "End Line": 121 - }, - { - "Function Name": "_doSlowMo", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 409, - "End Line": 413 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 182, - "End Line": 184 - }, - { - "Function Name": "sendDispose", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 225, - "End Line": 227 - }, - { - "Function Name": "registerDispatcher", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 271, - "End Line": 281 - }, - { - "Function Name": "adopt", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 93, - "End Line": 101 - }, - { - "Function Name": "stopPendingOperations", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 131, - "End Line": 140 - }, - { - "Function Name": "collect", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 133, - "End Line": 140 - }, - { - "Function Name": "_dispose", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 123, - "End Line": 126 - }, - { - "Function Name": "constructor", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 205, - "End Line": 207 - }, - { - "Function Name": "sendCreate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 215, - "End Line": 219 - }, - { - "Function Name": "_validatorToWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 229, - "End Line": 235 - }, - { - "Function Name": "_validatorFromWireContext", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 237, - "End Line": 243 - }, - { - "Function Name": "initialize", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 186, - "End Line": 194 - }, - { - "Function Name": "sendEvent", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 209, - "End Line": 213 - }, - { - "Function Name": "addObjectListener", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 91 - }, - { - "Function Name": "sendAdopt", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 221, - "End Line": 223 - }, - { - "Function Name": "setMaxDispatchersForTest", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 41 - }, - { - "Function Name": "onmessage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 200, - "End Line": 202 - }, - { - "Function Name": "existingDispatcher", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 269 - }, - { - "Function Name": "_debugScopeState", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 165, - "End Line": 170 - }, - { - "Function Name": "parentScope", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "_onDispose", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 129 - }, - { - "Function Name": "waitForEventInfo", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 172, - "End Line": 174 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 82, - "Sequential Logic Declarations": 86, - "Function Parameters": 48, - "Function/Method Declarations": 32, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 29, - "Type/Safety Bypasses": 25, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 292, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 5, - "Asynchronous/Concurrent Execution": 83, - "UI / View Layer Components": 9, - "Closures and Anonymous Functions": 3, - "Global State Dependencies": 0, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 11, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 16, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 4, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 19, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 10, - "Thread Sleeps & Blocking Waits": 1, - "Bitwise Operations": 2, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 42, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 20, - "Event Listeners & Subscribers": 1, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 310, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 1, - "Cloud LLM API Integrations": 0, - "AI Orchestration Frameworks": 0, - "Vector Databases (RAG)": 0, - "Local Inference & Tensor Math": 0, - "Traditional Machine Learning (Stats/Trees)": 0, - "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 48, - "Design Camel Case": 13, - "Design Snake Case": 28, - "Design Pascal Case": 2, - "Design Upper Case": 0, - "Design Short Vars": 3, - "Design Long Vars": 1, - "Duplicate Logic": 0, - "Orphaned Logic": 10, - "Instructional Code Examples": 0, - "Architectural Diagrams (Mermaid/PlantUML)": 0, - "Structured Literature Headers": 0, - "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 0, - "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 5, - "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 0, - "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, - "Sec Extension Mismatch": 0, - "Sec Entropy": 0, - "Sec Tainted Injection": 0, - "Prompt Injection": 0, - "Agentic Rce": 0, - "Invisible Unicode Payload Smuggling": 0, - "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 - }, - "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../../protocol/validator", - "../../utils", - "../../utils/isomorphic/protocolMetainfo", - "../callLog", - "../errors", - "../instrumentation", - "../progress", - "../protocolError", - "../utils/debug", - "../utils/eventsHelper", - "./playwrightDispatcher", - "@protocol/channels", - "events" - ] + "9. Extracted Dependencies": [] }, - "typescript/playwright/frames.ts": { + "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy": { "1. Artifact Identity": { - "Filename": "frames.ts", - "Path": "typescript/playwright/frames.ts", - "Language": "Typescript", + "Filename": "hudson_triggers_SlowTriggerAdminMonitor_message.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_triggers_SlowTriggerAdminMonitor_message.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Error, SdkObject", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" - }, - "2. Topological Coordinates": { - "X": 2569.74, - "Y": -230.5, - "Z": 7584.11 - }, - "3. Architectural Profile": { - "Repository Archetype": "Unclassified", - "Repository Drift (Z-Score)": 0.0, - "Repository Fingerprint": {}, - "File Archetype": "Unclassified", - "File Drift (Z-Score)": 0.0, - "File Fingerprint": {}, - "Total LOC": 1823, - "Coding LOC": 1533, - "Documentation LOC": 91, - "Structural Magnitude": 369.37, - "Control Flow Ratio": "46.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 3.78 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "99.35%", - "Error & Exception Exposure": "97.8%", - "Tech Debt Exposure": "95.99%", - "Testing Exposure": "80.0%", - "API Exposure": "1.0%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.13%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "waitForSelector", - "Structural Impact": 88.9, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 34, - "Input Parameters": 5, - "Control Flow Ratio": "61.8%", - "Start Line": 770, - "End Line": 833 - }, - { - "Function Name": "_expectInternal", - "Structural Impact": 65.8, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 25, - "Input Parameters": 5, - "Control Flow Ratio": "73.5%", - "Start Line": 1473, - "End Line": 1515 - }, - { - "Function Name": "_retryWithProgressIfNotConnected", - "Structural Impact": 63.3, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 26, - "Input Parameters": 4, - "Control Flow Ratio": "60.5%", - "Start Line": 1132, - "End Line": 1190 - }, - { - "Function Name": "waitForFunctionExpression", - "Structural Impact": 58.9, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 20, - "Input Parameters": 6, - "Control Flow Ratio": "46.5%", - "Start Line": 1517, - "End Line": 1583 - }, - { - "Function Name": "expect", - "Structural Impact": 51.0, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 23, - "Input Parameters": 3, - "Control Flow Ratio": "65.7%", - "Start Line": 1411, - "End Line": 1471 - }, - { - "Function Name": "gotoImpl", - "Structural Impact": 44.8, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 20, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 636, - "End Line": 690 - }, - { - "Function Name": "race", - "Structural Impact": 36.0, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "71.9%", - "Start Line": 1475, - "End Line": 1515 - }, - { - "Function Name": "_callOnElementOnceMatches", - "Structural Impact": 33.0, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 11, - "Input Parameters": 6, - "Control Flow Ratio": "52.4%", - "Start Line": 1642, - "End Line": 1666 - }, - { - "Function Name": "fixupMetadataError", - "Structural Impact": 32.6, - "Lines of Code (LOC)": 58, - "Control Flow Branches": 20, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1414, - "End Line": 1471 - }, - { - "Function Name": "ariaSnapshot", - "Structural Impact": 30.8, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "64.0%", - "Start Line": 1729, - "End Line": 1756 - }, - { - "Function Name": "resolveSelector", - "Structural Impact": 23.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "52.6%", - "Start Line": 1249, - "End Line": 1277 - }, - { - "Function Name": "waitForNavigation", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "52.9%", - "Start Line": 692, - "End Line": 713 - }, - { - "Function Name": "isVisibleInternal", - "Structural Impact": 20.9, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "53.3%", - "Start Line": 1341, - "End Line": 1356 - }, - { - "Function Name": "_addScriptTag", - "Structural Impact": 19.5, - "Lines of Code (LOC)": 51, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "29.7%", - "Start Line": 965, - "End Line": 1015 - }, - { - "Function Name": "retryWithProgressAndTimeouts", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "61.5%", - "Start Line": 1088, - "End Line": 1114 - }, - { - "Function Name": "frameCommittedNewDocumentNavigation", - "Structural Impact": 19.2, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 6, - "Input Parameters": 5, - "Control Flow Ratio": "100.0%", - "Start Line": 211, - "End Line": 252 - }, - { - "Function Name": "_recalculateNetworkIdle", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 583, - "End Line": 603 - }, - { - "Function Name": "frameAbortedNavigation", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 269, - "End Line": 284 - }, - { - "Function Name": "inputValue", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "62.5%", - "Start Line": 1299, - "End Line": 1306 - }, - { - "Function Name": "requestStarted", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 300, - "End Line": 314 - }, - { - "Function Name": "frameRequestedNavigation", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 196, - "End Line": 209 - }, - { - "Function Name": "_raceWithCSPError", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "43.8%", - "Start Line": 1063, - "End Line": 1086 - }, - { - "Function Name": "predicate", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 657, - "End Line": 676 - }, - { - "Function Name": "_evaluateExpression", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 749, - "End Line": 753 - }, - { - "Function Name": "_evaluateExpressionHandle", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 759, - "End Line": 763 - }, - { - "Function Name": "frameAttached", - "Structural Impact": 11.4, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 147, - "End Line": 167 - }, - { - "Function Name": "raceNavigationAction", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 605, - "End Line": 619 - }, - { - "Function Name": "requestFailed", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 329, - "End Line": 341 - }, - { - "Function Name": "addFrameNavigation", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1778, - "End Line": 1797 - }, - { - "Function Name": "isNonRetriableError", - "Structural Impact": 10.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 1116, - "End Line": 1130 - }, - { - "Function Name": "_addStyleTag", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "26.3%", - "Start Line": 1021, - "End Line": 1061 - }, - { - "Function Name": "frameCommittedSameDocumentNavigation", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 254, - "End Line": 267 - }, - { - "Function Name": "predicate", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "58.3%", - "Start Line": 1526, - "End Line": 1551 - }, - { - "Function Name": "predicate", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 676, - "End Line": 690 - }, - { - "Function Name": "evaluateExpression", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 745, - "End Line": 747 - }, - { - "Function Name": "evaluateExpressionHandle", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 755, - "End Line": 757 - }, - { - "Function Name": "press", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1395, - "End Line": 1397 - }, - { - "Function Name": "waitForSignalsCreatedBy", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "30.0%", - "Start Line": 169, - "End Line": 184 - }, - { - "Function Name": "queryCount", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 877, - "End Line": 885 - }, - { - "Function Name": "_evalOnSelector", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "40.0%", - "Start Line": 845, - "End Line": 852 - }, - { - "Function Name": "next", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1551, - "End Line": 1570 - }, - { - "Function Name": "raceAgainstEvaluationStallingEvents", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 547, - "End Line": 563 - }, - { - "Function Name": "_elementState", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 1327, - "End Line": 1334 - }, - { - "Function Name": "addScriptTag", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 957, - "End Line": 963 - }, - { - "Function Name": "setContent", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "18.2%", - "Start Line": 909, - "End Line": 933 - }, - { - "Function Name": "constructor", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 479, - "End Line": 500 - }, - { - "Function Name": "innerText", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "40.0%", - "Start Line": 1283, - "End Line": 1289 - }, - { - "Function Name": "type", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1391, - "End Line": 1393 - }, - { - "Function Name": "_content", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 891, - "End Line": 907 - }, - { - "Function Name": "_title", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "35.7%", - "Start Line": 1600, - "End Line": 1612 - }, - { - "Function Name": "onWebSocketResponse", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 406, - "End Line": 412 - }, - { - "Function Name": "_inflightRequestFinished", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 356, - "End Line": 365 - }, - { - "Function Name": "contextDestroyed", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1689, - "End Line": 1699 - }, - { - "Function Name": "onLifecycleEvent", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 506, - "End Line": 514 - }, - { - "Function Name": "evalOnSelector", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 841, - "End Line": 843 - }, - { - "Function Name": "abort", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "36.4%", - "Start Line": 1570, - "End Line": 1583 - }, - { - "Function Name": "nonStallingEvaluateInExistingContext", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 574, - "End Line": 581 - }, - { - "Function Name": "_setContext", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1668, - "End Line": 1675 - }, - { - "Function Name": "dispatchEvent", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "16.7%", - "Start Line": 835, - "End Line": 839 - }, - { - "Function Name": "verifyLifecycle", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1810, - "End Line": 1816 - }, - { - "Function Name": "evalOnSelectorAll", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 6, - "Control Flow Ratio": "50.0%", - "Start Line": 854, - "End Line": 856 - }, - { - "Function Name": "renderUnexpectedValue", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1818, - "End Line": 1822 - }, - { - "Function Name": "addStyleTag", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1017, - "End Line": 1019 - }, - { - "Function Name": "_evalOnSelectorAll", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "25.0%", - "Start Line": 858, - "End Line": 863 - }, - { - "Function Name": "getAttribute", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 1295, - "End Line": 1297 - }, - { - "Function Name": "addScriptUrl", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 990, - "End Line": 1002 - }, - { - "Function Name": "interceptConsoleMessage", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 376, - "End Line": 386 - }, - { - "Function Name": "addScriptContent", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 1004, - "End Line": 1014 - }, - { - "Function Name": "isVisible", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1336, - "End Line": 1339 - }, - { - "Function Name": "_inflightRequestStarted", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 367, - "End Line": 374 - }, - { - "Function Name": "invalidateNonStallingEvaluations", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 539, - "End Line": 545 - }, - { - "Function Name": "collectNavigations", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 650, - "End Line": 657 - }, - { - "Function Name": "textContent", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1279, - "End Line": 1281 - }, - { - "Function Name": "innerHTML", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1291, - "End Line": 1293 - }, - { - "Function Name": "isHidden", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 1358, - "End Line": 1360 - }, - { - "Function Name": "isDisabled", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1362, - "End Line": 1364 - }, - { - "Function Name": "isEnabled", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1366, - "End Line": 1368 - }, - { - "Function Name": "isEditable", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1370, - "End Line": 1372 - }, - { - "Function Name": "isChecked", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1374, - "End Line": 1376 - }, - { - "Function Name": "_onDetached", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1629, - "End Line": 1640 - }, - { - "Function Name": "onWebSocketRequest", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 400, - "End Line": 404 - }, - { - "Function Name": "redirectNavigation", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 621, - "End Line": 629 - }, - { - "Function Name": "onWebSocketFrameSent", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 414, - "End Line": 418 - }, - { - "Function Name": "webSocketFrameReceived", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 420, - "End Line": 424 - }, - { - "Function Name": "click", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 1199, - "End Line": 1201 - }, - { - "Function Name": "tap", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 1231, - "End Line": 1235 - }, - { - "Function Name": "focus", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1241, - "End Line": 1243 - }, - { - "Function Name": "blur", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1245, - "End Line": 1247 - }, - { - "Function Name": "setInputFiles", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "20.0%", - "Start Line": 1386, - "End Line": 1389 - }, - { - "Function Name": "rafrafTimeout", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "14.3%", - "Start Line": 1614, - "End Line": 1627 - }, - { - "Function Name": "waitForFunctionValueInUtility", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "16.7%", - "Start Line": 1585, - "End Line": 1594 - }, - { - "Function Name": "contextCreated", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1677, - "End Line": 1687 - }, - { - "Function Name": "highlight", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "14.3%", - "Start Line": 1308, - "End Line": 1315 - }, - { - "Function Name": "reportRequestFinished", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 322, - "End Line": 327 - }, - { - "Function Name": "extendInjectedScript", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1721, - "End Line": 1727 - }, - { - "Function Name": "frameLifecycleEvent", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 294, - "End Line": 298 - }, - { - "Function Name": "webSocketError", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 433, - "End Line": 437 - }, - { - "Function Name": "waitForLoadState", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 715, - "End Line": 719 - }, - { - "Function Name": "_onClearLifecycle", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 516, - "End Line": 527 - }, - { - "Function Name": "_startNetworkIdleTimer", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1701, - "End Line": 1712 - }, - { - "Function Name": "dragAndDrop", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1207, - "End Line": 1229 - }, - { - "Function Name": "frameDetached", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 286, - "End Line": 292 - }, - { - "Function Name": "_removeFramesRecursively", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 348, - "End Line": 354 - }, - { - "Function Name": "nonStallingRawEvaluateInExistingMainContext", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 565, - "End Line": 572 - }, - { - "Function Name": "context", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 725, - "End Line": 731 - }, - { - "Function Name": "origin", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 943, - "End Line": 947 - }, - { - "Function Name": "onerror", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1009, - "End Line": 1015 - }, - { - "Function Name": "collect", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 136, - "End Line": 140 - }, - { - "Function Name": "requestReceivedResponse", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 316, - "End Line": 320 - }, - { - "Function Name": "_clearWebSockets", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 388, - "End Line": 393 - }, - { - "Function Name": "webSocketClosed", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 426, - "End Line": 431 - }, - { - "Function Name": "_setPendingDocument", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 529, - "End Line": 533 - }, - { - "Function Name": "_existingMainContext", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 737, - "End Line": 739 - }, - { - "Function Name": "onerror", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 997, - "End Line": 1002 - }, - { - "Function Name": "frame", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 143, - "End Line": 145 - }, - { - "Function Name": "removeChildFramesRecursively", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 343, - "End Line": 346 - }, - { - "Function Name": "selectOption", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 1382, - "End Line": 1384 - }, - { - "Function Name": "frames", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 131, - "End Line": 141 - }, - { - "Function Name": "rafrafTimeoutScreenshotElementWithProgress", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1192, - "End Line": 1197 - }, - { - "Function Name": "fill", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1237, - "End Line": 1239 - }, - { - "Function Name": "dispose", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 125 - }, - { - "Function Name": "_stopNetworkIdleTimer", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1714, - "End Line": 1719 - }, - { - "Function Name": "createDummyMainFrameIfNeeded", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 115, - "End Line": 118 - }, - { - "Function Name": "frameWillPotentiallyRequestNavigation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 186, - "End Line": 189 - }, - { - "Function Name": "frameDidPotentiallyRequestNavigation", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 191, - "End Line": 194 - }, - { - "Function Name": "goto", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 631, - "End Line": 634 - }, - { - "Function Name": "querySelector", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 765, - "End Line": 768 - }, - { - "Function Name": "release", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 1803, - "End Line": 1807 - }, - { - "Function Name": "maskSelectors", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 865, - "End Line": 871 - }, - { - "Function Name": "name", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 935, - "End Line": 937 - }, - { - "Function Name": "dblclick", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1203, - "End Line": 1205 - }, - { - "Function Name": "hover", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1378, - "End Line": 1380 - }, - { - "Function Name": "check", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1399, - "End Line": 1401 - }, - { - "Function Name": "uncheck", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1403, - "End Line": 1405 - }, - { - "Function Name": "addStyleUrl", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1036, - "End Line": 1047 - }, - { - "Function Name": "addStyleContent", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1049, - "End Line": 1060 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 90 - }, - { - "Function Name": "onWebSocketCreated", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 395, - "End Line": 398 - }, - { - "Function Name": "_fireInternalFrameNavigation", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 441 - }, - { - "Function Name": "querySelectorAll", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 873, - "End Line": 875 - }, - { - "Function Name": "waitForTimeout", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1407, - "End Line": 1409 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 109 - }, - { - "Function Name": "frameElement", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 721, - "End Line": 723 - }, - { - "Function Name": "content", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 887, - "End Line": 889 - }, - { - "Function Name": "title", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1596, - "End Line": 1598 - }, - { - "Function Name": "_asLocator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1758, - "End Line": 1760 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1768, - "End Line": 1771 - }, - { - "Function Name": "hideHighlight", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1325 - }, - { - "Function Name": "waitFor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1773, - "End Line": 1776 - }, - { - "Function Name": "_allocateFrameSeq", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 113 - }, - { - "Function Name": "mainFrame", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 129 - }, - { - "Function Name": "_isDetached", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 502, - "End Line": 504 - }, - { - "Function Name": "pendingDocument", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 535, - "End Line": 537 - }, - { - "Function Name": "mainContext", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 733, - "End Line": 735 - }, - { - "Function Name": "utilityContext", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 741, - "End Line": 743 - }, - { - "Function Name": "url", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 939, - "End Line": 941 - }, - { - "Function Name": "parentFrame", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 949, - "End Line": 951 - }, - { - "Function Name": "_getChildFrames", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 953, - "End Line": 955 - }, + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 5647.14, + "Y": -51.69, + "Z": -6906.76 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 49, + "Coding LOC": 41, + "Documentation LOC": 0, + "Structural Magnitude": 6.72, + "Control Flow Ratio": "16.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.171 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "8.97%", + "Error & Exception Exposure": "80.24%", + "Tech Debt Exposure": "95.2%", + "Testing Exposure": "2.4%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "41.08%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "retain", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1799, - "End Line": 1801 + "Function Name": "Unknown_Block", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 14, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 454, - "Sequential Logic Declarations": 516, - "Function Parameters": 276, - "Function/Method Declarations": 161, - "Class/Entity Declarations": 4, - "Defensive Programming Constructs": 78, - "Type/Safety Bypasses": 64, - "High-Risk Execution Commands": 3, - "I/O and Network Boundaries": 4, - "Exposed API / Public Exports": 8, - "State Mutations / Variable Reassignments": 928, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 10, + "Function Parameters": 16, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 3, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 6, - "Asynchronous/Concurrent Execution": 1397, - "UI / View Layer Components": 14, - "Closures and Anonymous Functions": 73, - "Global State Dependencies": 18, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 41, - "Collection Iterators / Comprehensions": 5, - "Scientific & Mathematical Operations": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 26, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 12, - "Dependency Injection Constructs": 7, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 43, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, - "Fatal Aborts & Exceptions": 45, - "Thread Sleeps & Blocking Waits": 5, - "Bitwise Operations": 6, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 192, - "Resource Deallocation & Cleanup": 26, - "Private / Encapsulated Scopes": 39, - "Event Listeners & Subscribers": 2, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1477, + "Structural Space Indentations": 33, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 2, + "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 4, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -735086,25 +735073,25 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 235, - "Design Camel Case": 47, - "Design Snake Case": 158, - "Design Pascal Case": 16, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 7, - "Design Long Vars": 1, + "Design Short Vars": 0, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 56, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 1, - "Dynamic Code Execution (Eval/Exec)": 5, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -735118,113 +735105,95 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 22, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "../utils", - "../utils/isomorphic/manualPromise", - "../utils/isomorphic/selectorParser", - "./browserContext", - "./callLog", - "./console", - "./dom", - "./errors", - "./fileUploadUtils", - "./frameSelectors", - "./helper", - "./instrumentation", - "./javascript", - "./network", - "./page", - "./progress", - "./protocolError", - "./screenshotter", - "./types", - "./utils/eventsHelper", - "@injected/injectedScript", - "@protocol/channels" + "hudson.Util", + "hudson.triggers.SlowTriggerAdminMonitor", + "jenkins.model.Jenkins", + "org.apache.commons.jelly.tags.fmt.FmtTagLibrary" ] }, - "typescript/playwright/protocol.ts": { + "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy": { "1. Artifact Identity": { - "Filename": "protocol.ts", - "Path": "typescript/playwright/protocol.ts", - "Language": "Typescript", + "Filename": "hudson_util_JenkinsReloadFailed_index.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_util_JenkinsReloadFailed_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "typescript", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ts)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 2364.46, - "Y": -153.12, - "Z": 6836.7 + "X": 4976.2, + "Y": -279.3, + "Z": -6116.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", "Repository Drift (Z-Score)": 0.0, "Repository Fingerprint": {}, - "File Archetype": "Unclassified", + "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 43, - "Coding LOC": 22, - "Documentation LOC": 17, - "Structural Magnitude": 1.84, - "Control Flow Ratio": "44.4%", - "Popularity Rank": 1, + "Total LOC": 18, + "Coding LOC": 14, + "Documentation LOC": 0, + "Structural Magnitude": 15.28, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.182 + "Raw Cognitive Density": 0.357 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.09%", - "Error & Exception Exposure": "75.45%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "7.33%", + "Testing Exposure": "2.14%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "93.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "67.14%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 4, - "Sequential Logic Declarations": 5, - "Function Parameters": 0, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 3, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 2, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735243,13 +735212,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735266,12 +735235,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 3, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 2, - "Design Upper Case": 1, - "Design Short Vars": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735298,53 +735267,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "cobol/zopeneditor-sample": { - "Directory Group Magnitude": 533.44, - "File Count": 8, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "33.02%", - "Error & Exception Exposure": "32.53%", - "Tech Debt Exposure": "24.6%", - "Testing Exposure": "21.15%", - "API Exposure": "0.62%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "37.03%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "75.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.34%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cobol/zopeneditor-sample/CUSTCOPY.cpy": { + "9. Extracted Dependencies": [ + "hudson.Functions" + ] + }, + "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy": { "1. Artifact Identity": { - "Filename": "CUSTCOPY.cpy", - "Path": "cobol/zopeneditor-sample/CUSTCOPY.cpy", - "Language": "Cobol", + "Filename": "hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", + "Path": "groovy/jenkins_view_groovy/hudson_views_ViewsTabBar_GlobalConfigurationImpl_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 8064.72, - "Y": 72.16, - "Z": 6148.68 + "X": 4802.71, + "Y": -308.97, + "Z": -5815.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735353,37 +735300,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 54, - "Coding LOC": 27, - "Documentation LOC": 26, - "Structural Magnitude": 0.78, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, + "Total LOC": 11, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "20.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.185 + "Raw Cognitive Density": 0.857 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.04%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.53%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 4, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -735405,7 +735352,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735430,7 +735377,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 27, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735447,12 +735394,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735479,29 +735426,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.views.ViewsTabBar" + ] }, - "cobol/zopeneditor-sample/DATETIME.cpy": { + "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "DATETIME.cpy", - "Path": "cobol/zopeneditor-sample/DATETIME.cpy", - "Language": "Cobol", + "Filename": "jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_AdministrativeMonitorsConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 8239.82, - "Y": 77.7, - "Z": 5554.83 + "X": 5102.05, + "Y": -223.34, + "Z": -6434.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735510,38 +735459,38 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 19, - "Coding LOC": 10, - "Documentation LOC": 9, - "Structural Magnitude": 0.76, - "Control Flow Ratio": "0.0%", + "Total LOC": 55, + "Coding LOC": 27, + "Documentation LOC": 23, + "Structural Magnitude": 17.54, + "Control Flow Ratio": "28.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.5 + "Raw Cognitive Density": 0.407 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "20.26%", + "Error & Exception Exposure": "75.93%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "1.53%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "70.33%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "66.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.12%", + "Documentation Exposure": "30.13%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 5, + "Function Parameters": 5, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -735549,13 +735498,183 @@ "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 2, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 21, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 2, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "hudson.model.AdministrativeMonitor" + ] + }, + "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy": { + "1. Artifact Identity": { + "Filename": "jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_AsynchronousAdministrativeMonitor_log.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 4473.22, + "Y": -273.55, + "Z": -5695.68 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 46, + "Coding LOC": 19, + "Documentation LOC": 19, + "Structural Magnitude": 3.68, + "Control Flow Ratio": "40.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.368 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "17.85%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.42%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "40.12%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Unknown_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 31, + "End Line": 39 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 3, + "Function Parameters": 3, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 1, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -735587,7 +735706,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 14, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735595,7 +735714,7 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 1, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -735604,15 +735723,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 2, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -735643,22 +735762,22 @@ }, "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/REPTTOTL.cpy": { + "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy": { "1. Artifact Identity": { - "Filename": "REPTTOTL.cpy", - "Path": "cobol/zopeneditor-sample/REPTTOTL.cpy", - "Language": "Cobol", + "Filename": "jenkins_management_ShutdownLink_index.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_management_ShutdownLink_index.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7829.58, - "Y": 130.26, - "Z": 5269.01 + "X": 4605.64, + "Y": 85.75, + "Z": -7112.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735667,59 +735786,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 24, - "Coding LOC": 15, - "Documentation LOC": 9, - "Structural Magnitude": 0.87, - "Control Flow Ratio": "0.0%", + "Total LOC": 32, + "Coding LOC": 25, + "Documentation LOC": 0, + "Structural Magnitude": 15.5, + "Control Flow Ratio": "37.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.6 + "Raw Cognitive Density": 0.32 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "30.12%", - "Error & Exception Exposure": "78.78%", + "Cognitive Load Exposure": "15.19%", + "Error & Exception Exposure": "78.58%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "96.21%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.61%", + "Documentation Exposure": "55.53%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 5, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 2, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -735744,7 +735863,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -735761,12 +735880,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 3, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 3, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -735793,29 +735912,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "jenkins.management.Messages" + ] }, - "cobol/zopeneditor-sample/SAM1.cbl": { + "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "SAM1.cbl", - "Path": "cobol/zopeneditor-sample/SAM1.cbl", - "Language": "Cobol", + "Filename": "jenkins_model_ArtifactManagerConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_ArtifactManagerConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7747.05, - "Y": 128.97, - "Z": 5685.36 + "X": 4810.14, + "Y": -20.86, + "Z": -7112.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -735824,262 +735945,61 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 505, - "Coding LOC": 417, - "Documentation LOC": 52, - "Structural Magnitude": 340.74, - "Control Flow Ratio": "79.1%", + "Total LOC": 36, + "Coding LOC": 9, + "Documentation LOC": 23, + "Structural Magnitude": 17.68, + "Control Flow Ratio": "66.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.007 + "Raw Cognitive Density": 1.111 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "73.62%", - "Error & Exception Exposure": "84.91%", - "Tech Debt Exposure": "99.51%", - "Testing Exposure": "80.0%", - "API Exposure": "2.23%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "88.26%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.38%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "60.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.84%", + "Documentation Exposure": "28.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "100-PROCESS-TRANSACTIONS", - "Structural Impact": 24.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 22, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 261, - "End Line": 291 - }, - { - "Function Name": "710-READ-TRAN-FILE", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 11, - "Input Parameters": 0, - "Control Flow Ratio": "91.7%", - "Start Line": 388, - "End Line": 407 - }, - { - "Function Name": "210-PROCESS-ADD-TRAN", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 10, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 315, - "End Line": 333 - }, - { - "Function Name": "200-PROCESS-UPDATE-TRAN", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 293, - "End Line": 313 - }, - { - "Function Name": "REPORT-FILE", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 360, - "End Line": 386 - }, - { - "Function Name": "730-READ-CUSTOMER-FILE", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 423, - "End Line": 438 - }, - { - "Function Name": "740-WRITE-CUSTOUT-FILE", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 440, - "End Line": 455 - }, - { - "Function Name": "CURRENT-SECOND", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 0, - "Control Flow Ratio": "63.6%", - "Start Line": 232, - "End Line": 257 - }, - { - "Function Name": "220-PROCESS-DELETE-TRAN", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 335, - "End Line": 345 - }, - { - "Function Name": "720-POSITION-CUST-FILE", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 409, - "End Line": 416 - }, - { - "Function Name": "FILE-CONTROL", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 178, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 38, - "End Line": 215 - }, - { - "Function Name": "830-REPORT-TRAN-PROCESSED", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 471, - "End Line": 478 - }, - { - "Function Name": "721-COPY-RECORDS", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 418, - "End Line": 421 - }, - { - "Function Name": "000-MAIN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 217, - "End Line": 231 - }, - { - "Function Name": "850-REPORT-TRAN-STATS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 480, - "End Line": 505 - }, - { - "Function Name": "299-REPORT-BAD-TRAN", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 347, - "End Line": 354 - }, - { - "Function Name": "800-INIT-REPORT", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 462, - "End Line": 469 - }, - { - "Function Name": "700-OPEN-FILES", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 359 - }, - { - "Function Name": "790-CLOSE-FILES", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 460 - }, - { - "Function Name": "CURRENT-SECOND", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 258, - "End Line": 259 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 102, - "Sequential Logic Declarations": 27, - "Function Parameters": 1, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 22, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 50, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 193, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 3, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, + "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -736090,27 +736010,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 12, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 5, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 417, + "Structural Space Indentations": 5, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, + "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 3, - "Time Date Logic": 5, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -736119,15 +736039,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, - "Design Upper Case": 15, - "Design Short Vars": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 20, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -736151,32 +736071,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CUSTCOPY", - "TRANREC" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2.cbl": { + "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy": { "1. Artifact Identity": { - "Filename": "SAM2.cbl", - "Path": "cobol/zopeneditor-sample/SAM2.cbl", - "Language": "Cobol", + "Filename": "jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_UserInterruption_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cbl)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7530.13, - "Y": 148.97, - "Z": 5846.61 + "X": 4260.59, + "Y": 93.02, + "Z": -7131.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736185,120 +736102,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 159, - "Coding LOC": 119, - "Documentation LOC": 27, - "Structural Magnitude": 188.38, - "Control Flow Ratio": "84.4%", + "Total LOC": 10, + "Coding LOC": 7, + "Documentation LOC": 1, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "50.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.246 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "87.9%", - "Error & Exception Exposure": "96.54%", - "Tech Debt Exposure": "97.32%", - "Testing Exposure": "80.0%", - "API Exposure": "2.73%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "89.72%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.14%", + "Documentation Exposure": "39.02%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "100-VALIDATE-TRAN", - "Structural Impact": 27.0, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 24, - "Input Parameters": 0, - "Control Flow Ratio": "92.3%", - "Start Line": 72, - "End Line": 111 - }, - { - "Function Name": "200-PROCESS-TRAN", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 14, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 113, - "End Line": 141 - }, - { - "Function Name": "000-MAIN", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "88.9%", - "Start Line": 57, - "End Line": 70 - }, - { - "Function Name": "310-CRUNCH-LOOP", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 148, - "End Line": 159 - }, - { - "Function Name": "300-PROCESS-CPU-CRUNCH", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 143, - "End Line": 146 - }, - { - "Function Name": "TRAN-MSG", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 55 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 54, - "Sequential Logic Declarations": 10, - "Function Parameters": 1, - "Function/Method Declarations": 6, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 2, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 120, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736313,7 +736169,7 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -736323,14 +736179,14 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 119, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -736340,15 +736196,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -736372,32 +736228,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "CUSTCOPY", - "TRANREC" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2PAR5.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy": { "1. Artifact Identity": { - "Filename": "SAM2PAR5.cpy", - "Path": "cobol/zopeneditor-sample/SAM2PAR5.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_CauseOfInterruption_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CauseOfInterruption_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7550.2, - "Y": 244.12, - "Z": 5155.59 + "X": 5371.95, + "Y": 1.17, + "Z": -7203.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736406,12 +736259,12 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 11, + "Total LOC": 4, "Coding LOC": 2, - "Documentation LOC": 8, - "Structural Magnitude": 0.55, + "Documentation LOC": 1, + "Structural Magnitude": 15.18, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -736429,16 +736282,16 @@ "Specification Exposure": "13.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.48%", + "Documentation Exposure": "12.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 0, + "Sequential Logic Declarations": 1, + "Function Parameters": 1, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -736483,7 +736336,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -736533,28 +736386,28 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/SAM2PARM.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy": { "1. Artifact Identity": { - "Filename": "SAM2PARM.cpy", - "Path": "cobol/zopeneditor-sample/SAM2PARM.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_CoreEnvironmentContributor_buildEnv.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7659.46, - "Y": 165.94, - "Z": 6032.92 + "X": 5677.28, + "Y": -125.95, + "Z": -6631.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736563,38 +736416,38 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 12, - "Coding LOC": 3, - "Documentation LOC": 8, - "Structural Magnitude": 0.58, + "Total LOC": 11, + "Coding LOC": 7, + "Documentation LOC": 1, + "Structural Magnitude": 13.64, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.667 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.46%", + "Testing Exposure": "1.07%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "20.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.8%", + "Documentation Exposure": "39.02%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, + "Sequential Logic Declarations": 2, + "Function Parameters": 2, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, @@ -736608,14 +736461,14 @@ "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Closures and Anonymous Functions": 2, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736657,12 +736510,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -736689,31 +736542,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "SAM2PAR5" - ] + "9. Extracted Dependencies": [] }, - "cobol/zopeneditor-sample/TRANREC.cpy": { + "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "TRANREC.cpy", - "Path": "cobol/zopeneditor-sample/TRANREC.cpy", - "Language": "Cobol", + "Filename": "jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalNodePropertiesConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "cobol", + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpy)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 7331.65, - "Y": 247.2, - "Z": 5583.13 + "X": 5277.48, + "Y": -299.12, + "Z": -5743.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736722,37 +736573,37 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 39, - "Coding LOC": 30, - "Documentation LOC": 8, - "Structural Magnitude": 0.78, + "Total LOC": 9, + "Coding LOC": 5, + "Documentation LOC": 0, + "Structural Magnitude": 12.6, "Control Flow Ratio": "0.0%", - "Popularity Rank": 2, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.833 + "Raw Cognitive Density": 1.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.52%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", + "Testing Exposure": "0.77%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "33.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "42.15%", + "Documentation Exposure": "29.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, + "Sequential Logic Declarations": 3, "Function Parameters": 0, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, @@ -736773,8 +736624,8 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736788,7 +736639,7 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 4, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, @@ -736799,7 +736650,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 30, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -736816,12 +736667,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -736848,53 +736699,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] - } - } - }, - "dockerfile/moby/builder/remotecontext/internal/tarsum": { - "Directory Group Magnitude": 508.82, - "File Count": 5, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "26.17%", - "Error & Exception Exposure": "72.22%", - "Tech Debt Exposure": "57.45%", - "Testing Exposure": "2.37%", - "API Exposure": "4.44%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "80.0%", - "Commented Logic Exposure": "1.57%", - "Specification Exposure": "96.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.44%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go": { + "9. Extracted Dependencies": [ + "hudson.Functions" + ] + }, + "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "builder_context.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/builder_context.go", - "Language": "Go", + "Filename": "jenkins_model_GlobalPluginConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalPluginConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6268.32, - "Y": -220.38, - "Z": 7543.96 + "X": 4240.82, + "Y": -7.73, + "Z": -6944.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -736903,70 +736732,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 22, - "Coding LOC": 12, - "Documentation LOC": 7, - "Structural Magnitude": 18.34, - "Control Flow Ratio": "50.0%", + "Total LOC": 18, + "Coding LOC": 13, + "Documentation LOC": 1, + "Structural Magnitude": 15.26, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.0 + "Raw Cognitive Density": 0.462 }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "83.38%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.05%", - "API Exposure": "6.63%", + "Testing Exposure": "1.99%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "80.0%", + "Specification Exposure": "86.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "9.54%", + "Documentation Exposure": "62.85%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Remove", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 13, - "End Line": 21 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, + "Control Flow Branches": 1, "Sequential Logic Declarations": 3, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Function Parameters": 3, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 9, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, + "Closures and Anonymous Functions": 3, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -736987,11 +736805,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 7, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737008,12 +736826,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -737040,29 +736858,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "hudson.Functions" + ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go": { + "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "fileinfosums.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/fileinfosums.go", - "Language": "Go", + "Filename": "jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_GlobalProjectNamingStrategyConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6514.74, - "Y": -198.77, - "Z": 6717.43 + "X": 4762.59, + "Y": 95.18, + "Z": -7280.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737071,193 +736891,52 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 136, - "Coding LOC": 93, - "Documentation LOC": 21, - "Structural Magnitude": 103.96, - "Control Flow Ratio": "40.0%", + "Total LOC": 18, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 15.24, + "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.944 + "Raw Cognitive Density": 0.417 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "37.64%", - "Error & Exception Exposure": "87.7%", - "Tech Debt Exposure": "98.11%", - "Testing Exposure": "2.55%", - "API Exposure": "6.05%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.84%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "80.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "60.39%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "GetFile", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 43, - "End Line": 53 - }, - { - "Function Name": "GetAllFile", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 56, - "End Line": 64 - }, - { - "Function Name": "GetDuplicatePaths", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 67, - "End Line": 78 - }, - { - "Function Name": "Less", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 123, - "End Line": 128 - }, - { - "Function Name": "Less", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 110, - "End Line": 115 - }, - { - "Function Name": "SortBySums", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 97, - "End Line": 104 - }, - { - "Function Name": "Less", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 135 - }, - { - "Function Name": "Swap", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 84 - }, - { - "Function Name": "Name", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 29 - }, - { - "Function Name": "Sum", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 33 - }, - { - "Function Name": "Pos", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 37 - }, - { - "Function Name": "Len", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 81 - }, - { - "Function Name": "SortByPos", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 87, - "End Line": 89 - }, - { - "Function Name": "SortByNames", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 94 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 18, - "Sequential Logic Declarations": 27, - "Function Parameters": 14, - "Function/Method Declarations": 14, - "Class/Entity Declarations": 5, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 4, + "Function Parameters": 2, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 40, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 15, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 14, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, @@ -737274,7 +736953,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -737285,11 +736964,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 55, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737306,15 +736985,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 2, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 2, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -737338,33 +737017,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "runtime", - "sort", - "strings" + "jenkins.model.ProjectNamingStrategy" ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go": { + "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy": { "1. Artifact Identity": { - "Filename": "tarsum.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/tarsum.go", - "Language": "Go", + "Filename": "jenkins_model_InterruptedBuildAction_summary.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_InterruptedBuildAction_summary.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6552.92, - "Y": -210.0, - "Z": 7451.29 + "X": 4103.43, + "Y": -111.44, + "Z": -6139.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737373,190 +737050,59 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 299, - "Coding LOC": 224, - "Documentation LOC": 39, - "Structural Magnitude": 246.18, - "Control Flow Ratio": "45.3%", - "Popularity Rank": 3, + "Total LOC": 10, + "Coding LOC": 7, + "Documentation LOC": 0, + "Structural Magnitude": 13.64, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.283 + "Raw Cognitive Density": 0.714 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "49.17%", - "Error & Exception Exposure": "94.15%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.45%", - "API Exposure": "2.18%", + "Testing Exposure": "1.07%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "46.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "39.48%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Read", - "Structural Impact": 39.9, - "Lines of Code (LOC)": 91, - "Control Flow Branches": 24, - "Input Parameters": 1, - "Control Flow Ratio": "58.5%", - "Start Line": 191, - "End Line": 281 - }, - { - "Function Name": "encodeHeader", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 157, - "End Line": 169 - }, - { - "Function Name": "NewTarSumForLabel", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "42.9%", - "Start Line": 64, - "End Line": 83 - }, - { - "Function Name": "Sum", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 283, - "End Line": 294 - }, - { - "Function Name": "initTarSum", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 171, - "End Line": 189 - }, - { - "Function Name": "NewTarSumHash", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 53, - "End Line": 61 - }, - { - "Function Name": "NewTarSum", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 47, - "End Line": 49 - }, - { - "Function Name": "NewTHash", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 133 - }, - { - "Function Name": "Hash", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 118 - }, - { - "Function Name": "Version", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "Name", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 154 - }, - { - "Function Name": "Hash", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 155, - "End Line": 155 - }, - { - "Function Name": "GetSums", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 296, - "End Line": 298 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 39, - "Sequential Logic Declarations": 47, - "Function Parameters": 13, - "Function/Method Declarations": 13, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 141, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 15, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 10, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 2, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -737565,23 +737111,23 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 2, + "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 62, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 182, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737598,12 +737144,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 9, - "Design Camel Case": 4, - "Design Snake Case": 4, - "Design Pascal Case": 1, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -737630,44 +737176,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "archive/tar", - "bytes", - "compress/gzip", - "crypto", - "crypto/sha256", - "encoding/hex", - "errors", - "fmt", - "hash", - "io", - "path", - "sha256", - "sha512", - "strings" - ] + "9. Extracted Dependencies": [] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go": { + "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy": { "1. Artifact Identity": { - "Filename": "versioning.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/versioning.go", - "Language": "Go", + "Filename": "jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_JenkinsLocationConfiguration_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6765.45, - "Y": -122.11, - "Z": 7372.79 + "X": 5440.41, + "Y": -196.51, + "Z": -6235.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737676,144 +737207,53 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 120, - "Documentation LOC": 24, - "Structural Magnitude": 135.8, - "Control Flow Ratio": "40.0%", + "Total LOC": 15, + "Coding LOC": 11, + "Documentation LOC": 0, + "Structural Magnitude": 15.22, + "Control Flow Ratio": "25.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.867 + "Raw Cognitive Density": 0.545 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "33.8%", - "Error & Exception Exposure": "95.87%", - "Tech Debt Exposure": "92.41%", - "Testing Exposure": "2.45%", - "API Exposure": "5.05%", + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.69%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "7.86%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "73.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "56.69%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "v1TarHeaderSelect", - "Structural Impact": 13.1, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 116, - "End Line": 151 - }, - { - "Function Name": "WriteV1Header", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 26, - "End Line": 30 - }, - { - "Function Name": "GetVersions", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 45, - "End Line": 51 - }, - { - "Function Name": "VersionLabelForChecksum", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 35, - "End Line": 42 - }, - { - "Function Name": "GetVersionFromTarsum", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 71, - "End Line": 78 - }, - { - "Function Name": "getTarHeaderSelector", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 159, - "End Line": 166 - }, - { - "Function Name": "v0TarHeaderSelect", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 114 - }, - { - "Function Name": "selectHeaders", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 97 - }, - { - "Function Name": "String", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 68 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 14, - "Sequential Logic Declarations": 21, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 17, - "State Mutations / Variable Reassignments": 80, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 13, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, - "Global State Dependencies": 1, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, @@ -737829,22 +737269,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 1, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, + "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 2, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 21, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 87, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 6, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -737861,15 +737301,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 15, - "Design Camel Case": 8, - "Design Snake Case": 4, - "Design Pascal Case": 3, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 1, + "Design Short Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 6, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -737893,39 +737333,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 9, + "Direct Upstream (Fragility)": 1, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 5, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "archive/tar", - "errors", - "io", - "sort", - "strconv", - "strings", - "tarsum", - "tarsum.dev", - "tarsum.v1" + "hudson.Functions" ] }, - "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go": { + "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy": { "1. Artifact Identity": { - "Filename": "writercloser.go", - "Path": "dockerfile/moby/builder/remotecontext/internal/tarsum/writercloser.go", - "Language": "Go", + "Filename": "jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_model_ProjectNamingStrategy_PatternProjectNamingStrategy_config.groovy", + "Language": "Groovy", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "go", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .go)" + "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": -6982.78, - "Y": -77.95, - "Z": 7076.29 + "X": 4070.63, + "Y": -62.97, + "Z": -6732.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -737934,80 +737366,216 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 23, - "Coding LOC": 17, + "Total LOC": 17, + "Coding LOC": 11, "Documentation LOC": 0, - "Structural Magnitude": 4.54, + "Structural Magnitude": 15.22, + "Control Flow Ratio": "25.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.545 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "1.69%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "73.33%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "56.69%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 3, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 0, + "Time Date Logic": 0, + "Cloud LLM API Integrations": 0, + "AI Orchestration Frameworks": 0, + "Vector Databases (RAG)": 0, + "Local Inference & Tensor Math": 0, + "Traditional Machine Learning (Stats/Trees)": 0, + "Deep Learning & Neural Networks": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 1, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 0, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 0, + "Embedded Credentials & Keys": 0, + "Sec Extension Mismatch": 0, + "Sec Entropy": 0, + "Sec Tainted Injection": 0, + "Prompt Injection": 0, + "Agentic Rce": 0, + "Invisible Unicode Payload Smuggling": 0, + "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 + }, + "8. Dependency Network": { + "Direct Upstream (Fragility)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + }, + "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy": { + "1. Artifact Identity": { + "Filename": "jenkins_mvn_GlobalMavenConfig_config.groovy", + "Path": "groovy/jenkins_view_groovy/jenkins_mvn_GlobalMavenConfig_config.groovy", + "Language": "Groovy", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "groovy", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .groovy)" + }, + "2. Topological Coordinates": { + "X": 5057.66, + "Y": 133.54, + "Z": -7432.75 + }, + "3. Architectural Profile": { + "Repository Archetype": "Unclassified", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": null, + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 9, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 13.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.833 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.22%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "96.71%", - "Testing Exposure": "2.36%", - "API Exposure": "2.3%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.92%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "40.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "34.55%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "Close", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 18 - }, - { - "Function Name": "Flush", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 22 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, + "Sequential Logic Declarations": 2, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 2, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -738027,12 +737595,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 4, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 6, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -738049,15 +737617,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 0, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 1, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -738081,14 +737649,12 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "io" - ] + "9. Extracted Dependencies": [] } } }, @@ -809399,9 +808965,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4890.37, + "X": -3642.99, "Y": 172.93, - "Z": -7149.99 + "Z": -2988.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809669,9 +809235,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4404.34, + "X": -4129.02, "Y": 231.25, - "Z": -6179.17 + "Z": -2018.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -809860,9 +809426,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4617.82, + "X": -3915.54, "Y": 193.13, - "Z": -6565.52 + "Z": -2404.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810173,9 +809739,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4791.62, + "X": -3741.74, "Y": 172.48, - "Z": -6530.07 + "Z": -2369.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810629,9 +810195,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5698.99, + "X": -2834.37, "Y": 120.23, - "Z": -6305.74 + "Z": -2144.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810799,9 +810365,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5337.77, + "X": -3195.59, "Y": 107.4, - "Z": -7151.64 + "Z": -2990.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -810969,9 +810535,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4429.56, + "X": -4103.8, "Y": 193.73, - "Z": -5614.8 + "Z": -1453.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811139,9 +810705,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3996.91, + "X": -4536.44, "Y": 207.29, - "Z": -6980.8 + "Z": -2819.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811310,9 +810876,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5625.72, + "X": -2907.64, "Y": 68.82, - "Z": -6918.66 + "Z": -2757.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811480,9 +811046,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4498.28, + "X": -4035.07, "Y": 137.55, - "Z": -7429.55 + "Z": -3268.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811650,9 +811216,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5233.55, + "X": -3299.81, "Y": 148.65, - "Z": -5847.38 + "Z": -1686.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -811820,9 +811386,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5498.25, + "X": -3035.11, "Y": 152.32, - "Z": -6864.45 + "Z": -2703.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812002,9 +811568,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4595.98, + "X": -3937.37, "Y": 175.76, - "Z": -7108.58 + "Z": -2947.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812225,9 +811791,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4041.77, + "X": -4491.58, "Y": 158.1, - "Z": -6596.48 + "Z": -2435.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812396,9 +811962,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4206.73, + "X": -4326.63, "Y": 208.93, - "Z": -6317.13 + "Z": -2156.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812628,9 +812194,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5362.92, + "X": -3170.43, "Y": 138.84, - "Z": -6596.71 + "Z": -2435.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -812847,9 +812413,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4760.32, + "X": -3773.03, "Y": 91.68, - "Z": -7183.88 + "Z": -3022.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813038,9 +812604,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4969.97, + "X": -3563.39, "Y": 134.72, - "Z": -7356.92 + "Z": -3195.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813210,9 +812776,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5079.68, + "X": -3453.67, "Y": 123.97, - "Z": -6315.22 + "Z": -2154.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813449,9 +813015,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5204.43, + "X": -3328.93, "Y": 111.83, - "Z": -6764.94 + "Z": -2603.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813642,9 +813208,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4072.41, + "X": -4460.95, "Y": 195.02, - "Z": -6020.64 + "Z": -1859.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -813823,9 +813389,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4382.56, + "X": -4150.79, "Y": 165.97, - "Z": -6716.03 + "Z": -2555.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814116,9 +813682,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4773.0, + "X": -3760.36, "Y": 213.89, - "Z": -5755.66 + "Z": -1594.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814297,9 +813863,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4267.31, + "X": -4266.05, "Y": 153.16, - "Z": -7122.0 + "Z": -2960.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814503,9 +814069,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5085.83, + "X": -3447.53, "Y": 134.09, - "Z": -7226.72 + "Z": -3065.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814685,9 +814251,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4637.87, + "X": -3895.48, "Y": 168.14, - "Z": -6069.88 + "Z": -1908.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -814845,9 +814411,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4258.49, + "X": -4274.87, "Y": 119.03, - "Z": -7184.91 + "Z": -3023.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815026,9 +814592,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5034.0, + "X": -3499.36, "Y": 192.9, - "Z": -6146.94 + "Z": -1985.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815218,9 +814784,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5398.23, + "X": -3135.13, "Y": 152.75, - "Z": -6004.15 + "Z": -1843.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -815399,9 +814965,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5677.45, + "X": -2855.91, "Y": 123.04, - "Z": -6375.71 + "Z": -2214.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842163,9 +841729,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5990.19, + "X": 5989.2, "Y": -237.07, - "Z": -7862.92 + "Z": -7861.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842320,9 +841886,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6719.07, + "X": 6718.08, "Y": -220.86, - "Z": -7448.83 + "Z": -7447.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842477,9 +842043,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5657.5, + "X": 5656.51, "Y": -230.93, - "Z": -7306.01 + "Z": -7304.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842634,9 +842200,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5599.03, + "X": 5598.05, "Y": -231.03, - "Z": -7703.46 + "Z": -7702.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842802,9 +842368,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6069.88, + "X": 6068.89, "Y": -193.38, - "Z": -7170.43 + "Z": -7169.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842959,9 +842525,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6917.09, + "X": 6916.1, "Y": -200.35, - "Z": -7589.27 + "Z": -7588.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843127,9 +842693,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6234.99, + "X": 6234.01, "Y": -189.0, - "Z": -7908.73 + "Z": -7907.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843284,9 +842850,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5984.9, + "X": 5983.91, "Y": -240.46, - "Z": -7406.83 + "Z": -7405.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843441,9 +843007,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6233.3, + "X": 6232.31, "Y": -208.54, - "Z": -7524.31 + "Z": -7523.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843598,9 +843164,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5777.85, + "X": 5776.87, "Y": -209.72, - "Z": -7604.46 + "Z": -7603.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843755,9 +843321,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6472.52, + "X": 6471.53, "Y": -203.73, - "Z": -7069.5 + "Z": -7068.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843912,9 +843478,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6625.05, + "X": 6624.06, "Y": -223.68, - "Z": -7949.84 + "Z": -7948.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844069,9 +843635,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6458.25, + "X": 6457.26, "Y": -203.78, - "Z": -8174.83 + "Z": -8173.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844247,9 +843813,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 5834.14, + "X": 5833.15, "Y": -185.31, - "Z": -6887.35 + "Z": -6886.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -844415,9 +843981,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 6395.2, + "X": 6394.22, "Y": -205.22, - "Z": -6772.04 + "Z": -6770.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871574,9 +871140,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6217.28, + "X": -6218.37, "Y": 109.85, - "Z": -8044.4 + "Z": -8045.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -871731,9 +871297,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5690.89, + "X": -5691.97, "Y": 139.12, - "Z": -8423.65 + "Z": -8425.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871888,9 +871454,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5708.63, + "X": -5709.72, "Y": 91.46, - "Z": -7749.83 + "Z": -7751.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872076,9 +871642,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5522.73, + "X": -5523.81, "Y": 67.31, - "Z": -7418.12 + "Z": -7419.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872244,9 +871810,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5939.24, + "X": -5940.32, "Y": 100.04, - "Z": -7578.47 + "Z": -7579.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872425,9 +871991,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4690.92, + "X": 4689.96, "Y": -56.97, - "Z": -8160.43 + "Z": -8158.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872582,9 +872148,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4274.94, + "X": 4273.98, "Y": -134.4, - "Z": -7602.7 + "Z": -7601.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872754,9 +872320,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4656.27, + "X": 4655.31, "Y": -19.84, - "Z": -8960.23 + "Z": -8958.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -872926,9 +872492,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4507.33, + "X": 4506.36, "Y": -63.53, - "Z": -8047.62 + "Z": -8045.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873083,9 +872649,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4750.8, + "X": 4749.84, "Y": -42.39, - "Z": -8605.26 + "Z": -8603.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873240,9 +872806,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4980.32, + "X": 4979.36, "Y": -165.67, - "Z": -8014.87 + "Z": -8013.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873397,9 +872963,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4112.53, + "X": 4111.57, "Y": -9.17, - "Z": -8431.67 + "Z": -8430.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873565,9 +873131,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4300.22, + "X": 4299.26, "Y": -85.32, - "Z": -8265.17 + "Z": -8263.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873722,9 +873288,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5337.51, + "X": 5336.54, "Y": -155.33, - "Z": -8173.01 + "Z": -8171.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -873890,9 +873456,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4504.25, + "X": 4503.29, "Y": -43.71, - "Z": -8779.43 + "Z": -8777.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874058,9 +873624,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5220.52, + "X": 5219.56, "Y": -126.41, - "Z": -8125.12 + "Z": -8123.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874226,9 +873792,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4568.94, + "X": 4567.98, "Y": -72.45, - "Z": -7704.92 + "Z": -7703.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874420,9 +873986,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4173.57, + "X": 4172.61, "Y": -93.82, - "Z": -8116.01 + "Z": -8114.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874591,9 +874157,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4963.69, + "X": 4962.73, "Y": -84.11, - "Z": -8663.85 + "Z": -8662.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874762,9 +874328,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 5079.11, + "X": 5078.15, "Y": -65.26, - "Z": -8504.87 + "Z": -8503.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -874933,9 +874499,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4935.61, + "X": 4934.65, "Y": -166.2, - "Z": -7629.53 + "Z": -7627.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875133,9 +874699,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6611.57, + "X": 6610.66, "Y": 112.82, - "Z": -9069.19 + "Z": -9067.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875290,9 +874856,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6829.57, + "X": 6828.66, "Y": 160.61, - "Z": -8412.68 + "Z": -8411.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875447,9 +875013,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6130.67, + "X": 6129.76, "Y": 252.1, - "Z": -8732.78 + "Z": -8731.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875604,9 +875170,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6532.08, + "X": 6531.17, "Y": 135.41, - "Z": -8735.67 + "Z": -8734.47 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -875912,9 +875478,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6913.98, + "X": 6913.07, "Y": 94.78, - "Z": -8962.04 + "Z": -8960.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876100,9 +875666,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6289.98, + "X": 6289.06, "Y": 231.79, - "Z": -8576.54 + "Z": -8575.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876322,9 +875888,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4605.77, + "X": -4606.39, "Y": -77.64, - "Z": -8469.13 + "Z": -8470.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876620,9 +876186,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4319.72, + "X": -4320.34, "Y": -42.95, - "Z": -9146.24 + "Z": -9147.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876788,9 +876354,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4846.8, + "X": -4847.42, "Y": -172.45, - "Z": -9024.85 + "Z": -9026.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -876956,9 +876522,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4108.87, + "X": -4109.48, "Y": 23.44, - "Z": -8518.76 + "Z": -8520.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877134,9 +876700,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4377.4, + "X": -4378.01, "Y": -92.58, - "Z": -8810.81 + "Z": -8812.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882522,9 +882088,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5854.59, + "X": 5853.71, "Y": -300.32, - "Z": -9991.18 + "Z": -9989.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882690,9 +882256,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5589.63, + "X": 5588.74, "Y": -225.58, - "Z": -9297.35 + "Z": -9295.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -882858,9 +882424,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 5776.8, + "X": 5775.92, "Y": -210.37, - "Z": -9494.52 + "Z": -9493.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887240,9 +886806,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7575.32, + "X": -7573.2, "Y": -160.84, - "Z": -5507.57 + "Z": -5505.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887397,9 +886963,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7352.51, + "X": -7350.38, "Y": -103.73, - "Z": -6241.12 + "Z": -6239.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -887554,9 +887120,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7373.62, + "X": -7371.5, "Y": -123.93, - "Z": -5974.71 + "Z": -5973.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888504,9 +888070,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7467.71, + "X": 7466.83, "Y": -115.43, - "Z": -8879.14 + "Z": -8878.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888661,9 +888227,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7480.37, + "X": 7479.48, "Y": -71.41, - "Z": -8732.9 + "Z": -8731.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -888818,9 +888384,9 @@ "Identity Proof": "Single Indicator (Ext: .hlo)" }, "2. Topological Coordinates": { - "X": 7243.78, + "X": 7242.9, "Y": -21.96, - "Z": -8556.98 + "Z": -8555.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889675,9 +889241,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6651.56, + "X": -6653.11, "Y": -5.53, - "Z": -7250.26 + "Z": -7251.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889832,9 +889398,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6929.39, + "X": -6930.94, "Y": 17.77, - "Z": -7123.9 + "Z": -7125.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889989,9 +889555,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6608.58, + "X": -6610.13, "Y": -57.16, - "Z": -7682.67 + "Z": -7684.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -895328,9 +894894,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 6433.88, + "X": 6433.08, "Y": 147.19, - "Z": -9408.6 + "Z": -9407.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897814,9 +897380,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7246.66, + "X": -7244.93, "Y": 164.39, - "Z": -6714.14 + "Z": -6712.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897995,9 +897561,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": 8014.83, + "X": 8013.85, "Y": -23.25, - "Z": -8119.71 + "Z": -8118.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899033,9 +898599,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6374.79, + "X": -6375.86, "Y": 155.1, - "Z": -8019.4 + "Z": -8020.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902646,9 +902212,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5019.03, + "X": -5019.65, "Y": 12.49, - "Z": -9125.97 + "Z": -9127.1 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906079,9 +905645,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5410.69, + "X": -5412.04, "Y": -155.19, - "Z": -9039.29 + "Z": -9041.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906247,9 +905813,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5620.44, + "X": -5621.79, "Y": -246.07, - "Z": -8430.84 + "Z": -8432.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -906404,9 +905970,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5406.77, + "X": -5408.12, "Y": -270.45, - "Z": -8568.81 + "Z": -8570.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -913262,9 +912828,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5415.06, + "X": 5414.16, "Y": 139.72, - "Z": -9770.28 + "Z": -9768.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913805,9 +913371,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7496.36, + "X": -7494.04, "Y": -57.56, - "Z": -5374.93 + "Z": -5373.25 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -913986,9 +913552,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7149.89, + "X": 7148.97, "Y": -122.51, - "Z": -8943.03 + "Z": -8941.86 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -914529,9 +914095,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6939.74, + "X": -6938.04, "Y": 266.93, - "Z": -7016.09 + "Z": -7014.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915253,9 +914819,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5939.56, + "X": -5940.61, "Y": -69.95, - "Z": -8476.72 + "Z": -8478.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915977,9 +915543,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4475.78, + "X": -4476.36, "Y": 175.43, - "Z": -9444.52 + "Z": -9445.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920321,9 +919887,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 6287.57, + "X": 6286.67, "Y": -166.67, - "Z": -9828.73 + "Z": -9827.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -920864,9 +920430,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7630.71, + "X": -7628.65, "Y": -9.01, - "Z": -6241.51 + "Z": -6239.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921045,9 +920611,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 7996.69, + "X": 7995.81, "Y": -156.25, - "Z": -8803.83 + "Z": -8802.84 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -921407,9 +920973,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6855.97, + "X": -6857.46, "Y": 220.39, - "Z": -7798.56 + "Z": -7800.29 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -926472,9 +926038,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4744.85, + "X": 4744.11, "Y": 252.02, - "Z": -9992.86 + "Z": -9991.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -926629,9 +926195,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4487.61, + "X": 4486.86, "Y": 281.75, - "Z": -9895.51 + "Z": -9893.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",