diff --git a/gitgalaxy/core/detector.py b/gitgalaxy/core/detector.py index c449ecceb..0ec1c5c7b 100644 --- a/gitgalaxy/core/detector.py +++ b/gitgalaxy/core/detector.py @@ -1328,6 +1328,7 @@ def splice( orphan_count = 0 duplicate_count = 0 + orphan_names: list[str] = [] func_names = [f.get("name", "") for f in functions] func_name_counts = collections.Counter(func_names) @@ -1383,10 +1384,40 @@ def splice( elif len(func_name) > 3 and token_counts[func_name] <= 1: # If the function name only exists where it was defined, it's an orphan orphan_count += 1 + orphan_names.append(func_name) usage_status = 1 # 1 = Orphan / Unused func["usage_status"] = usage_status + # --- #2731: WHICH ORPHANS DID THE api RULE ALREADY COUNT? --- + # galaxyscope.py's Contextual Baseline Fix converts an imported + # file's orphans into API exposure. A function that is BOTH declared + # public AND uncalled was counted twice by that conversion -- once by + # the language's own `api` rule at its declaration, once as a + # converted orphan -- which is the common shape in library code, + # where the exported functions are exactly the ones with no in-repo + # caller. Count the overlap here (the orchestrator has no code text) + # and let the conversion credit only the remainder. + # + # The test is by NAME, not by span: an orphan's name occurs exactly + # once in the whole file (that is what the census above just proved), + # so a name appearing on a line the api rule matched can only be its + # own declaration -- no false positives are possible. Span + # containment would be both looser and tighter than that: looser + # because a long body can hold an unrelated api hit (C matches every + # non-static local declaration), tighter because the marker can sit + # outside the slicer's own span (JS/TS `export` precedes start_idx, + # php's span starts a line early, a java `@Test` line pulls start_line + # a line back off the `public` one). + api_declared_orphans = 0 + if orphan_names and threat_locations.get("api"): + code_lines = code_stream.splitlines() + api_line_tokens: set[str] = set() + for line_no in set(threat_locations["api"]): + if 0 < line_no <= len(code_lines): + api_line_tokens.update(re.findall(r"\b\w+\b", code_lines[line_no - 1])) + api_declared_orphans = sum(1 for name in orphan_names if name in api_line_tokens) + if orphan_count > 0: equations["orphaned_logic"] = orphan_count if duplicate_count > 0: @@ -1429,6 +1460,10 @@ def splice( round((file_token_mass / 1000000) * 3.00, 5) if file_token_mass is not None else None ), "threat_locations": threat_locations, + # #2731: how many of `orphaned_logic`'s functions the `api` rule + # already counted as public surface. Consumed by galaxyscope.py's + # Contextual Baseline Fix; never a signal in its own right. + "api_declared_orphans": api_declared_orphans, } if profile_regex: result_payload["regex_telemetry"] = regex_telemetry diff --git a/gitgalaxy/galaxyscope.py b/gitgalaxy/galaxyscope.py index 96dcc53bf..3b658c21f 100644 --- a/gitgalaxy/galaxyscope.py +++ b/gitgalaxy/galaxyscope.py @@ -2227,9 +2227,34 @@ def _calculate_risk_exposures(self): if popularity > 0 and "equations" in meta: orphans = meta["equations"].get("orphaned_logic", 0) if orphans > 0: + # #2731: credit only the orphans the language's own `api` + # rule did NOT already count. A function that is both + # declared public and uncalled used to contribute twice -- + # keyword-rosetta's `data/go/a.go` has three exported, + # uncalled functions and recorded raw_arch_api 3 + orphans 3 + # = api 6, three functions for six units of public surface. + # The overlap is the common case, not the exception: a + # library's public functions are exactly the ones with no + # in-repo caller, so `risk_api_exposure` and + # `risk_documentation` (both read the adjusted `api`) were + # inflated most for the most library-shaped code. + # + # detector.py owns the overlap count -- it is a per-function + # name test against the api rule's own match lines, and the + # code text it needs is gone by the time we get here. A + # file-level `orphans - raw_api` subtraction would be wrong: + # a file's api hits also land on public classes, fields and + # grouped constants that are not functions at all, and would + # erase orphans the rule never saw. + already_public = min(meta.get("api_declared_orphans", 0), orphans) + # 1. Convert the dead weight into API Exposure - meta["equations"]["api"] = meta["equations"].get("api", 0) + orphans + meta["equations"]["api"] = meta["equations"].get("api", 0) + (orphans - already_public) # 2. Wipe the Technical Debt + # Unconditional, and independent of the credit above: the + # file is imported, so none of its orphans are dead weight + # -- the already-public ones are simply surface the api + # rule had counted already. meta["equations"]["orphaned_logic"] = 0 # 3. Heal the function metadata diff --git a/tests/core_engine/test_detector.py b/tests/core_engine/test_detector.py index 70b550ec2..c0b0fb420 100644 --- a/tests/core_engine/test_detector.py +++ b/tests/core_engine/test_detector.py @@ -3828,3 +3828,84 @@ def test_detector_yaml_single_line_step_survives_two_line_floor(): names = [f["name"] for f in result["functions"]] assert len(names) == 2, f"expected both the single-line and multi-line run: steps, got {names}" + + +# ============================================================================== +# TEST: WHICH ORPHANS THE api RULE ALREADY COUNTED (#2731) +# ============================================================================== +def test_detector_counts_orphans_the_api_rule_already_declared(): + """ + Regression for #2731: galaxyscope.py's Contextual Baseline Fix converts an + imported file's orphans into API exposure, but had no way to ask whether the + language's own `api` rule had already counted those same declarations -- so + a function that is both declared public and uncalled was counted twice + (keyword-rosetta's `data/go/a.go`: 3 exported, uncalled functions, api 6). + + `api_declared_orphans` is that missing number. Uses the REAL definitions: + the whole point is the interaction with a language's actual api rule. + """ + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + go_detector = StructuralExtractor("go", LANGUAGE_DEFINITIONS) + code = ( + "package main\n" + "\n" + "func ProbeGlobals(env int) int {\n" + " os.Getenv(env)\n" + " return env\n" + "}\n" + "\n" + "func ProbeSafety(value int) int {\n" + " context.Context(value)\n" + " return value\n" + "}\n" + ) + + result = go_detector.splice(code, "") + + assert result["equations"].get("orphaned_logic", 0) == 2, "both exported functions must census as orphans" + assert result["equations"].get("api", 0) >= 2, "go's api rule must count both exported declarations" + assert result["api_declared_orphans"] == 2, ( + "both orphans are declared public -- converting them again would double-count the same identifiers" + ) + + +def test_detector_api_declared_orphans_ignores_hits_outside_the_declaration(): + """ + #2731's overlap test is by NAME, not by span: an api hit that is not on the + orphan's own declaration line is somebody else's public surface and must not + suppress that orphan's conversion. + + C is the sharp case. Its api rule matches any non-`static` declaration-shaped + line, including the local variable declarations inside a function body, so a + span-containment test would call every orphan already-public. A `static` + (file-local) function is not public surface at all: its conversion is the + Contextual Baseline Fix's own business, and #2731 must leave it alone. + """ + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + c_detector = StructuralExtractor("c", LANGUAGE_DEFINITIONS) + code = ( + "static void hidden_helper(void)\n" + "{\n" + " int counter = 0;\n" + " counter++;\n" + "}\n" + "\n" + "void exported_entry(void)\n" + "{\n" + " int scratch = 0;\n" + " scratch++;\n" + "}\n" + ) + + result = c_detector.splice(code, "") + + orphans = {f["name"] for f in result["functions"] if f.get("usage_status") == 1} + assert orphans == {"hidden_helper", "exported_entry"}, ( + f"expected both functions to census as orphans, got {orphans}" + ) + assert result["api_declared_orphans"] == 1, ( + "only the non-static declaration is public surface the api rule already counted -- " + "the static one's body-local `int counter = 0;` api hit must not suppress it" + ) diff --git a/tests/core_engine/test_galaxyscope.py b/tests/core_engine/test_galaxyscope.py index b79aba27e..2ec460039 100644 --- a/tests/core_engine/test_galaxyscope.py +++ b/tests/core_engine/test_galaxyscope.py @@ -1455,6 +1455,103 @@ def test_contextual_baseline_fix_snapshots_raw_signals(self): self.assertEqual(island["equations"]["api"], 1) self.assertEqual(island["equations"]["orphaned_logic"], 4) + # ============================================================================== + # TEST 17c: #2731 -- THE CONTEXTUAL BASELINE FIX CREDITS ONLY NEW SURFACE + # ============================================================================== + def test_contextual_baseline_fix_skips_already_declared_orphans(self): + """ + #2731: a function that is both declared public and uncalled used to be + counted twice by the Contextual Baseline Fix -- once by the language's + own api rule at its declaration, once as a converted orphan (go: three + exported, uncalled functions recorded api 6). Only the orphans the api + rule did NOT already count are new public surface. + + detector.py supplies the overlap as meta["api_declared_orphans"]; the + conversion has to subtract it, and has to stay clamped -- the two numbers + are counted in different passes over the file. + """ + scope = Orchestrator(".", self.mock_config) + + scope.ram_cache = { + # go/a.go's shape: 3 exported functions, none called in-file, all 3 + # already counted by the api rule. Nothing new to credit. + "src/all_exported.go": { + "path": "src/all_exported.go", + "coding_loc": 100, + "lang_id": "go", + "equations": {"api": 3, "orphaned_logic": 3}, + "api_declared_orphans": 3, + }, + # Mixed: 3 orphans, 1 of them already public -> credit the other 2. + "src/mixed.go": { + "path": "src/mixed.go", + "coding_loc": 100, + "lang_id": "go", + "equations": {"api": 1, "orphaned_logic": 3}, + "api_declared_orphans": 1, + }, + # No overlap reported (the pre-#2731 shape, and every language whose + # api rule marks something other than function declarations): the + # original conversion is unchanged. + "src/no_overlap.py": { + "path": "src/no_overlap.py", + "coding_loc": 100, + "lang_id": "python", + "equations": {"api": 2, "orphaned_logic": 3}, + }, + # Defensive: an overlap larger than the orphan count must not + # subtract public surface the api rule genuinely measured. + "src/overclaimed.go": { + "path": "src/overclaimed.go", + "coding_loc": 100, + "lang_id": "go", + "equations": {"api": 4, "orphaned_logic": 2}, + "api_declared_orphans": 5, + }, + } + scope.popularity_scores = dict.fromkeys(scope.ram_cache, 2) + + scope._calculate_risk_exposures() + by_path = {f.get("path"): f for f in scope.parsed_files} + + self.assertEqual( + by_path["src/all_exported.go"]["equations"]["api"], + 3, + "3 exported, uncalled functions must record 3 units of public surface, not 6!", + ) + self.assertEqual( + by_path["src/mixed.go"]["equations"]["api"], 3, "only the un-declared orphans are new surface!" + ) + self.assertEqual( + by_path["src/no_overlap.py"]["equations"]["api"], + 5, + "a file with no reported overlap must convert as before!", + ) + self.assertEqual( + by_path["src/overclaimed.go"]["equations"]["api"], + 4, + "the overlap subtraction is clamped to the orphan count!", + ) + + # The debt wipe is unconditional either way: the file is imported, so + # none of its orphans are dead weight -- an already-declared orphan is + # surface the api rule had counted already, not debt. #2536's raw + # snapshot still carries the pre-adjustment counts. + for path, raw_orphans in ( + ("src/all_exported.go", 3), + ("src/mixed.go", 3), + ("src/no_overlap.py", 3), + ("src/overclaimed.go", 2), + ): + self.assertEqual( + by_path[path]["equations"]["orphaned_logic"], 0, f"{path}: imported file kept its orphan debt!" + ) + self.assertEqual( + by_path[path]["raw_pre_adjustment"]["orphaned_logic"], + raw_orphans, + f"{path}: #2536's raw snapshot must still hold the pre-adjustment orphan count", + ) + # ============================================================================== # TEST 18: WORKER I/O ERRORS & BINARY THREAT ESCALATION # ============================================================================== diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index a1705d7b5..6aa59c6c0 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-09-04T17:02:13.667014+00:00", - "Total Scan Duration": "50.19 seconds" + "Analysis ISO Timestamp": "2026-09-05T00:45:21.199140+00:00", + "Total Scan Duration": "55.55 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -239,7 +239,7 @@ "avg_cognitive_load": 22.578, "avg_safety_score": 45.662, "avg_tech_debt": 28.878, - "avg_documentation": 9.677 + "avg_documentation": 9.553 }, "composition": { "markdown": { @@ -285,7 +285,7 @@ "c": { "files": 40, "loc": 79409, - "impact": 112901.48000000001 + "impact": 112806.48000000001 }, "plaintext": { "files": 72, @@ -320,7 +320,7 @@ "python": { "files": 272, "loc": 71847, - "impact": 41719.98 + "impact": 41570.98 }, "powershell": { "files": 110, @@ -350,7 +350,7 @@ "go": { "files": 46, "loc": 19521, - "impact": 23362.850000000006 + "impact": 23328.850000000006 }, "dockerfile": { "files": 5, @@ -360,7 +360,7 @@ "embedded_python": { "files": 7, "loc": 2020, - "impact": 1773.3000000000002 + "impact": 1764.3000000000002 }, "shell": { "files": 213, @@ -370,7 +370,7 @@ "fortran": { "files": 6, "loc": 18871, - "impact": 49991.92 + "impact": 49990.92 }, "groovy": { "files": 188, @@ -400,12 +400,12 @@ "javascript": { "files": 18, "loc": 23313, - "impact": 18274.86 + "impact": 18218.86 }, "typescript": { "files": 24, "loc": 36020, - "impact": 4337.720000000001 + "impact": 4335.020000000001 }, "jcl": { "files": 185, @@ -425,7 +425,7 @@ "lua": { "files": 109, "loc": 18112, - "impact": 28510.660000000003 + "impact": 28471.660000000003 }, "matlab": { "files": 6, @@ -470,7 +470,7 @@ "rust": { "files": 43, "loc": 25638, - "impact": 14723.86 + "impact": 14722.86 }, "scala": { "files": 7, @@ -520,7 +520,7 @@ "zig": { "files": 32, "loc": 62284, - "impact": 38275.98000000001 + "impact": 37921.98000000001 } }, "ecosystem_fingerprint": { @@ -810,20 +810,20 @@ }, "cpp/NVDA": { "file_count": 12, - "total_mass": 7618.44, + "total_mass": 7599.44, "avg_exposures": { "cognitive_load": 32.3, "safety_score": 45.9, "tech_debt": 32.23, "verification": 40.42, - "api_exposure": 2.51, + "api_exposure": 2.45, "concurrency": 3.35, "state_flux": 55.39, "dead_code": 0.81, "spec_match": 66.67, "stability": 33.33, "churn": 0.0, - "documentation": 11.24, + "documentation": 10.98, "secrets_risk": 0.0 } }, @@ -848,7 +848,7 @@ }, "cpp/godot": { "file_count": 16, - "total_mass": 36981.52, + "total_mass": 36973.52, "avg_exposures": { "cognitive_load": 59.35, "safety_score": 76.73, @@ -1247,20 +1247,20 @@ }, "lua/pandoc": { "file_count": 26, - "total_mass": 1344.84, + "total_mass": 1308.84, "avg_exposures": { "cognitive_load": 25.06, "safety_score": 50.07, "tech_debt": 27.87, "verification": 5.19, - "api_exposure": 1.78, + "api_exposure": 1.65, "concurrency": 0.0, "state_flux": 72.81, "dead_code": 1.12, "spec_match": 50.0, "stability": 46.15, "churn": 0.0, - "documentation": 10.26, + "documentation": 9.33, "secrets_risk": 0.0 } }, @@ -2349,7 +2349,7 @@ }, "typescript/assemblyscript": { "file_count": 5, - "total_mass": 1974.82, + "total_mass": 1974.62, "avg_exposures": { "cognitive_load": 28.3, "safety_score": 51.83, @@ -2362,7 +2362,7 @@ "spec_match": 60.0, "stability": 40.0, "churn": 0.0, - "documentation": 23.06, + "documentation": 22.97, "secrets_risk": 0.0 } }, @@ -2672,7 +2672,7 @@ }, "c/cpython": { "file_count": 8, - "total_mass": 36203.74, + "total_mass": 36197.74, "avg_exposures": { "cognitive_load": 70.42, "safety_score": 92.1, @@ -2710,39 +2710,39 @@ }, "c/doom": { "file_count": 13, - "total_mass": 3474.0, + "total_mass": 3453.0, "avg_exposures": { "cognitive_load": 32.13, "safety_score": 60.76, "tech_debt": 14.87, "verification": 31.86, - "api_exposure": 10.19, + "api_exposure": 10.04, "concurrency": 0.0, "state_flux": 63.06, "dead_code": 8.0, "spec_match": 76.92, "stability": 42.31, "churn": 0.0, - "documentation": 70.21, + "documentation": 69.97, "secrets_risk": 0.0 } }, "c/micropython": { "file_count": 12, - "total_mass": 11112.24, + "total_mass": 11103.24, "avg_exposures": { "cognitive_load": 45.51, "safety_score": 55.78, "tech_debt": 20.81, "verification": 34.68, - "api_exposure": 11.86, + "api_exposure": 11.83, "concurrency": 0.0, "state_flux": 51.24, "dead_code": 4.65, "spec_match": 91.67, "stability": 50.0, "churn": 0.0, - "documentation": 87.75, + "documentation": 87.68, "secrets_risk": 0.0 } }, @@ -2786,39 +2786,39 @@ }, "python/numpy": { "file_count": 18, - "total_mass": 9297.46, + "total_mass": 9286.46, "avg_exposures": { "cognitive_load": 15.55, "safety_score": 47.09, "tech_debt": 19.46, "verification": 40.93, - "api_exposure": 3.09, + "api_exposure": 3.05, "concurrency": 0.0, "state_flux": 42.35, "dead_code": 5.45, "spec_match": 83.33, "stability": 44.44, "churn": 0.0, - "documentation": 18.13, + "documentation": 17.38, "secrets_risk": 0.0 } }, "scheme/racket": { "file_count": 7, - "total_mass": 24879.42, + "total_mass": 24828.42, "avg_exposures": { "cognitive_load": 36.78, "safety_score": 60.05, "tech_debt": 12.71, "verification": 68.57, - "api_exposure": 5.02, + "api_exposure": 4.98, "concurrency": 1.95, "state_flux": 49.56, "dead_code": 2.82, "spec_match": 85.71, "stability": 42.86, "churn": 0.0, - "documentation": 35.44, + "documentation": 35.42, "secrets_risk": 0.0 } }, @@ -2900,39 +2900,39 @@ }, "fortran/wrf": { "file_count": 15, - "total_mass": 60218.62, + "total_mass": 60217.62, "avg_exposures": { "cognitive_load": 46.87, "safety_score": 86.69, "tech_debt": 4.31, "verification": 59.2, - "api_exposure": 5.41, + "api_exposure": 5.4, "concurrency": 3.06, "state_flux": 65.57, "dead_code": 9.26, "spec_match": 60.0, "stability": 46.67, "churn": 0.0, - "documentation": 24.41, + "documentation": 24.3, "secrets_risk": 0.0 } }, "go/core": { "file_count": 8, - "total_mass": 13575.02, + "total_mass": 13552.02, "avg_exposures": { "cognitive_load": 33.71, "safety_score": 71.96, "tech_debt": 24.18, "verification": 60.29, - "api_exposure": 1.96, + "api_exposure": 1.9, "concurrency": 5.27, "state_flux": 75.0, "dead_code": 11.87, "spec_match": 87.5, "stability": 43.75, "churn": 0.0, - "documentation": 22.88, + "documentation": 22.03, "secrets_risk": 0.0 } }, @@ -3508,20 +3508,20 @@ }, "rust/syn": { "file_count": 8, - "total_mass": 694.6, + "total_mass": 693.6, "avg_exposures": { "cognitive_load": 17.61, "safety_score": 28.92, "tech_debt": 42.52, "verification": 2.09, - "api_exposure": 3.49, + "api_exposure": 3.47, "concurrency": 1.86, "state_flux": 42.34, "dead_code": 19.37, "spec_match": 87.5, "stability": 43.75, "churn": 0.0, - "documentation": 23.82, + "documentation": 23.54, "secrets_risk": 0.0 } }, @@ -3717,20 +3717,20 @@ }, "typescript/fp-ts": { "file_count": 5, - "total_mass": 181.4, + "total_mass": 179.5, "avg_exposures": { "cognitive_load": 2.91, "safety_score": 46.62, "tech_debt": 0.0, "verification": 48.46, - "api_exposure": 10.5, + "api_exposure": 10.42, "concurrency": 4.28, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 80.0, "stability": 40.0, "churn": 0.0, - "documentation": 44.34, + "documentation": 41.37, "secrets_risk": 0.0 } }, @@ -3755,20 +3755,20 @@ }, "typescript/vscode": { "file_count": 11, - "total_mass": 1472.92, + "total_mass": 1472.32, "avg_exposures": { "cognitive_load": 37.29, "safety_score": 62.42, "tech_debt": 46.95, "verification": 58.39, - "api_exposure": 4.25, + "api_exposure": 4.21, "concurrency": 39.38, "state_flux": 47.13, "dead_code": 1.55, "spec_match": 72.73, "stability": 40.91, "churn": 0.0, - "documentation": 24.23, + "documentation": 23.42, "secrets_risk": 0.0 } }, @@ -4097,20 +4097,20 @@ }, "embedded_python/meow_turtle": { "file_count": 14, - "total_mass": 2283.92, + "total_mass": 2265.92, "avg_exposures": { "cognitive_load": 21.68, "safety_score": 69.44, "tech_debt": 26.75, "verification": 30.26, - "api_exposure": 5.33, + "api_exposure": 4.79, "concurrency": 10.84, "state_flux": 79.28, "dead_code": 0.0, "spec_match": 7.14, "stability": 50.0, "churn": 0.0, - "documentation": 21.06, + "documentation": 16.61, "secrets_risk": 0.0 } }, @@ -4135,51 +4135,51 @@ }, "python/cython": { "file_count": 4, - "total_mass": 9188.88, + "total_mass": 9177.88, "avg_exposures": { "cognitive_load": 20.77, "safety_score": 61.26, "tech_debt": 84.4, "verification": 41.22, - "api_exposure": 3.61, + "api_exposure": 3.59, "concurrency": 3.18, "state_flux": 47.68, "dead_code": 3.19, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 29.68, + "documentation": 29.39, "secrets_risk": 0.0 } }, "python/fastapi/fastapi": { "file_count": 23, - "total_mass": 3317.3, + "total_mass": 3292.3, "avg_exposures": { "cognitive_load": 6.12, "safety_score": 39.91, "tech_debt": 6.79, "verification": 15.76, - "api_exposure": 2.75, + "api_exposure": 2.42, "concurrency": 15.17, "state_flux": 15.13, "dead_code": 0.21, "spec_match": 60.87, "stability": 50.0, "churn": 0.0, - "documentation": 18.22, + "documentation": 14.88, "secrets_risk": 0.0 } }, "python/fastapi/tests": { "file_count": 204, - "total_mass": 7729.24, + "total_mass": 7691.24, "avg_exposures": { "cognitive_load": 3.35, "safety_score": 13.2, "tech_debt": 0.0, "verification": 0.0, - "api_exposure": 9.4, + "api_exposure": 9.38, "concurrency": 21.5, "state_flux": 0.0, "dead_code": 0.31, @@ -4192,20 +4192,20 @@ }, "python/twisted": { "file_count": 4, - "total_mass": 3319.48, + "total_mass": 3283.48, "avg_exposures": { "cognitive_load": 23.38, "safety_score": 69.47, "tech_debt": 22.93, "verification": 80.0, - "api_exposure": 2.97, + "api_exposure": 2.69, "concurrency": 3.16, "state_flux": 84.37, "dead_code": 4.05, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 19.99, + "documentation": 18.92, "secrets_risk": 6.14 } }, @@ -4249,20 +4249,20 @@ }, "zig/tigerbeetle": { "file_count": 11, - "total_mass": 3975.78, + "total_mass": 3965.78, "avg_exposures": { "cognitive_load": 25.34, "safety_score": 51.88, "tech_debt": 17.79, "verification": 23.6, - "api_exposure": 2.77, + "api_exposure": 2.5, "concurrency": 0.0, "state_flux": 39.3, "dead_code": 1.04, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.15, + "documentation": 21.91, "secrets_risk": 0.0 } }, @@ -4420,20 +4420,20 @@ }, "dockerfile/moby/builder/dockerfile": { "file_count": 18, - "total_mass": 4178.19, + "total_mass": 4177.19, "avg_exposures": { "cognitive_load": 38.43, "safety_score": 76.83, "tech_debt": 64.84, "verification": 36.91, - "api_exposure": 1.03, + "api_exposure": 1.02, "concurrency": 10.58, "state_flux": 88.89, "dead_code": 4.08, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 23.34, + "documentation": 23.28, "secrets_risk": 0.0 } }, @@ -4477,13 +4477,13 @@ }, "dockerfile/moby/builder/remotecontext/internal/tarsum": { "file_count": 5, - "total_mass": 508.82, + "total_mass": 506.82, "avg_exposures": { "cognitive_load": 26.91, "safety_score": 70.14, "tech_debt": 48.46, "verification": 2.44, - "api_exposure": 4.09, + "api_exposure": 4.03, "concurrency": 0.0, "state_flux": 79.84, "dead_code": 1.57, @@ -4515,20 +4515,20 @@ }, "go/kubernetes": { "file_count": 7, - "total_mass": 4362.76, + "total_mass": 4354.76, "avg_exposures": { "cognitive_load": 35.29, "safety_score": 86.68, "tech_debt": 37.33, "verification": 57.83, - "api_exposure": 2.61, + "api_exposure": 2.55, "concurrency": 39.22, "state_flux": 91.45, "dead_code": 4.41, "spec_match": 85.37, "stability": 50.0, "churn": 0.0, - "documentation": 39.43, + "documentation": 37.23, "secrets_risk": 0.0 } }, @@ -4971,20 +4971,20 @@ }, "javascript/react": { "file_count": 5, - "total_mass": 8323.37, + "total_mass": 8267.37, "avg_exposures": { "cognitive_load": 18.19, "safety_score": 32.01, "tech_debt": 42.44, "verification": 49.01, - "api_exposure": 8.08, + "api_exposure": 7.66, "concurrency": 8.62, "state_flux": 17.86, "dead_code": 3.07, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 32.03, + "documentation": 30.41, "secrets_risk": 0.0 } }, @@ -5123,13 +5123,13 @@ }, "lua/cosmopolitan": { "file_count": 43, - "total_mass": 21390.2, + "total_mass": 21389.2, "avg_exposures": { "cognitive_load": 72.05, "safety_score": 64.76, "tech_debt": 19.28, "verification": 34.94, - "api_exposure": 0.66, + "api_exposure": 0.65, "concurrency": 24.67, "state_flux": 91.04, "dead_code": 2.82, @@ -5161,20 +5161,20 @@ }, "lua/freebsd-src": { "file_count": 16, - "total_mass": 3759.8, + "total_mass": 3757.8, "avg_exposures": { "cognitive_load": 40.49, "safety_score": 85.7, "tech_debt": 2.86, "verification": 31.52, - "api_exposure": 2.59, + "api_exposure": 2.57, "concurrency": 0.0, "state_flux": 95.56, "dead_code": 1.67, "spec_match": 56.25, "stability": 50.0, "churn": 0.0, - "documentation": 29.0, + "documentation": 28.72, "secrets_risk": 0.0 } }, @@ -5940,58 +5940,58 @@ }, "zig/zig": { "file_count": 5, - "total_mass": 19657.58, + "total_mass": 19379.58, "avg_exposures": { "cognitive_load": 22.28, "safety_score": 42.57, "tech_debt": 12.38, "verification": 49.0, - "api_exposure": 3.65, + "api_exposure": 3.06, "concurrency": 7.98, "state_flux": 10.58, "dead_code": 5.11, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 34.4, + "documentation": 26.86, "secrets_risk": 0.0 } }, "zig/zls": { "file_count": 6, - "total_mass": 7673.62, + "total_mass": 7613.62, "avg_exposures": { "cognitive_load": 24.58, "safety_score": 22.16, "tech_debt": 10.53, "verification": 28.32, - "api_exposure": 1.81, + "api_exposure": 1.51, "concurrency": 11.37, "state_flux": 9.18, "dead_code": 2.66, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.54, + "documentation": 22.15, "secrets_risk": 0.0 } }, "zig/zls/mach": { "file_count": 8, - "total_mass": 3155.88, + "total_mass": 3149.88, "avg_exposures": { "cognitive_load": 15.68, "safety_score": 32.92, "tech_debt": 36.48, "verification": 41.24, - "api_exposure": 5.9, + "api_exposure": 5.83, "concurrency": 1.67, "state_flux": 15.97, "dead_code": 3.69, "spec_match": 87.5, "stability": 50.0, "churn": 0.0, - "documentation": 45.03, + "documentation": 44.6, "secrets_risk": 0.0 } } @@ -6230,15 +6230,15 @@ "path": "typescript/playwright/api.ts", "value": 17.7857 }, - { - "name": "main.py", - "path": "python/fastapi/tests/main.py", - "value": 17.6488 - }, { "name": "numeric-dump.cob", "path": "cobol/gnucobol/numeric-dump.cob", "value": 17.5679 + }, + { + "name": "alonesym-obj.asm", + "path": "assembly/nasm_testsuite/alonesym-obj.asm", + "value": 17.104 } ], "lowest": [ @@ -6717,10 +6717,10 @@ "doc": 98.3949 }, { - "path": "zig/zig/Type.zig", - "score": 137.39, - "pr": 1.696, - "doc": 81.0081 + "path": "python/fastapi/fastapi/exceptions.py", + "score": 134.071, + "pr": 5.738, + "doc": 23.3655 } ] }, @@ -118382,7 +118382,7 @@ } }, "fortran/wrf": { - "Directory Group Magnitude": 60218.62, + "Directory Group Magnitude": 60217.62, "File Count": 15, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "93.3%", @@ -118393,14 +118393,14 @@ "Error & Exception Exposure": "86.69%", "Tech Debt Exposure": "4.31%", "Testing Exposure": "59.2%", - "API Exposure": "5.41%", + "API Exposure": "5.4%", "Concurrency Exposure": "3.06%", "State Flux Exposure": "65.57%", "Commented Logic Exposure": "9.26%", "Specification Exposure": "60.0%", "Instability Exposure": "46.67%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.41%", + "Documentation Exposure": "24.3%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -120372,9 +120372,9 @@ "Identity Proof": "Single Indicator (Ext: .f)" }, "2. Topological Coordinates": { - "X": 10829.59, + "X": 10829.57, "Y": 135.03, - "Z": 2503.47 + "Z": 2503.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -120386,7 +120386,7 @@ "Total LOC": 859, "Coding LOC": 579, "Documentation LOC": 156, - "Structural Magnitude": 629.88, + "Structural Magnitude": 628.88, "Control Flow Ratio": "53.7%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -120399,14 +120399,14 @@ "Error & Exception Exposure": "89.88%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "8.02%", + "API Exposure": "7.81%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.24%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.73%", + "Documentation Exposure": "36.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -120562,7 +120562,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 298, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 10, @@ -139596,7 +139596,7 @@ } }, "cpp/godot": { - "Directory Group Magnitude": 36981.52, + "Directory Group Magnitude": 36973.52, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "81.2%", @@ -139945,9 +139945,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -989.39, + "X": -989.36, "Y": -58.81, - "Z": 8735.1 + "Z": 8734.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139959,7 +139959,7 @@ "Total LOC": 1155, "Coding LOC": 902, "Documentation LOC": 82, - "Structural Magnitude": 855.84, + "Structural Magnitude": 847.84, "Control Flow Ratio": "16.3%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -139972,7 +139972,7 @@ "Error & Exception Exposure": "82.0%", "Tech Debt Exposure": "9.29%", "Testing Exposure": "80.0%", - "API Exposure": "15.57%", + "API Exposure": "15.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.69%", "Commented Logic Exposure": "0.0%", @@ -140285,7 +140285,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 419, + "Exposed API / Public Exports": 411, "State Mutations / Variable Reassignments": 331, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 10, @@ -153224,7 +153224,7 @@ } }, "c/cpython": { - "Directory Group Magnitude": 36203.74, + "Directory Group Magnitude": 36197.74, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -155858,7 +155858,7 @@ "2. Topological Coordinates": { "X": -7429.68, "Y": 145.69, - "Z": 533.4 + "Z": 533.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -155870,7 +155870,7 @@ "Total LOC": 3840, "Coding LOC": 3294, "Documentation LOC": 244, - "Structural Magnitude": 6214.98, + "Structural Magnitude": 6208.98, "Control Flow Ratio": "68.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -155883,7 +155883,7 @@ "Error & Exception Exposure": "95.62%", "Tech Debt Exposure": "9.09%", "Testing Exposure": "80.0%", - "API Exposure": "15.95%", + "API Exposure": "15.93%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "4.96%", @@ -157056,7 +157056,7 @@ "Type/Safety Bypasses": 42, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 838, + "Exposed API / Public Exports": 832, "State Mutations / Variable Reassignments": 1830, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 5, @@ -195438,7 +195438,7 @@ } }, "scheme/racket": { - "Directory Group Magnitude": 24879.42, + "Directory Group Magnitude": 24828.42, "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "85.7%", @@ -195449,14 +195449,14 @@ "Error & Exception Exposure": "60.05%", "Tech Debt Exposure": "12.71%", "Testing Exposure": "68.57%", - "API Exposure": "5.02%", + "API Exposure": "4.98%", "Concurrency Exposure": "1.95%", "State Flux Exposure": "49.56%", "Commented Logic Exposure": "2.82%", "Specification Exposure": "85.71%", "Instability Exposure": "42.86%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.44%", + "Documentation Exposure": "35.42%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -195473,9 +195473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 10757.09, + "X": 10757.22, "Y": -107.46, - "Z": 3755.01 + "Z": 3754.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -195487,7 +195487,7 @@ "Total LOC": 4146, "Coding LOC": 3169, "Documentation LOC": 366, - "Structural Magnitude": 5279.98, + "Structural Magnitude": 5228.98, "Control Flow Ratio": "79.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -195500,14 +195500,14 @@ "Error & Exception Exposure": "99.72%", "Tech Debt Exposure": "7.92%", "Testing Exposure": "80.0%", - "API Exposure": "14.53%", + "API Exposure": "14.26%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.81%", + "Documentation Exposure": "99.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -196653,7 +196653,7 @@ "Type/Safety Bypasses": 128, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 650, + "Exposed API / Public Exports": 599, "State Mutations / Variable Reassignments": 2741, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 4, @@ -219942,7 +219942,7 @@ } }, "lua/cosmopolitan": { - "Directory Group Magnitude": 21390.2, + "Directory Group Magnitude": 21389.2, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -219952,7 +219952,7 @@ "Error & Exception Exposure": "64.76%", "Tech Debt Exposure": "19.28%", "Testing Exposure": "34.94%", - "API Exposure": "0.66%", + "API Exposure": "0.65%", "Concurrency Exposure": "24.67%", "State Flux Exposure": "91.04%", "Commented Logic Exposure": "2.82%", @@ -219976,9 +219976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3819.29, - "Y": 78.39, - "Z": 8151.43 + "X": -3819.26, + "Y": 78.4, + "Z": 8151.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -219990,7 +219990,7 @@ "Total LOC": 313, "Coding LOC": 204, "Documentation LOC": 48, - "Structural Magnitude": 264.18, + "Structural Magnitude": 263.18, "Control Flow Ratio": "43.7%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -220003,7 +220003,7 @@ "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.2%", + "API Exposure": "0.07%", "Concurrency Exposure": "52.4%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.22%", @@ -220176,7 +220176,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 152, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -235100,7 +235100,7 @@ } }, "zig/zig": { - "Directory Group Magnitude": 19657.58, + "Directory Group Magnitude": 19379.58, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -235110,14 +235110,14 @@ "Error & Exception Exposure": "42.57%", "Tech Debt Exposure": "12.38%", "Testing Exposure": "49.0%", - "API Exposure": "3.65%", + "API Exposure": "3.06%", "Concurrency Exposure": "7.98%", "State Flux Exposure": "10.58%", "Commented Logic Exposure": "5.11%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.4%", + "Documentation Exposure": "26.86%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -235134,9 +235134,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11527.4, - "Y": -179.01, - "Z": 1814.73 + "X": 11526.94, + "Y": -178.95, + "Z": 1815.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235148,7 +235148,7 @@ "Total LOC": 8171, "Coding LOC": 6509, "Documentation LOC": 858, - "Structural Magnitude": 4248.48, + "Structural Magnitude": 4230.48, "Control Flow Ratio": "73.1%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -235161,14 +235161,14 @@ "Error & Exception Exposure": "25.04%", "Tech Debt Exposure": "15.31%", "Testing Exposure": "2.53%", - "API Exposure": "2.19%", + "API Exposure": "1.97%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.95%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.67%", + "Documentation Exposure": "16.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237014,7 +237014,7 @@ "Type/Safety Bypasses": 257, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 176, + "Exposed API / Public Exports": 158, "State Mutations / Variable Reassignments": 392, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 385, @@ -237152,9 +237152,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11428.44, - "Y": -93.04, - "Z": 2208.66 + "X": 11102.47, + "Y": -101.94, + "Z": 2508.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237166,7 +237166,7 @@ "Total LOC": 13040, "Coding LOC": 10787, "Documentation LOC": 1198, - "Structural Magnitude": 5282.14, + "Structural Magnitude": 5163.14, "Control Flow Ratio": "55.3%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -237179,14 +237179,14 @@ "Error & Exception Exposure": "57.68%", "Tech Debt Exposure": "16.42%", "Testing Exposure": "80.0%", - "API Exposure": "4.38%", + "API Exposure": "3.65%", "Concurrency Exposure": "25.65%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.7%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.5%", + "Documentation Exposure": "27.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241572,7 +241572,7 @@ "Type/Safety Bypasses": 547, "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 621, + "Exposed API / Public Exports": 502, "State Mutations / Variable Reassignments": 439, "Commented-out Code (Dead Logic)": 28, "Structured Documentation Blocks": 965, @@ -241684,9 +241684,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11827.8, - "Y": 22.29, - "Z": 2724.7 + "X": 11826.81, + "Y": 22.08, + "Z": 2723.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -241698,7 +241698,7 @@ "Total LOC": 4357, "Coding LOC": 3675, "Documentation LOC": 275, - "Structural Magnitude": 2672.8, + "Structural Magnitude": 2583.8, "Control Flow Ratio": "54.3%", "Popularity Rank": 6, "Raw Churn Frequency": 0.0, @@ -241711,14 +241711,14 @@ "Error & Exception Exposure": "36.56%", "Tech Debt Exposure": "8.65%", "Testing Exposure": "80.0%", - "API Exposure": "7.57%", + "API Exposure": "6.33%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "81.01%", + "Documentation Exposure": "61.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243624,7 +243624,7 @@ "Type/Safety Bypasses": 157, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 381, + "Exposed API / Public Exports": 292, "State Mutations / Variable Reassignments": 83, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 187, @@ -243740,9 +243740,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 10948.13, - "Y": -146.11, - "Z": 2185.57 + "X": 10948.49, + "Y": -145.97, + "Z": 2185.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243754,7 +243754,7 @@ "Total LOC": 4802, "Coding LOC": 3619, "Documentation LOC": 755, - "Structural Magnitude": 2288.58, + "Structural Magnitude": 2236.58, "Control Flow Ratio": "64.5%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -243767,14 +243767,14 @@ "Error & Exception Exposure": "61.09%", "Tech Debt Exposure": "13.14%", "Testing Exposure": "2.49%", - "API Exposure": "3.82%", + "API Exposure": "3.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.79%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -245070,7 +245070,7 @@ "Type/Safety Bypasses": 149, "High-Risk Execution Commands": 76, "I/O and Network Boundaries": 12, - "Exposed API / Public Exports": 244, + "Exposed API / Public Exports": 192, "State Mutations / Variable Reassignments": 310, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 598, @@ -245196,9 +245196,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11120.43, - "Y": -87.85, - "Z": 2311.47 + "X": 11445.89, + "Y": -78.94, + "Z": 2011.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -271146,7 +271146,7 @@ } }, "go/core": { - "Directory Group Magnitude": 13575.02, + "Directory Group Magnitude": 13552.02, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -271157,14 +271157,14 @@ "Error & Exception Exposure": "71.96%", "Tech Debt Exposure": "24.18%", "Testing Exposure": "60.29%", - "API Exposure": "1.96%", + "API Exposure": "1.9%", "Concurrency Exposure": "5.27%", "State Flux Exposure": "75.0%", "Commented Logic Exposure": "11.87%", "Specification Exposure": "87.5%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.88%", + "Documentation Exposure": "22.03%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -271338,9 +271338,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 8448.56, + "X": 8448.55, "Y": 139.47, - "Z": -665.93 + "Z": -665.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -271573,7 +271573,7 @@ }, "2. Topological Coordinates": { "X": 7440.59, - "Y": 142.79, + "Y": 142.8, "Z": -414.18 }, "3. Architectural Profile": { @@ -272282,7 +272282,7 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7992.46, + "X": 7992.45, "Y": 203.93, "Z": -301.1 }, @@ -272296,7 +272296,7 @@ "Total LOC": 8177, "Coding LOC": 4603, "Documentation LOC": 2802, - "Structural Magnitude": 5078.76, + "Structural Magnitude": 5076.76, "Control Flow Ratio": "81.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -272309,7 +272309,7 @@ "Error & Exception Exposure": "96.8%", "Tech Debt Exposure": "8.77%", "Testing Exposure": "80.0%", - "API Exposure": "0.33%", + "API Exposure": "0.32%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "8.66%", @@ -274782,7 +274782,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 55, + "Exposed API / Public Exports": 53, "State Mutations / Variable Reassignments": 2797, "Commented-out Code (Dead Logic)": 23, "Structured Documentation Blocks": 908, @@ -274908,9 +274908,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7968.27, + "X": 7968.26, "Y": 96.92, - "Z": -690.59 + "Z": -690.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -276705,7 +276705,7 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 8274.5, + "X": 8274.49, "Y": 317.69, "Z": 141.22 }, @@ -277939,9 +277939,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7666.6, - "Y": 213.84, - "Z": -171.55 + "X": 7666.68, + "Y": 213.82, + "Z": -171.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -277953,7 +277953,7 @@ "Total LOC": 3901, "Coding LOC": 2517, "Documentation LOC": 1053, - "Structural Magnitude": 3251.84, + "Structural Magnitude": 3230.84, "Control Flow Ratio": "69.5%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -277966,14 +277966,14 @@ "Error & Exception Exposure": "96.42%", "Tech Debt Exposure": "9.18%", "Testing Exposure": "80.0%", - "API Exposure": "3.05%", + "API Exposure": "2.61%", "Concurrency Exposure": "12.25%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "11.12%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.58%", + "Documentation Exposure": "25.76%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -279909,7 +279909,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 140, + "Exposed API / Public Exports": 119, "State Mutations / Variable Reassignments": 1481, "Commented-out Code (Dead Logic)": 23, "Structured Documentation Blocks": 442, @@ -314238,7 +314238,7 @@ } }, "c/micropython": { - "Directory Group Magnitude": 11112.24, + "Directory Group Magnitude": 11103.24, "File Count": 12, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -314248,14 +314248,14 @@ "Error & Exception Exposure": "55.78%", "Tech Debt Exposure": "20.81%", "Testing Exposure": "34.68%", - "API Exposure": "11.86%", + "API Exposure": "11.83%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "51.24%", "Commented Logic Exposure": "4.65%", "Specification Exposure": "91.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "87.75%", + "Documentation Exposure": "87.68%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -316922,9 +316922,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 6798.37, - "Y": -108.65, - "Z": 6110.35 + "X": 6798.32, + "Y": -108.66, + "Z": 6110.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -316936,7 +316936,7 @@ "Total LOC": 1408, "Coding LOC": 981, "Documentation LOC": 258, - "Structural Magnitude": 1449.92, + "Structural Magnitude": 1440.92, "Control Flow Ratio": "70.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -316949,14 +316949,14 @@ "Error & Exception Exposure": "98.57%", "Tech Debt Exposure": "10.5%", "Testing Exposure": "80.0%", - "API Exposure": "12.12%", + "API Exposure": "11.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.81%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.96%", + "Documentation Exposure": "97.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -317232,7 +317232,7 @@ "Type/Safety Bypasses": 25, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 141, + "Exposed API / Public Exports": 132, "State Mutations / Variable Reassignments": 786, "Commented-out Code (Dead Logic)": 6, "Structured Documentation Blocks": 0, @@ -320986,7 +320986,7 @@ } }, "python/numpy": { - "Directory Group Magnitude": 9297.46, + "Directory Group Magnitude": 9286.46, "File Count": 18, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "88.9%", @@ -320997,14 +320997,14 @@ "Error & Exception Exposure": "47.09%", "Tech Debt Exposure": "19.46%", "Testing Exposure": "40.93%", - "API Exposure": "3.09%", + "API Exposure": "3.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.35%", "Commented Logic Exposure": "5.45%", "Specification Exposure": "83.33%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.13%", + "Documentation Exposure": "17.38%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -321021,9 +321021,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4890.07, - "Y": -140.51, - "Z": 1603.64 + "X": -4890.04, + "Y": -140.52, + "Z": 1603.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -321283,7 +321283,7 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5551.71, + "X": -5551.65, "Y": -224.82, "Z": 860.97 }, @@ -321440,9 +321440,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -4057.96, + "X": -4057.95, "Y": -186.54, - "Z": 1340.87 + "Z": 1340.85 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -321597,9 +321597,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5139.17, - "Y": -129.48, - "Z": 1641.44 + "X": -5139.13, + "Y": -129.49, + "Z": 1641.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -321755,9 +321755,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4377.4, - "Y": -158.26, - "Z": 1470.53 + "X": -4377.39, + "Y": -158.27, + "Z": 1470.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322729,7 +322729,7 @@ "2. Topological Coordinates": { "X": -4112.1, "Y": -245.15, - "Z": 1213.53 + "Z": 1213.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322931,9 +322931,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4667.39, + "X": -4667.37, "Y": -211.77, - "Z": 930.47 + "Z": 930.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322945,7 +322945,7 @@ "Total LOC": 8995, "Coding LOC": 2955, "Documentation LOC": 4615, - "Structural Magnitude": 3105.5, + "Structural Magnitude": 3100.5, "Control Flow Ratio": "51.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -322958,7 +322958,7 @@ "Error & Exception Exposure": "47.63%", "Tech Debt Exposure": "10.17%", "Testing Exposure": "80.0%", - "API Exposure": "1.69%", + "API Exposure": "1.65%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "55.63%", "Commented Logic Exposure": "5.12%", @@ -325661,7 +325661,7 @@ "Type/Safety Bypasses": 50, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 188, + "Exposed API / Public Exports": 183, "State Mutations / Variable Reassignments": 194, "Commented-out Code (Dead Logic)": 8, "Structured Documentation Blocks": 205, @@ -325789,9 +325789,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5050.62, - "Y": -160.41, - "Z": 1064.71 + "X": -5050.57, + "Y": -160.42, + "Z": 1064.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326672,7 +326672,7 @@ "2. Topological Coordinates": { "X": -4256.73, "Y": -262.0, - "Z": 508.8 + "Z": 508.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326903,9 +326903,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5280.42, - "Y": -258.35, - "Z": 897.89 + "X": -5280.18, + "Y": -258.34, + "Z": 897.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326917,7 +326917,7 @@ "Total LOC": 560, "Coding LOC": 408, "Documentation LOC": 71, - "Structural Magnitude": 381.66, + "Structural Magnitude": 375.66, "Control Flow Ratio": "41.0%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -326930,14 +326930,14 @@ "Error & Exception Exposure": "87.09%", "Tech Debt Exposure": "24.01%", "Testing Exposure": "80.0%", - "API Exposure": "6.77%", + "API Exposure": "6.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.97%", "Commented Logic Exposure": "5.52%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "49.4%", + "Documentation Exposure": "35.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -327403,7 +327403,7 @@ "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 43, + "Exposed API / Public Exports": 37, "State Mutations / Variable Reassignments": 107, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 14, @@ -327522,9 +327522,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -5322.42, + "X": -5322.36, "Y": -123.14, - "Z": 1164.46 + "Z": 1164.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -327715,9 +327715,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4449.73, - "Y": -388.41, - "Z": 360.5 + "X": -4449.72, + "Y": -388.4, + "Z": 360.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -328102,9 +328102,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4819.62, - "Y": -374.34, - "Z": 158.24 + "X": -4819.59, + "Y": -374.33, + "Z": 158.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -328276,9 +328276,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4683.1, + "X": -4683.07, "Y": -340.1, - "Z": 587.49 + "Z": 587.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329219,9 +329219,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4977.35, + "X": -4977.31, "Y": -332.24, - "Z": 213.93 + "Z": 213.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329554,9 +329554,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4479.6, + "X": -4479.58, "Y": -72.06, - "Z": 1406.24 + "Z": 1406.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329729,9 +329729,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -5373.47, + "X": -5373.42, "Y": -295.89, - "Z": 375.45 + "Z": 375.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329913,7 +329913,7 @@ } }, "python/cython": { - "Directory Group Magnitude": 9188.88, + "Directory Group Magnitude": 9177.88, "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -329923,14 +329923,14 @@ "Error & Exception Exposure": "61.26%", "Tech Debt Exposure": "84.4%", "Testing Exposure": "41.22%", - "API Exposure": "3.61%", + "API Exposure": "3.59%", "Concurrency Exposure": "3.18%", "State Flux Exposure": "47.68%", "Commented Logic Exposure": "3.19%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.68%", + "Documentation Exposure": "29.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -329948,9 +329948,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6770.65, + "X": -6768.96, "Y": -18.75, - "Z": -4422.76 + "Z": -4421.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -330139,9 +330139,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6980.94, + "X": -6979.25, "Y": 2.31, - "Z": -5327.68 + "Z": -5326.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -330458,9 +330458,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7322.42, + "X": -7320.74, "Y": 23.75, - "Z": -4632.48 + "Z": -4631.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -331461,9 +331461,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7017.64, + "X": -7015.95, "Y": 32.59, - "Z": -4937.23 + "Z": -4936.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -331475,7 +331475,7 @@ "Total LOC": 10867, "Coding LOC": 7698, "Documentation LOC": 1568, - "Structural Magnitude": 8375.76, + "Structural Magnitude": 8364.76, "Control Flow Ratio": "60.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -331488,14 +331488,14 @@ "Error & Exception Exposure": "71.4%", "Tech Debt Exposure": "77.07%", "Testing Exposure": "80.0%", - "API Exposure": "8.74%", + "API Exposure": "8.65%", "Concurrency Exposure": "12.7%", "State Flux Exposure": "97.26%", "Commented Logic Exposure": "7.74%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "71.86%", + "Documentation Exposure": "70.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -336291,7 +336291,7 @@ "Type/Safety Bypasses": 106, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 565, + "Exposed API / Public Exports": 554, "State Mutations / Variable Reassignments": 1150, "Commented-out Code (Dead Logic)": 63, "Structured Documentation Blocks": 46, @@ -346564,7 +346564,7 @@ } }, "javascript/react": { - "Directory Group Magnitude": 8323.37, + "Directory Group Magnitude": 8267.37, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -346574,14 +346574,14 @@ "Error & Exception Exposure": "32.01%", "Tech Debt Exposure": "42.44%", "Testing Exposure": "49.01%", - "API Exposure": "8.08%", + "API Exposure": "7.66%", "Concurrency Exposure": "8.62%", "State Flux Exposure": "17.86%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.03%", + "Documentation Exposure": "30.41%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -346599,8 +346599,8 @@ }, "2. Topological Coordinates": { "X": 3101.32, - "Y": -96.09, - "Z": -9884.15 + "Y": -96.08, + "Z": -9884.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -346612,7 +346612,7 @@ "Total LOC": 4449, "Coding LOC": 3357, "Documentation LOC": 779, - "Structural Magnitude": 1862.24, + "Structural Magnitude": 1859.24, "Control Flow Ratio": "68.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -346625,7 +346625,7 @@ "Error & Exception Exposure": "39.74%", "Tech Debt Exposure": "14.83%", "Testing Exposure": "80.0%", - "API Exposure": "5.71%", + "API Exposure": "4.95%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "11.79%", "Commented Logic Exposure": "4.93%", @@ -347358,7 +347358,7 @@ "Type/Safety Bypasses": 13, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 158, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 1, @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2746.96, - "Y": -174.73, - "Z": -9332.93 + "X": 2747.21, + "Y": -174.69, + "Z": -9333.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347526,7 +347526,7 @@ "Total LOC": 5622, "Coding LOC": 4171, "Documentation LOC": 1028, - "Structural Magnitude": 2494.72, + "Structural Magnitude": 2441.72, "Control Flow Ratio": "70.8%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -347539,14 +347539,14 @@ "Error & Exception Exposure": "40.12%", "Tech Debt Exposure": "16.54%", "Testing Exposure": "80.0%", - "API Exposure": "11.13%", + "API Exposure": "9.81%", "Concurrency Exposure": "12.33%", "State Flux Exposure": "19.97%", "Commented Logic Exposure": "5.36%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.22%", + "Documentation Exposure": "16.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -348792,7 +348792,7 @@ "Type/Safety Bypasses": 51, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 121, + "Exposed API / Public Exports": 68, "State Mutations / Variable Reassignments": 248, "Commented-out Code (Dead Logic)": 8, "Structured Documentation Blocks": 4, @@ -351042,44 +351042,46 @@ } } }, - "python/fastapi/tests": { - "Directory Group Magnitude": 7729.24, - "File Count": 204, + "javascript/threejs": { + "Directory Group Magnitude": 7700.5, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "3.35%", - "Error & Exception Exposure": "13.2%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "9.4%", - "Concurrency Exposure": "21.5%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.31%", - "Specification Exposure": "99.51%", + "Cognitive Load Exposure": "50.61%", + "Error & Exception Exposure": "72.31%", + "Tech Debt Exposure": "54.92%", + "Testing Exposure": "80.0%", + "API Exposure": "1.54%", + "Concurrency Exposure": "32.43%", + "State Flux Exposure": "83.36%", + "Commented Logic Exposure": "3.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "12.46%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "python/fastapi/tests/__init__.py": { + "javascript/threejs/BufferGeometry.js": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "python/fastapi/tests/__init__.py", - "Language": "Python", + "Filename": "BufferGeometry.js", + "Path": "javascript/threejs/BufferGeometry.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", + "Parent Entity": "EventDispatcher", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Alert": "TYPOSQUATTING THREAT: 'math/Vector2.js' mimics 'math/Vector3.js'", + "Folder Dominant Lang": "javascript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3175.53, - "Y": -11.84, - "Z": 2270.55 + "X": 8675.64, + "Y": -105.68, + "Z": -732.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351088,69 +351090,1010 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1, - "Coding LOC": 0, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 1459, + "Coding LOC": 588, + "Documentation LOC": 377, + "Structural Magnitude": 616.46, + "Control Flow Ratio": "55.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.27 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "44.46%", + "Error & Exception Exposure": "96.2%", + "Tech Debt Exposure": "45.97%", + "Testing Exposure": "80.0%", + "API Exposure": "1.9%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "5.03%", + "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": "computeTangents", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 158, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "61.9%", + "Start Line": 822, + "End Line": 979 + }, + { + "Function Name": "computeBoundingSphere", + "Structural Impact": 20.6, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 14, + "Input Parameters": 0, + "Control Flow Ratio": "70.0%", + "Start Line": 703, + "End Line": 813 + }, + { + "Function Name": "toJSON", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "76.5%", + "Start Line": 1212, + "End Line": 1320 + }, + { + "Function Name": "copy", + "Structural Impact": 16.5, + "Lines of Code (LOC)": 104, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 1339, + "End Line": 1442 + }, + { + "Function Name": "computeBoundingBox", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "85.7%", + "Start Line": 628, + "End Line": 696 + }, + { + "Function Name": "toNonIndexed", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "52.9%", + "Start Line": 1105, + "End Line": 1205 + }, + { + "Function Name": "setFromPoints", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 581, + "End Line": 621 + }, + { + "Function Name": "computeVertexNormals", + "Structural Impact": 13.6, + "Lines of Code (LOC)": 91, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 987, + "End Line": 1077 + }, + { + "Function Name": "applyMatrix4", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 363, + "End Line": 411 + }, + { + "Function Name": "convertBufferAttribute", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1107, + "End Line": 1139 + }, + { + "Function Name": "setIndex", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 217, + "End Line": 231 + }, + { + "Function Name": "handleTriangle", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 872, + "End Line": 905 + }, + { + "Function Name": "handleVertex", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 940, + "End Line": 960 + }, + { + "Function Name": "normalizeNormals", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1083, + "End Line": 1097 + }, + { + "Function Name": "addGroup", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 322, + "End Line": 332 + }, + { + "Function Name": "translate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 499, + "End Line": 509 + }, + { + "Function Name": "scale", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 521, + "End Line": 531 + }, + { + "Function Name": "setIndirect", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 247 + }, + { + "Function Name": "setAttribute", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 280, + "End Line": 286 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 146, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 198 + }, + { + "Function Name": "setDrawRange", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 350, + "End Line": 355 + }, + { + "Function Name": "rotateX", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 447 + }, + { + "Function Name": "rotateY", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 467 + }, + { + "Function Name": "rotateZ", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 477, + "End Line": 487 + }, + { + "Function Name": "lookAt", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 541, + "End Line": 551 + }, + { + "Function Name": "applyQuaternion", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 419, + "End Line": 427 + }, + { + "Function Name": "deleteAttribute", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 294, + "End Line": 300 + }, + { + "Function Name": "getAttribute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 271 + }, + { + "Function Name": "hasAttribute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 308, + "End Line": 312 + }, + { + "Function Name": "center", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 568 + }, + { + "Function Name": "getIndex", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 209 + }, + { + "Function Name": "getIndirect", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 254, + "End Line": 258 + }, + { + "Function Name": "clearGroups", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 337, + "End Line": 341 + }, + { + "Function Name": "clone", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1327, + "End Line": 1331 + }, + { + "Function Name": "dispose", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1450, + "End Line": 1454 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 93, + "Sequential Logic Declarations": 74, + "Function Parameters": 35, + "Function/Method Declarations": 35, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 28, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 387, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 48, + "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": 2, + "Module Dependencies (Imports)": 11, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 1, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 40, + "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": 98, + "Resource Deallocation & Cleanup": 4, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 564, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 2, + "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": 4, + "Core Var Decl": 136, + "Design Camel Case": 46, + "Design Snake Case": 89, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 37, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 13, + "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": 1, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 1, + "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)": 11, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../math/Box3.js", + "../math/MathUtils.js", + "../math/Matrix3.js", + "../math/Matrix4.js", + "../math/Sphere.js", + "../math/Vector2.js", + "../math/Vector3.js", + "../utils.js", + "./BufferAttribute.js", + "./EventDispatcher.js", + "./Object3D.js" + ] + }, + "javascript/threejs/Editor.js": { + "1. Artifact Identity": { + "Filename": "Editor.js", + "Path": "javascript/threejs/Editor.js", + "Language": "Javascript", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "javascript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .js)" + }, + "2. Topological Coordinates": { + "X": 7778.63, + "Y": -115.56, + "Z": -1197.58 + }, + "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": 820, + "Coding LOC": 458, + "Documentation LOC": 14, + "Structural Magnitude": 616.06, + "Control Flow Ratio": "54.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.016 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "74.37%", + "Error & Exception Exposure": "98.91%", + "Tech Debt Exposure": "71.89%", + "Testing Exposure": "80.0%", + "API Exposure": "2.07%", + "Concurrency Exposure": "72.74%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "addHelper", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 18, + "Input Parameters": 0, + "Control Flow Ratio": "78.3%", + "Start Line": 392, + "End Line": 476 + }, + { + "Function Name": "addObject", + "Structural Impact": 11.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 179, + "End Line": 207 + }, + { + "Function Name": "setObjectMaterial", + "Structural Impact": 8.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 540, + "End Line": 552 + }, + { + "Function Name": "fromJSON", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 674, + "End Line": 707 + }, + { + "Function Name": "addMaterial", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 251, + "End Line": 269 + }, + { + "Function Name": "removeMaterial", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 291, + "End Line": 309 + }, + { + "Function Name": "getMaterialById", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 331, + "End Line": 349 + }, + { + "Function Name": "toJSON", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 709, + "End Line": 748 + }, + { + "Function Name": "removeScript", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 510, + "End Line": 524 + }, + { + "Function Name": "getObjectMaterial", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 526, + "End Line": 538 + }, + { + "Function Name": "save", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 787, + "End Line": 799 + }, + { + "Function Name": "removeObject", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 216, + "End Line": 236 + }, + { + "Function Name": "addMaterialToRefCounter", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 271, + "End Line": 289 + }, + { + "Function Name": "removeMaterialFromRefCounter", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 311, + "End Line": 329 + }, + { + "Function Name": "setScene", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 147, + "End Line": 175 + }, + { + "Function Name": "addScript", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 496, + "End Line": 508 + }, + { + "Function Name": "removeHelper", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 478, + "End Line": 492 + }, + { + "Function Name": "selectByUuid", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 589, + "End Line": 603 + }, + { + "Function Name": "clear", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 627, + "End Line": 670 + }, + { + "Function Name": "addCamera", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 366, + "End Line": 376 + }, + { + "Function Name": "removeCamera", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 378, + "End Line": 388 + }, + { + "Function Name": "selectById", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 576, + "End Line": 587 + }, + { + "Function Name": "focus", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 611, + "End Line": 619 + }, + { + "Function Name": "setViewportCamera", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 554, + "End Line": 559 + }, + { + "Function Name": "Editor", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 129, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 15, + "End Line": 143 + }, + { + "Function Name": "updateMatrixWorld", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 415, + "End Line": 433 + }, + { + "Function Name": "nameObject", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 209, + "End Line": 214 + }, + { + "Function Name": "setGeometryName", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 249 + }, + { + "Function Name": "setMaterialName", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 351, + "End Line": 356 + }, + { + "Function Name": "execute", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 756, + "End Line": 760 + }, + { + "Function Name": "saveArrayBuffer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 801, + "End Line": 805 + }, + { + "Function Name": "saveString", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 807, + "End Line": 811 + }, + { + "Function Name": "addGeometry", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 242 + }, + { + "Function Name": "addTexture", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 362 + }, + { + "Function Name": "setViewportShading", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 561, + "End Line": 566 + }, + { + "Function Name": "select", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 570, + "End Line": 574 + }, + { + "Function Name": "focusById", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 621, + "End Line": 625 + }, + { + "Function Name": "objectByUuid", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 750, + "End Line": 754 + }, + { + "Function Name": "formatNumber", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 813, + "End Line": 817 + }, + { + "Function Name": "deselect", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 605, + "End Line": 609 + }, + { + "Function Name": "undo", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 762, + "End Line": 766 + }, + { + "Function Name": "redo", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 772 + } + ], "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, + "Control Flow Branches": 63, + "Sequential Logic Declarations": 52, + "Function Parameters": 46, + "Function/Method Declarations": 42, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 28, "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": 409, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 18, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 41, + "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)": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 7, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 74, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -351159,19 +352102,19 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 10, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 433, "Structural Space Indentations": 0, "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, "Cloud LLM API Integrations": 0, @@ -351182,15 +352125,15 @@ "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": 43, + "Design Camel Case": 4, + "Design Snake Case": 37, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351214,29 +352157,38 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Config.js", + "./History.js", + "./Loader.js", + "./Selector.js", + "./Storage.js", + "./Strings.js", + "three" + ] }, - "python/fastapi/tests/main.py": { + "javascript/threejs/GLTFLoader.js": { "1. Artifact Identity": { - "Filename": "main.py", - "Path": "python/fastapi/tests/main.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Filename": "GLTFLoader.js", + "Path": "javascript/threejs/GLTFLoader.js", + "Language": "Javascript", + "Architect": "GLTFExporter", + "Indentation Style": "Tabs", + "Parent Entity": "Loader, Interpolant, GLTFCubicSplineInterpolant", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2540.68, - "Y": -49.92, - "Z": -485.34 + "X": 8292.37, + "Y": -74.07, + "Z": -1119.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351245,472 +352197,1372 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 209, - "Coding LOC": 127, - "Documentation LOC": 0, - "Structural Magnitude": 173.44, - "Control Flow Ratio": "3.5%", + "Total LOC": 4861, + "Coding LOC": 2413, + "Documentation LOC": 613, + "Structural Magnitude": 3082.26, + "Control Flow Ratio": "66.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.035 + "Raw Cognitive Density": 1.529 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "2.7%", - "Error & Exception Exposure": "57.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "17.65%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "69.16%", + "Error & Exception Exposure": "84.69%", + "Tech Debt Exposure": "46.95%", + "Testing Exposure": "80.0%", + "API Exposure": "1.63%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "4.91%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "get_query_optional", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "parse", + "Structural Impact": 77.7, + "Lines of Code (LOC)": 122, + "Control Flow Branches": 31, + "Input Parameters": 4, + "Control Flow Ratio": "86.1%", + "Start Line": 429, + "End Line": 550 + }, + { + "Function Name": "_createAnimationTracks", + "Structural Impact": 71.3, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "89.7%", + "Start Line": 4514, + "End Line": 4616 + }, + { + "Function Name": "getDependency", + "Structural Impact": 67.4, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 35, + "Input Parameters": 2, + "Control Flow Ratio": "79.5%", + "Start Line": 2872, + "End Line": 2972 + }, + { + "Function Name": "loadMaterial", + "Structural Impact": 50.1, + "Lines of Code (LOC)": 153, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "85.3%", + "Start Line": 3542, + "End Line": 3694 + }, + { + "Function Name": "loadMesh", + "Structural Impact": 49.5, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "78.4%", + "Start Line": 3799, + "End Line": 3940 + }, + { + "Function Name": "addMorphTargets", + "Structural Impact": 48.0, + "Lines of Code (LOC)": 80, + "Control Flow Branches": 21, + "Input Parameters": 3, + "Control Flow Ratio": "72.4%", + "Start Line": 2333, + "End Line": 2412 + }, + { + "Function Name": "_loadNodeShallow", + "Structural Impact": 44.1, + "Lines of Code (LOC)": 146, + "Control Flow Branches": 25, + "Input Parameters": 1, + "Control Flow Ratio": "75.8%", + "Start Line": 4274, + "End Line": 4419 + }, + { + "Function Name": "createNodeMesh", + "Structural Impact": 40.9, + "Lines of Code (LOC)": 139, + "Control Flow Branches": 23, + "Input Parameters": 1, + "Control Flow Ratio": "69.7%", + "Start Line": 1691, + "End Line": 1829 + }, + { + "Function Name": "loadAccessor", + "Structural Impact": 39.2, + "Lines of Code (LOC)": 133, + "Control Flow Branches": 22, + "Input Parameters": 1, + "Control Flow Ratio": "78.6%", + "Start Line": 3071, + "End Line": 3203 + }, + { + "Function Name": "computeBounds", + "Structural Impact": 37.5, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 15, + "Input Parameters": 3, + "Control Flow Ratio": "83.3%", + "Start Line": 4669, + "End Line": 4777 + }, + { + "Function Name": "loadTextureImage", + "Structural Impact": 36.6, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 16, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 3233, + "End Line": 3285 + }, + { + "Function Name": "_loadLight", + "Structural Impact": 31.7, + "Lines of Code (LOC)": 68, + "Control Flow Branches": 19, + "Input Parameters": 1, + "Control Flow Ratio": "82.6%", + "Start Line": 694, + "End Line": 761 + }, + { + "Function Name": "assignFinalMaterial", + "Structural Impact": 29.9, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "77.3%", + "Start Line": 3439, + "End Line": 3527 + }, + { + "Function Name": "constructor", + "Structural Impact": 27.9, + "Lines of Code (LOC)": 74, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "76.5%", + "Start Line": 2549, + "End Line": 2622 + }, + { + "Function Name": "load", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 76, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 264, + "End Line": 339 + }, + { + "Function Name": "loadImageSource", + "Structural Impact": 23.5, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 10, + "Input Parameters": 2, + "Control Flow Ratio": "52.6%", + "Start Line": 3287, + "End Line": 3374 + }, + { + "Function Name": "loadAnimation", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 90, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "70.6%", + "Start Line": 4059, + "End Line": 4148 + }, + { + "Function Name": "addPrimitiveAttributes", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 4787, + "End Line": 4845 + }, + { + "Function Name": "loadBufferView", + "Structural Impact": 21.7, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "63.2%", + "Start Line": 1605, + "End Line": 1671 + }, + { + "Function Name": "loadScene", + "Structural Impact": 21.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "61.1%", + "Start Line": 4428, + "End Line": 4512 + }, + { + "Function Name": "assignTexture", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "70.0%", + "Start Line": 3386, + "End Line": 3427 + }, + { + "Function Name": "extendTexture", + "Structural Impact": 19.5, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 9, + "Input Parameters": 2, + "Control Flow Ratio": "81.8%", + "Start Line": 2005, + "End Line": 2047 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 1019, + "End Line": 1071 + }, + { + "Function Name": "decodePrimitive", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 58, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 1929, + "End Line": 1986 + }, + { + "Function Name": "loadNode", + "Structural Impact": 16.7, + "Lines of Code (LOC)": 79, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 4192, + "End Line": 4270 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 905, + "End Line": 953 + }, + { + "Function Name": "getImageURIMimeType", + "Structural Impact": 16.0, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2533, + "End Line": 2541 + }, + { + "Function Name": "constructor", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "88.9%", + "Start Line": 1840, + "End Line": 1901 + }, + { + "Function Name": "updateMorphTargets", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 2420, + "End Line": 2457 + }, + { + "Function Name": "parse", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 2636, + "End Line": 2701 + }, + { + "Function Name": "loadSkin", + "Structural Impact": 14.5, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 3987, + "End Line": 4050 + }, + { + "Function Name": "loadCamera", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 3949, + "End Line": 3978 + }, + { + "Function Name": "loadGeometries", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 3730, + "End Line": 3790 + }, + { + "Function Name": "_markDefs", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 2708, + "End Line": 2757 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1099, + "End Line": 1138 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1308, + "End Line": 1335 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1217, + "End Line": 1240 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1458, + "End Line": 1491 + }, + { + "Function Name": "getNormalizedComponentScale", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2507, + "End Line": 2531 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1410, + "End Line": 1438 + }, + { + "Function Name": "createPrimitiveKey", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2459, + "End Line": 2489 + }, + { + "Function Name": "extendParams", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 813, + "End Line": 843 + }, + { + "Function Name": "_getNodeRef", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 2795, + "End Line": 2826 + }, + { + "Function Name": "reduceAssociations", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4476, + "End Line": 4512 + }, + { + "Function Name": "addUnknownExtensionsToUserData", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 2283, + "End Line": 2298 + }, + { + "Function Name": "createNodeMesh", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 4150, + "End Line": 4183 + }, + { + "Function Name": "loadBuffer", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3011, + "End Line": 3041 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 1511, + "End Line": 1538 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 1558, + "End Line": 1585 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1167, + "End Line": 1189 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1364, + "End Line": 1382 + }, + { + "Function Name": "assignExtrasToUserData", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 2306, + "End Line": 2322 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1268, + "End Line": 1280 + }, + { + "Function Name": "constructor", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 119, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 253 + }, + { + "Function Name": "_markDefs", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 673, + "End Line": 692 + }, + { + "Function Name": "getDependencies", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2981, + "End Line": 3002 + }, + { + "Function Name": "getMaterialExtension", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 614, + "End Line": 626 + }, + { + "Function Name": "createNodeAttachment", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 771, + "End Line": 788 + }, + { + "Function Name": "createUniqueName", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3703, + "End Line": 3719 + }, + { + "Function Name": "interpolate_", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 39, "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 2102, + "End Line": 2140 + }, + { + "Function Name": "updateMappings", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2803, + "End Line": 2826 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 863, + "End Line": 877 + }, + { + "Function Name": "_addNodeRef", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2772, + "End Line": 2784 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 981, + "End Line": 991 + }, + { + "Function Name": "_getArrayFromAccessor", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 151, - "End Line": 154 + "Control Flow Ratio": "40.0%", + "Start Line": 4618, + "End Line": 4639 }, { - "Function Name": "get_query_type_optional", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "loadTexture", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3212, + "End Line": 3231 + }, + { + "Function Name": "_invokeAll", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2845, + "End Line": 2862 + }, + { + "Function Name": "_onError", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 295, + "End Line": 310 + }, + { + "Function Name": "_invokeOne", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2828, + "End Line": 2843 + }, + { + "Function Name": "loadBufferView", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3050, + "End Line": 3062 + }, + { + "Function Name": "collectMorphTargets", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 4521, + "End Line": 4529 + }, + { + "Function Name": "constructor", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1914, + "End Line": 1927 + }, + { + "Function Name": "getDependency", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 763, + "End Line": 769 + }, + { + "Function Name": "copySampleValue_", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 163, - "End Line": 166 + "Control Flow Ratio": "33.3%", + "Start Line": 2082, + "End Line": 2100 }, { - "Function Name": "get_query_param", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "createDefaultMaterial", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2263, + "End Line": 2281 + }, + { + "Function Name": "_createCubicSplineTrackInterpolant", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4641, + "End Line": 4658 + }, + { + "Function Name": "createAttributesKey", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "25.0%", - "Start Line": 175, - "End Line": 178 + "Start Line": 2491, + "End Line": 2505 }, { - "Function Name": "get_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, + "Function Name": "register", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 391, + "End Line": 401 + }, + { + "Function Name": "unregister", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 409, + "End Line": 419 + }, + { + "Function Name": "InterpolantFactoryMethodGLTFCubicSpline", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4643, + "End Line": 4653 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 897, + "End Line": 903 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 973, + "End Line": 979 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1011, + "End Line": 1017 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1091, + "End Line": 1097 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1159, + "End Line": 1165 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1209, + "End Line": 1215 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1260, + "End Line": 1266 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1300, + "End Line": 1306 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1356, + "End Line": 1362 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1402, + "End Line": 1408 + }, + { + "Function Name": "GLTFRegistry", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 0, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 32 + "Start Line": 576, + "End Line": 608 }, { - "Function Name": "get_str_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "interpolate_", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 37 + "Start Line": 2148, + "End Line": 2156 }, { - "Function Name": "get_int_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 42 + "Start Line": 2076, + "End Line": 2080 }, { - "Function Name": "get_float_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "parseAsync", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 47 + "Start Line": 560, + "End Line": 570 }, { - "Function Name": "get_bool_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "assignAttributeAccessor", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 52 + "Start Line": 4793, + "End Line": 4802 }, { - "Function Name": "get_path_param_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "add", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 57 + "Start Line": 588, + "End Line": 592 }, { - "Function Name": "get_path_param_min_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1598, + "End Line": 1603 + }, + { + "Function Name": "createDracoPrimitive", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 62 + "Start Line": 3736, + "End Line": 3746 }, { - "Function Name": "get_path_param_max_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 67 + "Start Line": 663, + "End Line": 671 }, { - "Function Name": "get_path_param_min_max_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "onLoad", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 72 + "Start Line": 3331, + "End Line": 3338 }, { - "Function Name": "get_path_param_gt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setDRACOLoader", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 77 + "Start Line": 348, + "End Line": 353 }, { - "Function Name": "get_path_param_gt0", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setKTX2Loader", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 82 + "Start Line": 362, + "End Line": 367 }, { - "Function Name": "get_path_param_ge", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setMeshoptDecoder", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 87 + "Start Line": 376, + "End Line": 381 }, { - "Function Name": "get_path_param_lt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "get", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 92 + "Start Line": 582, + "End Line": 586 }, { - "Function Name": "get_path_param_lt0", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "remove", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 97 + "Start Line": 594, + "End Line": 598 }, { - "Function Name": "get_path_param_le", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 102 + "Start Line": 856, + "End Line": 861 }, { - "Function Name": "get_path_param_lt_gt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 107 + "Start Line": 890, + "End Line": 895 }, { - "Function Name": "get_path_param_le_ge", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 112 + "Start Line": 966, + "End Line": 971 }, { - "Function Name": "get_path_param_lt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 117 + "Start Line": 1004, + "End Line": 1009 }, { - "Function Name": "get_path_param_gt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 121, - "End Line": 122 + "Start Line": 1084, + "End Line": 1089 }, { - "Function Name": "get_path_param_le_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 127 + "Start Line": 1152, + "End Line": 1157 }, { - "Function Name": "get_path_param_ge_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 132 + "Start Line": 1202, + "End Line": 1207 }, { - "Function Name": "get_path_param_lt_gt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 137 + "Start Line": 1253, + "End Line": 1258 }, { - "Function Name": "get_path_param_le_ge_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 142 + "Start Line": 1293, + "End Line": 1298 }, { - "Function Name": "get_query", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 146, - "End Line": 147 + "Start Line": 1349, + "End Line": 1354 }, { - "Function Name": "get_query_type", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 158, - "End Line": 159 + "Start Line": 1395, + "End Line": 1400 }, { - "Function Name": "get_query_type_int_default", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 170, - "End Line": 171 + "Start Line": 1451, + "End Line": 1456 }, { - "Function Name": "get_query_param_required", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 183 + "Start Line": 1504, + "End Line": 1509 }, { - "Function Name": "get_query_param_required_type", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 188 + "Start Line": 1551, + "End Line": 1556 }, { - "Function Name": "get_query_type_frozenset", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 197, - "End Line": 198 + "Start Line": 1684, + "End Line": 1689 }, { - "Function Name": "get_query_list", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setExtensions", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 202, - "End Line": 203 + "Start Line": 2624, + "End Line": 2628 }, { - "Function Name": "get_query_list_default", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setPlugins", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 207, - "End Line": 208 + "Start Line": 2630, + "End Line": 2634 }, { - "Function Name": "non_operation", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "removeAll", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 15 + "Start Line": 600, + "End Line": 604 }, { - "Function Name": "non_decorated_route", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 19 + "Start Line": 801, + "End Line": 805 }, { - "Function Name": "get_text", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "getMaterialType", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 27 + "Start Line": 807, + "End Line": 811 }, { - "Function Name": "get_enum_status_code", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 192, - "End Line": 193 + "Start Line": 1999, + "End Line": 2003 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2060, + "End Line": 2064 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3529, + "End Line": 3533 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 82, - "Function Parameters": 38, - "Function/Method Declarations": 38, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 614, + "Sequential Logic Declarations": 315, + "Function Parameters": 207, + "Function/Method Declarations": 129, + "Class/Entity Declarations": 26, + "Defensive Programming Constructs": 247, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 111, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 1186, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 67, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 415, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 37, - "Generic Type Abstractions": 6, - "Collection Iterators / Comprehensions": 0, + "Closures and Anonymous Functions": 86, + "Global State Dependencies": 5, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 3, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 49, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 122, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 11, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 14, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 4, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 2, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 418, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 46, + "Structural Tab Indentations": 2300, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 3, + "Regex Execution": 8, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -351719,16 +353571,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 27, - "Core Var Decl": 24, - "Design Camel Case": 0, - "Design Snake Case": 22, - "Design Pascal Case": 2, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 546, + "Design Camel Case": 199, + "Design Snake Case": 323, + "Design Pascal Case": 8, + "Design Upper Case": 14, + "Design Short Vars": 51, + "Design Long Vars": 3, + "Duplicate Logic": 12, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351752,33 +353604,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 4, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "http" + "../utils/BufferGeometryUtils.js", + "../utils/SkeletonUtils.js", + "three", + "three/addons/loaders/GLTFLoader.js" ] }, - "python/fastapi/tests/test_additional_properties.py": { + "javascript/threejs/Matrix4.js": { "1. Artifact Identity": { - "Filename": "test_additional_properties.py", - "Path": "python/fastapi/tests/test_additional_properties.py", - "Language": "Python", + "Filename": "Matrix4.js", + "Path": "javascript/threejs/Matrix4.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "BaseModel", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1411.85, - "Y": -199.34, - "Z": 1232.94 + "X": 8830.56, + "Y": -30.17, + "Z": -1632.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351787,90 +353640,430 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 103, - "Documentation LOC": 0, - "Structural Magnitude": 15.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 1315, + "Coding LOC": 597, + "Documentation LOC": 376, + "Structural Magnitude": 292.94, + "Control Flow Ratio": "44.0%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.51 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "7.54%", + "Cognitive Load Exposure": "13.84%", + "Error & Exception Exposure": "61.0%", + "Tech Debt Exposure": "89.55%", + "Testing Exposure": "80.0%", + "API Exposure": "1.93%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "51.98%", + "Commented Logic Exposure": "5.06%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 88, + "Function Name": "makePerspective", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 8, + "Control Flow Ratio": "75.0%", + "Start Line": 1122, + "End Line": 1166 + }, + { + "Function Name": "makeOrthographic", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 8, + "Control Flow Ratio": "75.0%", + "Start Line": 1182, + "End Line": 1226 + }, + { + "Function Name": "makeRotationFromEuler", + "Structural Impact": 23.0, + "Lines of Code (LOC)": 121, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "91.7%", + "Start Line": 338, + "End Line": 458 + }, + { + "Function Name": "lookAt", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 483, + "End Line": 528 + }, + { + "Function Name": "constructor", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 1, + "Input Parameters": 16, + "Control Flow Ratio": "100.0%", + "Start Line": 79, + "End Line": 101 + }, + { + "Function Name": "decompose", + "Structural Impact": 8.7, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "40.0%", + "Start Line": 1053, + "End Line": 1106 + }, + { + "Function Name": "makeTranslation", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 810, + "End Line": 838 + }, + { + "Function Name": "setPosition", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 683, + "End Line": 703 + }, + { + "Function Name": "extractBasis", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 239, + "End Line": 257 + }, + { + "Function Name": "equals", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1234, + "End Line": 1247 + }, + { + "Function Name": "set", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, + "Input Parameters": 16, + "Control Flow Ratio": "0.0%", + "Start Line": 125, + "End Line": 136 + }, + { + "Function Name": "extractRotation", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 289, + "End Line": 326 + }, + { + "Function Name": "invert", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 1, "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 712, + "End Line": 763 + }, + { + "Function Name": "fromArray", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1256, + "End Line": 1266 + }, + { + "Function Name": "compose", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 0, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 114 + "Start Line": 1004, + "End Line": 1038 }, { - "Function Name": "foo", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "multiplyMatrices", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 600 + }, + { + "Function Name": "makeShear", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 6, + "Control Flow Ratio": "0.0%", + "Start Line": 980, + "End Line": 993 + }, + { + "Function Name": "toArray", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1276, + "End Line": 1302 + }, + { + "Function Name": "makeRotationAxis", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 944 + }, + { + "Function Name": "makeScale", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 954, + "End Line": 967 + }, + { + "Function Name": "makeBasis", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 278 + }, + { + "Function Name": "setFromMatrix3", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 15 + "Start Line": 214, + "End Line": 229 }, { - "Function Name": "test_additional_properties_post", + "Function Name": "makeRotationX", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 847, + "End Line": 862 + }, + { + "Function Name": "makeRotationY", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 871, + "End Line": 886 + }, + { + "Function Name": "makeRotationZ", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 895, + "End Line": 910 + }, + { + "Function Name": "copy", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 175, + "End Line": 187 + }, + { + "Function Name": "scale", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 771, + "End Line": 783 + }, + { + "Function Name": "copyPosition", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 196, + "End Line": 206 + }, + { + "Function Name": "multiplyScalar", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 608, + "End Line": 619 + }, + { + "Function Name": "determinant", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 628, + "End Line": 650 + }, + { + "Function Name": "transpose", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 672 + }, + { + "Function Name": "identity", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 156 + }, + { + "Function Name": "makeRotationFromQuaternion", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 472 + }, + { + "Function Name": "multiply", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 540 + }, + { + "Function Name": "premultiply", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 548, + "End Line": 552 + }, + { + "Function Name": "getMaxScaleOnAxis", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 800 + }, + { + "Function Name": "clone", "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 24 + "Start Line": 163, + "End Line": 167 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 31, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Control Flow Branches": 40, + "Sequential Logic Declarations": 51, + "Function Parameters": 37, + "Function/Method Declarations": 37, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 19, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 86, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 40, + "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": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -351880,22 +354073,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 10, "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": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 98, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Tab Indentations": 582, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -351912,15 +354105,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 4, - "Design Camel Case": 0, - "Design Snake Case": 4, + "Core Var Decl": 140, + "Design Camel Case": 12, + "Design Snake Case": 128, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 89, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 27, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351929,8 +354122,8 @@ "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, + "Global Environment Mutation": 1, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -351944,35 +354137,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic" + "../constants.js", + "./Vector3.js" ] }, - "python/fastapi/tests/test_additional_properties_bool.py": { + "javascript/threejs/WebGLProgram.js": { "1. Artifact Identity": { - "Filename": "test_additional_properties_bool.py", - "Path": "python/fastapi/tests/test_additional_properties_bool.py", - "Language": "Python", + "Filename": "WebGLProgram.js", + "Path": "javascript/threejs/WebGLProgram.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "BaseModel, FooBaseModel", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1938.11, - "Y": -188.72, - "Z": 1581.17 + "X": 8380.39, + "Y": -88.2, + "Z": -1633.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351981,132 +354171,372 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 126, - "Coding LOC": 109, - "Documentation LOC": 0, - "Structural Magnitude": 19.48, - "Control Flow Ratio": "0.0%", + "Total LOC": 1029, + "Coding LOC": 621, + "Documentation LOC": 30, + "Structural Magnitude": 684.02, + "Control Flow Ratio": "77.6%", "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.852 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.36%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "8.59%", - "Concurrency Exposure": "19.73%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "60.09%", + "Error & Exception Exposure": "50.0%", + "Tech Debt Exposure": "22.59%", + "Testing Exposure": "80.0%", + "API Exposure": "0.01%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "50.39%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 125 + "Function Name": "WebGLProgram", + "Structural Impact": 455.6, + "Lines of Code (LOC)": 615, + "Control Flow Branches": 189, + "Input Parameters": 4, + "Control Flow Ratio": "93.6%", + "Start Line": 412, + "End Line": 1026 }, { - "Function Name": "post", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, + "Function Name": "onFirstUse", + "Structural Impact": 24.5, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 13, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 22 + "Control Flow Ratio": "86.7%", + "Start Line": 856, + "End Line": 949 }, { - "Function Name": "test_call_valid", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 + "Function Name": "getShaderErrors", + "Structural Impact": 13.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 58, + "End Line": 82 }, { - "Function Name": "test_call_invalid", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 30 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 34, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, - "State Mutations / Variable Reassignments": 0, + "Function Name": "generatePrecision", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 306, + "End Line": 343 + }, + { + "Function Name": "fetchAttributeLocations", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 178, + "End Line": 206 + }, + { + "Function Name": "getEncodingComponents", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 36, + "End Line": 56 + }, + { + "Function Name": "includeReplacer", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 253, + "End Line": 276 + }, + { + "Function Name": "generateDefines", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 160, + "End Line": 176 + }, + { + "Function Name": "handleSource", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 32 + }, + { + "Function Name": "loopReplacer", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 288, + "End Line": 302 + }, + { + "Function Name": "generateVertexExtensions", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 149, + "End Line": 158 + }, + { + "Function Name": "generateEnvMapTypeDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 362, + "End Line": 368 + }, + { + "Function Name": "generateEnvMapModeDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 374, + "End Line": 380 + }, + { + "Function Name": "generateEnvMapBlendingDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 388, + "End Line": 394 + }, + { + "Function Name": "getToneMappingFunction", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 110, + "End Line": 123 + }, + { + "Function Name": "generateCubeUVSize", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 396, + "End Line": 410 + }, + { + "Function Name": "generateShadowMapTypeDefine", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 350, + "End Line": 354 + }, + { + "Function Name": "replaceLightNums", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 214, + "End Line": 231 + }, + { + "Function Name": "getUniforms", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 955, + "End Line": 966 + }, + { + "Function Name": "getAttributes", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 972, + "End Line": 983 + }, + { + "Function Name": "getTexelEncodingFunction", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 98 + }, + { + "Function Name": "isReady", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 990, + "End Line": 1000 + }, + { + "Function Name": "replaceClippingPlaneNums", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 233, + "End Line": 239 + }, + { + "Function Name": "getLuminanceFunction", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 147 + }, + { + "Function Name": "filterEmptyLine", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 212 + }, + { + "Function Name": "resolveIncludes", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 245, + "End Line": 249 + }, + { + "Function Name": "unrollLoops", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 286 + }, + { + "Function Name": "destroy", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1004, + "End Line": 1011 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 229, + "Sequential Logic Declarations": 66, + "Function Parameters": 29, + "Function/Method Declarations": 28, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 38, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 70, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 1, + "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, + "Closures and Anonymous Functions": 4, + "Global State Dependencies": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 6, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 8, "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, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 5, "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, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 65, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 204, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 95, + "Structural Tab Indentations": 549, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 18, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -352116,15 +354546,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 6, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Core Var Decl": 98, + "Design Camel Case": 64, + "Design Snake Case": 33, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352148,34 +354578,39 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 8, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic" + "../../constants.js", + "../../math/ColorManagement.js", + "../../math/Matrix3.js", + "../../math/Vector3.js", + "../../utils.js", + "../shaders/ShaderChunk.js", + "./WebGLShader.js", + "./WebGLUniforms.js" ] }, - "python/fastapi/tests/test_additional_response_extra.py": { + "javascript/threejs/WebGLRenderer.js": { "1. Artifact Identity": { - "Filename": "test_additional_response_extra.py", - "Path": "python/fastapi/tests/test_additional_response_extra.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Filename": "WebGLRenderer.js", + "Path": "javascript/threejs/WebGLRenderer.js", + "Language": "Javascript", + "Architect": "the renderer", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Alert": "TYPOSQUATTING THREAT: 'math/Vector4.js' mimics 'math/Vector3.js'", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1743.54, - "Y": -210.35, - "Z": -1728.1 + "X": 7991.98, + "Y": -96.13, + "Z": -1037.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352184,123 +354619,863 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 53, - "Coding LOC": 39, - "Documentation LOC": 0, - "Structural Magnitude": 8.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 3639, + "Coding LOC": 1628, + "Documentation LOC": 734, + "Structural Magnitude": 2408.76, + "Control Flow Ratio": "77.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": 1.099 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "6.95%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "41.74%", + "Error & Exception Exposure": "43.07%", + "Tech Debt Exposure": "52.57%", + "Testing Exposure": "80.0%", + "API Exposure": "1.69%", + "Concurrency Exposure": "21.86%", + "State Flux Exposure": "97.79%", + "Commented Logic Exposure": "4.97%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 2.2, + "Function Name": "constructor", + "Structural Impact": 642.0, + "Lines of Code (LOC)": 2545, + "Control Flow Branches": 363, + "Input Parameters": 1, + "Control Flow Ratio": "80.5%", + "Start Line": 70, + "End Line": 2614 + }, + { + "Function Name": "setProgram", + "Structural Impact": 374.1, + "Lines of Code (LOC)": 428, + "Control Flow Branches": 143, + "Input Parameters": 5, + "Control Flow Ratio": "94.7%", + "Start Line": 2295, + "End Line": 2722 + }, + { + "Function Name": "copyTextureToTexture", + "Structural Impact": 141.4, + "Lines of Code (LOC)": 235, + "Control Flow Branches": 48, + "Input Parameters": 6, + "Control Flow Ratio": "90.6%", + "Start Line": 3205, + "End Line": 3439 + }, + { + "Function Name": "renderBufferDirect", + "Structural Impact": 108.5, + "Lines of Code (LOC)": 159, + "Control Flow Branches": 37, + "Input Parameters": 6, + "Control Flow Ratio": "78.7%", + "Start Line": 1175, + "End Line": 1333 + }, + { + "Function Name": "render", + "Structural Impact": 94.2, + "Lines of Code (LOC)": 221, + "Control Flow Branches": 47, + "Input Parameters": 2, + "Control Flow Ratio": "92.2%", + "Start Line": 1600, + "End Line": 1820 + }, + { + "Function Name": "projectObject", + "Structural Impact": 81.7, + "Lines of Code (LOC)": 113, + "Control Flow Branches": 33, + "Input Parameters": 4, + "Control Flow Ratio": "91.7%", + "Start Line": 1822, + "End Line": 1934 + }, + { + "Function Name": "setRenderTarget", + "Structural Impact": 80.4, + "Lines of Code (LOC)": 168, + "Control Flow Branches": 35, + "Input Parameters": 3, + "Control Flow Ratio": "87.5%", + "Start Line": 2823, + "End Line": 2990 + }, + { + "Function Name": "getProgram", + "Structural Impact": 51.8, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 22, + "Input Parameters": 3, + "Control Flow Ratio": "84.6%", + "Start Line": 2142, + "End Line": 2257 + }, + { + "Function Name": "readRenderTargetPixels", + "Structural Impact": 51.2, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 15, + "Input Parameters": 8, + "Control Flow Ratio": "78.9%", + "Start Line": 3004, + "End Line": 3068 + }, + { + "Function Name": "readRenderTargetPixelsAsync", + "Structural Impact": 48.9, + "Lines of Code (LOC)": 78, + "Control Flow Branches": 14, + "Input Parameters": 8, + "Control Flow Ratio": "82.4%", + "Start Line": 3086, + "End Line": 3163 + }, + { + "Function Name": "renderTransmissionPass", + "Structural Impact": 44.2, + "Lines of Code (LOC)": 123, + "Control Flow Branches": 16, + "Input Parameters": 4, + "Control Flow Ratio": "84.2%", + "Start Line": 1960, + "End Line": 2082 + }, + { + "Function Name": "compile", + "Structural Impact": 38.6, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 16, + "Input Parameters": 3, + "Control Flow Ratio": "84.2%", + "Start Line": 1371, + "End Line": 1462 + }, + { + "Function Name": "clear", + "Structural Impact": 23.8, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 944, + "End Line": 1018 + }, + { + "Function Name": "renderObject", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "100.0%", + "Start Line": 2111, + "End Line": 2140 + }, + { + "Function Name": "renderScene", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 1936, + "End Line": 1958 + }, + { + "Function Name": "renderObjects", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 2084, + "End Line": 2109 + }, + { + "Function Name": "compileAsync", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1478, + "End Line": 1536 + }, + { + "Function Name": "initTexture", + "Structural Impact": 12.5, "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 3464, + "End Line": 3486 + }, + { + "Function Name": "setSize", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 650, + "End Line": 680 + }, + { + "Function Name": "setEffects", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 726, + "End Line": 752 + }, + { + "Function Name": "prepareMaterial", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 1337, + "End Line": 1357 + }, + { + "Function Name": "materialNeedsLights", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 2742, + "End Line": 2748 + }, + { + "Function Name": "setViewport", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 787, + "End Line": 801 + }, + { + "Function Name": "setScissor", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 824, + "End Line": 838 + }, + { + "Function Name": "setRenderTargetTextures", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 2784, + "End Line": 2802 + }, + { + "Function Name": "copyFramebufferToTexture", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 3172, + "End Line": 3187 + }, + { + "Function Name": "releaseMaterialProgramReferences", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1151, + "End Line": 1171 + }, + { + "Function Name": "initGLContext", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 423, + "End Line": 538 + }, + { + "Function Name": "checkMaterialsReady", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1487, + "End Line": 1516 + }, + { + "Function Name": "getUniformList", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2259, + "End Line": 2270 + }, + { + "Function Name": "setPixelRatio", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 619, + "End Line": 627 + }, + { + "Function Name": "initRenderTarget", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 3448, + "End Line": 3456 + }, + { + "Function Name": "setAnimationLoop", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1572, + "End Line": 1579 + }, + { + "Function Name": "onAnimationFrame", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1542, + "End Line": 1546 + }, + { + "Function Name": "updateCommonMaterialProperties", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2272, + "End Line": 2293 + }, + { + "Function Name": "setDrawingBufferSize", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 719 + }, + { + "Function Name": "markUniformsLightsNeedsUpdate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2726, + "End Line": 2740 + }, + { + "Function Name": "forceContextLoss", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 586, + "End Line": 591 + }, + { + "Function Name": "forceContextRestore", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 596, + "End Line": 601 + }, + { + "Function Name": "getTargetPixelRatio", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 349, + "End Line": 353 + }, + { + "Function Name": "setRenderTargetFramebuffer", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2804, + "End Line": 2810 + }, + { + "Function Name": "getContext", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 363 + }, + { + "Function Name": "onContextLost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1092, + "End Line": 1100 + }, + { + "Function Name": "onMaterialDispose", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1130, + "End Line": 1138 + }, + { + "Function Name": "outputColorSpace", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3539, + "End Line": 3547 + }, + { + "Function Name": "deallocateMaterial", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1142, + "End Line": 1148 + }, + { + "Function Name": "getSize", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 635, + "End Line": 639 + }, + { + "Function Name": "getDrawingBufferSize", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 688, + "End Line": 692 + }, + { + "Function Name": "getCurrentViewport", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 764 + }, + { + "Function Name": "getViewport", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 772, + "End Line": 776 + }, + { + "Function Name": "getScissor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 813 + }, + { + "Function Name": "setScissorTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 858, + "End Line": 862 + }, + { + "Function Name": "setOpaqueSort", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 870, + "End Line": 874 + }, + { + "Function Name": "setTransparentSort", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 886 + }, + { + "Function Name": "getClearColor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 896, + "End Line": 900 + }, + { + "Function Name": "setNodesHandler", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1054, + "End Line": 1059 + }, + { + "Function Name": "onContextCreationError", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1124, + "End Line": 1128 + }, + { + "Function Name": "dispose", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 52 + "Start Line": 1065, + "End Line": 1088 }, { - "Function Name": "test_path_operation", + "Function Name": "onContextRestore", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1122 + }, + { + "Function Name": "resetState", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3493, + "End Line": 3502 + }, + { + "Function Name": "getContext", "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 27 + "Start Line": 566, + "End Line": 570 }, { - "Function Name": "read_item", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "getContextAttributes", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 14 + "Start Line": 577, + "End Line": 581 + }, + { + "Function Name": "getPixelRatio", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 608, + "End Line": 612 + }, + { + "Function Name": "getScissorTest", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 845, + "End Line": 849 + }, + { + "Function Name": "setClearColor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 908, + "End Line": 912 + }, + { + "Function Name": "getClearAlpha", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 919, + "End Line": 923 + }, + { + "Function Name": "setClearAlpha", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 930, + "End Line": 934 + }, + { + "Function Name": "clearColor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1023, + "End Line": 1027 + }, + { + "Function Name": "clearDepth", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1032, + "End Line": 1036 + }, + { + "Function Name": "clearStencil", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1041, + "End Line": 1045 + }, + { + "Function Name": "onXRSessionStart", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1548, + "End Line": 1552 + }, + { + "Function Name": "onXRSessionEnd", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1554, + "End Line": 1558 + }, + { + "Function Name": "getActiveCubeFace", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2755, + "End Line": 2759 + }, + { + "Function Name": "getActiveMipmapLevel", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2766, + "End Line": 2770 + }, + { + "Function Name": "getRenderTarget", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2778, + "End Line": 2782 + }, + { + "Function Name": "coordinateSystem", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3521, + "End Line": 3525 + }, + { + "Function Name": "outputColorSpace", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3533, + "End Line": 3537 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 515, + "Sequential Logic Declarations": 152, + "Function Parameters": 83, + "Function/Method Declarations": 77, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 204, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 338, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 78, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 15, + "UI / View Layer Components": 3, + "Closures and Anonymous Functions": 54, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "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)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Module Dependencies (Imports)": 37, + "Authorship Metadata": 2, + "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": 1, + "Dependency Injection Constructs": 2, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 49, "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, + "Fatal Aborts & Exceptions": 9, + "Thread Sleeps & Blocking Waits": 2, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 172, + "Resource Deallocation & Cleanup": 20, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Event Listeners & Subscribers": 6, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 26, - "Hardware Bridge": 0, + "Structural Tab Indentations": 1587, + "Structural Space Indentations": 0, + "Hardware Bridge": 26, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 2, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -352308,16 +355483,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 7, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 391, + "Design Camel Case": 195, + "Design Snake Case": 141, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Upper Case": 2, + "Design Short Vars": 21, + "Design Long Vars": 6, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 27, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352330,7 +355505,7 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -352341,33 +355516,91 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 37, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot" + "../constants.js", + "../math/Color.js", + "../math/ColorManagement.js", + "../math/Frustum.js", + "../math/Matrix4.js", + "../math/Vector3.js", + "../math/Vector4.js", + "../utils.js", + "./WebGLRenderTarget.js", + "./shaders/DFGLUTData.js", + "./webgl/WebGLAnimation.js", + "./webgl/WebGLAttributes.js", + "./webgl/WebGLBackground.js", + "./webgl/WebGLBindingStates.js", + "./webgl/WebGLBufferRenderer.js", + "./webgl/WebGLCapabilities.js", + "./webgl/WebGLClipping.js", + "./webgl/WebGLEnvironments.js", + "./webgl/WebGLExtensions.js", + "./webgl/WebGLGeometries.js", + "./webgl/WebGLIndexedBufferRenderer.js", + "./webgl/WebGLInfo.js", + "./webgl/WebGLMaterials.js", + "./webgl/WebGLMorphtargets.js", + "./webgl/WebGLObjects.js", + "./webgl/WebGLOutput.js", + "./webgl/WebGLPrograms.js", + "./webgl/WebGLProperties.js", + "./webgl/WebGLRenderLists.js", + "./webgl/WebGLRenderStates.js", + "./webgl/WebGLShadowMap.js", + "./webgl/WebGLState.js", + "./webgl/WebGLTextures.js", + "./webgl/WebGLUniforms.js", + "./webgl/WebGLUniformsGroups.js", + "./webgl/WebGLUtils.js", + "./webxr/WebXRManager.js" ] - }, - "python/fastapi/tests/test_additional_responses_bad.py": { + } + } + }, + "python/fastapi/tests": { + "Directory Group Magnitude": 7691.24, + "File Count": 204, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "3.35%", + "Error & Exception Exposure": "13.2%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "9.38%", + "Concurrency Exposure": "21.5%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.31%", + "Specification Exposure": "99.51%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/fastapi/tests/__init__.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_bad.py", - "Path": "python/fastapi/tests/test_additional_responses_bad.py", + "Filename": "__init__.py", + "Path": "python/fastapi/tests/__init__.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4641.35, - "Y": 155.59, - "Z": 1304.75 + "X": 3175.53, + "Y": -11.84, + "Z": 2270.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352376,80 +355609,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 41, - "Coding LOC": 30, - "Documentation LOC": 2, - "Structural Magnitude": 6.8, - "Control Flow Ratio": "11.1%", + "Total LOC": 1, + "Coding LOC": 0, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, + "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.08 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.21%", - "Error & Exception Exposure": "58.49%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "5.59%", - "Concurrency Exposure": "28.22%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "test_openapi_schema", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 38, - "End Line": 40 - }, - { - "Function Name": "a", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 10 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "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": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 1, + "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, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -352474,7 +355686,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 20, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352490,16 +355702,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 4, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "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, @@ -352523,34 +355735,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "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": [ - "fastapi", - "fastapi.testclient", - "pytest" - ] + "9. Extracted Dependencies": [] }, - "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py": { + "python/fastapi/tests/main.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_custom_model_in_callback.py", - "Path": "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py", + "Filename": "main.py", + "Path": "python/fastapi/tests/main.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4112.95, - "Y": 142.25, - "Z": 1331.64 + "X": 2216.8, + "Y": -85.11, + "Z": 298.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352559,23 +355766,23 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 148, - "Coding LOC": 134, + "Total LOC": 209, + "Coding LOC": 127, "Documentation LOC": 0, - "Structural Magnitude": 17.08, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 136.44, + "Control Flow Ratio": "3.5%", "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.035 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.97%", + "Cognitive Load Exposure": "2.7%", + "Error & Exception Exposure": "57.09%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "7.16%", + "API Exposure": "16.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -352587,67 +355794,417 @@ }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 116, + "Function Name": "get_query_optional", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 151, + "End Line": 154 + }, + { + "Function Name": "get_query_type_optional", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 163, + "End Line": 166 + }, + { + "Function Name": "get_query_param", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 175, + "End Line": 178 + }, + { + "Function Name": "get_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 32, + "Start Line": 31, + "End Line": 32 + }, + { + "Function Name": "get_str_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 37 + }, + { + "Function Name": "get_int_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 42 + }, + { + "Function Name": "get_float_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 47 + }, + { + "Function Name": "get_bool_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 52 + }, + { + "Function Name": "get_path_param_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 56, + "End Line": 57 + }, + { + "Function Name": "get_path_param_min_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 62 + }, + { + "Function Name": "get_path_param_max_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 67 + }, + { + "Function Name": "get_path_param_min_max_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 72 + }, + { + "Function Name": "get_path_param_gt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 76, + "End Line": 77 + }, + { + "Function Name": "get_path_param_gt0", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 82 + }, + { + "Function Name": "get_path_param_ge", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 86, + "End Line": 87 + }, + { + "Function Name": "get_path_param_lt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 92 + }, + { + "Function Name": "get_path_param_lt0", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 97 + }, + { + "Function Name": "get_path_param_le", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 101, + "End Line": 102 + }, + { + "Function Name": "get_path_param_lt_gt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 106, + "End Line": 107 + }, + { + "Function Name": "get_path_param_le_ge", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 112 + }, + { + "Function Name": "get_path_param_lt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 117 + }, + { + "Function Name": "get_path_param_gt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 121, + "End Line": 122 + }, + { + "Function Name": "get_path_param_le_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 127 + }, + { + "Function Name": "get_path_param_ge_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 132 + }, + { + "Function Name": "get_path_param_lt_gt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 137 + }, + { + "Function Name": "get_path_param_le_ge_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 142 + }, + { + "Function Name": "get_query", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 146, "End Line": 147 }, { - "Function Name": "main_route", + "Function Name": "get_query_type", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 26 + "Start Line": 158, + "End Line": 159 }, { - "Function Name": "callback_route", + "Function Name": "get_query_type_int_default", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 170, + "End Line": 171 + }, + { + "Function Name": "get_query_param_required", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 183 + }, + { + "Function Name": "get_query_param_required_type", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 188 + }, + { + "Function Name": "get_query_type_frozenset", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 197, + "End Line": 198 + }, + { + "Function Name": "get_query_list", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 202, + "End Line": 203 + }, + { + "Function Name": "get_query_list_default", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 207, + "End Line": 208 + }, + { + "Function Name": "non_operation", "Structural Impact": 1.1, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 21 + "Start Line": 14, + "End Line": 15 + }, + { + "Function Name": "non_decorated_route", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 19 + }, + { + "Function Name": "get_text", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 27 + }, + { + "Function Name": "get_enum_status_code", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 192, + "End Line": 193 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 32, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 2, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 82, + "Function Parameters": 38, + "Function/Method Declarations": 38, + "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": 5, + "Exposed API / Public Exports": 74, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "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": 2, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 37, + "Generic Type Abstractions": 6, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 2, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -352661,13 +356218,13 @@ "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, - "Event Listeners & Subscribers": 2, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 119, + "Structural Space Indentations": 46, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352683,16 +356240,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 2, - "Core Var Decl": 6, + "Vectorized Math & Tensor Operations": 27, + "Core Var Decl": 24, "Design Camel Case": 0, - "Design Snake Case": 6, - "Design Pascal Case": 0, + "Design Snake Case": 22, + "Design Pascal Case": 2, "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, @@ -352716,36 +356273,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 4, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic", - "starlette.responses" + "http" ] }, - "python/fastapi/tests/test_additional_responses_custom_validationerror.py": { + "python/fastapi/tests/test_additional_properties.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_custom_validationerror.py", - "Path": "python/fastapi/tests/test_additional_responses_custom_validationerror.py", + "Filename": "test_additional_properties.py", + "Path": "python/fastapi/tests/test_additional_properties.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse, BaseModel", + "Parent Entity": "BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2712.02, - "Y": -33.61, - "Z": 2084.9 + "X": 1411.85, + "Y": -199.34, + "Z": 1232.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352754,10 +356308,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 101, - "Coding LOC": 87, + "Total LOC": 115, + "Coding LOC": 103, "Documentation LOC": 0, - "Structural Magnitude": 13.54, + "Structural Magnitude": 15.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -352767,11 +356321,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "44.42%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "7.75%", - "Concurrency Exposure": "21.66%", + "API Exposure": "7.54%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -352783,42 +356337,52 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 66, + "Structural Impact": 5.4, + "Lines of Code (LOC)": 88, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 100 + "Start Line": 27, + "End Line": 114 }, { - "Function Name": "a", + "Function Name": "foo", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 29 + "Start Line": 14, + "End Line": 15 + }, + { + "Function Name": "test_additional_properties_post", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 23, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 1, + "Sequential Logic Declarations": 31, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 1, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, @@ -352827,12 +356391,12 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 2, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -352852,7 +356416,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 73, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352869,15 +356433,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 6, + "Core Var Decl": 4, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 4, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352901,35 +356465,35 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "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": [ "fastapi", - "fastapi.responses", "fastapi.testclient", "inline_snapshot", "pydantic" ] }, - "python/fastapi/tests/test_additional_responses_default_validationerror.py": { + "python/fastapi/tests/test_additional_properties_bool.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_default_validationerror.py", - "Path": "python/fastapi/tests/test_additional_responses_default_validationerror.py", + "Filename": "test_additional_properties_bool.py", + "Path": "python/fastapi/tests/test_additional_properties_bool.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", + "Parent Entity": "BaseModel, FooBaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4725.31, - "Y": 161.51, - "Z": 1142.62 + "X": 1938.11, + "Y": -188.72, + "Z": 1581.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352938,10 +356502,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 92, - "Coding LOC": 84, + "Total LOC": 126, + "Coding LOC": 109, "Documentation LOC": 0, - "Structural Magnitude": 10.98, + "Structural Magnitude": 19.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -352951,11 +356515,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "52.88%", + "Error & Exception Exposure": "45.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "4.85%", - "Concurrency Exposure": "21.99%", + "API Exposure": "8.59%", + "Concurrency Exposure": "19.73%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -352967,41 +356531,61 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 76, + "Structural Impact": 5.4, + "Lines of Code (LOC)": 87, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 91 + "Start Line": 39, + "End Line": 125 }, { - "Function Name": "a", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "post", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 10 + "Start Line": 19, + "End Line": 22 + }, + { + "Function Name": "test_call_valid", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "test_call_invalid", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 30 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, + "Sequential Logic Declarations": 34, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -353011,7 +356595,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -353036,7 +356620,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 76, + "Structural Space Indentations": 95, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -353053,15 +356637,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 3, + "Core Var Decl": 7, "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -353085,7 +356669,7 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 @@ -353093,26 +356677,26 @@ "9. Extracted Dependencies": [ "fastapi", "fastapi.testclient", - "inline_snapshot" + "inline_snapshot", + "pydantic" ] }, - "python/fastapi/tests/test_additional_responses_response_class.py": { + "python/fastapi/tests/test_additional_response_extra.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_response_class.py", - "Path": "python/fastapi/tests/test_additional_responses_response_class.py", + "Filename": "test_additional_response_extra.py", + "Path": "python/fastapi/tests/test_additional_response_extra.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse, BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1637.53, - "Y": -153.47, - "Z": 1242.05 + "X": 1743.54, + "Y": -210.35, + "Z": -1728.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -353121,10 +356705,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 118, - "Coding LOC": 102, + "Total LOC": 53, + "Coding LOC": 39, "Documentation LOC": 0, - "Structural Magnitude": 17.14, + "Structural Magnitude": 8.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -353134,11 +356718,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "48.77%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "8.14%", - "Concurrency Exposure": "32.3%", + "API Exposure": "6.95%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -353150,8 +356734,945 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 78, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 52 + }, + { + "Function Name": "test_path_operation", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 27 + }, + { + "Function Name": "read_item", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 14 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 2, + "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": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 26, + "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": 1, + "Core Var Decl": 7, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 3, + "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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot" + ] + }, + "python/fastapi/tests/test_additional_responses_bad.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_bad.py", + "Path": "python/fastapi/tests/test_additional_responses_bad.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4641.35, + "Y": 155.59, + "Z": 1304.75 + }, + "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": 41, + "Coding LOC": 30, + "Documentation LOC": 2, + "Structural Magnitude": 6.8, + "Control Flow Ratio": "11.1%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.08 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "3.21%", + "Error & Exception Exposure": "58.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "5.59%", + "Concurrency Exposure": "28.22%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 38, + "End Line": 40 + }, + { + "Function Name": "a", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "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": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 20, + "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": 1, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 4, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "pytest" + ] + }, + "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_custom_model_in_callback.py", + "Path": "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4112.95, + "Y": 142.25, + "Z": 1331.64 + }, + "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": 148, + "Coding LOC": 134, + "Documentation LOC": 0, + "Structural Magnitude": 17.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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "50.97%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "7.16%", + "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": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 32, + "End Line": 147 + }, + { + "Function Name": "main_route", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 26 + }, + { + "Function Name": "callback_route", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 32, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 2, + "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": 2, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "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, + "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": 2, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot", + "pydantic", + "starlette.responses" + ] + }, + "python/fastapi/tests/test_additional_responses_custom_validationerror.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_custom_validationerror.py", + "Path": "python/fastapi/tests/test_additional_responses_custom_validationerror.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2712.02, + "Y": -33.61, + "Z": 2084.9 + }, + "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": 101, + "Coding LOC": 87, + "Documentation LOC": 0, + "Structural Magnitude": 13.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": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "44.42%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "7.75%", + "Concurrency Exposure": "21.66%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 100 + }, + { + "Function Name": "a", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 29 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 23, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 2, + "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": 73, + "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": 1, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.responses", + "fastapi.testclient", + "inline_snapshot", + "pydantic" + ] + }, + "python/fastapi/tests/test_additional_responses_default_validationerror.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_default_validationerror.py", + "Path": "python/fastapi/tests/test_additional_responses_default_validationerror.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4725.31, + "Y": 161.51, + "Z": 1142.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": 92, + "Coding LOC": 84, + "Documentation LOC": 0, + "Structural Magnitude": 10.98, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "52.88%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "4.85%", + "Concurrency Exposure": "21.99%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 76, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 91 + }, + { + "Function Name": "a", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 22, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 76, + "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": 1, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 3, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot" + ] + }, + "python/fastapi/tests/test_additional_responses_response_class.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_response_class.py", + "Path": "python/fastapi/tests/test_additional_responses_response_class.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 1637.53, + "Y": -153.47, + "Z": 1242.05 + }, + "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": 118, + "Coding LOC": 102, + "Documentation LOC": 0, + "Structural Magnitude": 17.14, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "48.77%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "8.14%", + "Concurrency Exposure": "32.3%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 78, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", @@ -384723,9 +389244,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3402.36, - "Y": 7.28, - "Z": 226.23 + "X": 2540.93, + "Y": -103.05, + "Z": -523.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -395650,9 +400171,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2291.84, - "Y": -92.97, - "Z": 105.58 + "X": 3478.61, + "Y": 52.73, + "Z": 71.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -402924,9 +407445,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4126.68, - "Y": 121.5, - "Z": 1768.9 + "X": 4125.52, + "Y": 121.35, + "Z": 1767.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -402938,7 +407459,7 @@ "Total LOC": 19, "Coding LOC": 12, "Documentation LOC": 1, - "Structural Magnitude": 4.44, + "Structural Magnitude": 3.44, "Control Flow Ratio": "25.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -402951,7 +407472,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "5.59%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -402984,7 +407505,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, @@ -403085,489 +407606,587 @@ } } }, - "javascript/threejs": { - "Directory Group Magnitude": 7700.5, + "zig/zls": { + "Directory Group Magnitude": 7613.62, "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "50.61%", - "Error & Exception Exposure": "72.31%", - "Tech Debt Exposure": "54.92%", - "Testing Exposure": "80.0%", - "API Exposure": "1.54%", - "Concurrency Exposure": "32.43%", - "State Flux Exposure": "83.36%", - "Commented Logic Exposure": "3.33%", + "Cognitive Load Exposure": "24.58%", + "Error & Exception Exposure": "22.16%", + "Tech Debt Exposure": "10.53%", + "Testing Exposure": "28.32%", + "API Exposure": "1.51%", + "Concurrency Exposure": "11.37%", + "State Flux Exposure": "9.18%", + "Commented Logic Exposure": "2.66%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.46%", + "Documentation Exposure": "22.15%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "javascript/threejs/BufferGeometry.js": { + "zig/zls/DocumentScope.zig": { "1. Artifact Identity": { - "Filename": "BufferGeometry.js", - "Path": "javascript/threejs/BufferGeometry.js", - "Language": "Javascript", + "Filename": "DocumentScope.zig", + "Path": "zig/zls/DocumentScope.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "EventDispatcher", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'math/Vector2.js' mimics 'math/Vector3.js'", - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8675.64, - "Y": -105.68, - "Z": -732.71 + "X": 2886.25, + "Y": -131.82, + "Z": 8302.58 }, "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": 1459, - "Coding LOC": 588, - "Documentation LOC": 377, - "Structural Magnitude": 616.46, - "Control Flow Ratio": "55.7%", - "Popularity Rank": 0, + "Total LOC": 1346, + "Coding LOC": 1130, + "Documentation LOC": 46, + "Structural Magnitude": 242.9, + "Control Flow Ratio": "76.9%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.27 + "Raw Cognitive Density": 0.407 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "44.46%", - "Error & Exception Exposure": "96.2%", - "Tech Debt Exposure": "45.97%", + "Cognitive Load Exposure": "13.44%", + "Error & Exception Exposure": "30.86%", + "Tech Debt Exposure": "16.9%", "Testing Exposure": "80.0%", - "API Exposure": "1.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "5.03%", + "API Exposure": "2.49%", + "Concurrency Exposure": "13.45%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "26.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "computeTangents", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 158, - "Control Flow Branches": 13, - "Input Parameters": 0, - "Control Flow Ratio": "61.9%", - "Start Line": 822, - "End Line": 979 + "Function Name": "nameToken", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 173, + "End Line": 223 }, { - "Function Name": "computeBoundingSphere", - "Structural Impact": 20.6, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 14, - "Input Parameters": 0, - "Control Flow Ratio": "70.0%", - "Start Line": 703, - "End Line": 813 + "Function Name": "getScopeDeclarationsConst", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1303, + "End Line": 1323 }, { - "Function Name": "toJSON", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 13, - "Input Parameters": 0, - "Control Flow Ratio": "76.5%", - "Start Line": 1212, - "End Line": 1320 + "Function Name": "getScopeChildScopesConst", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1325, + "End Line": 1345 }, { - "Function Name": "copy", - "Structural Impact": 16.5, - "Lines of Code (LOC)": 104, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 1339, - "End Line": 1442 + "Function Name": "get", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "28.6%", + "Start Line": 110, + "End Line": 119 }, { - "Function Name": "computeBoundingBox", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 12, - "Input Parameters": 0, - "Control Flow Ratio": "85.7%", - "Start Line": 628, - "End Line": 696 + "Function Name": "getScopeDeclaration", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1293, + "End Line": 1301 }, { - "Function Name": "toNonIndexed", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "52.9%", - "Start Line": 1105, - "End Line": 1205 + "Function Name": "getScopeAstNode", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1279, + "End Line": 1291 }, { - "Function Name": "setFromPoints", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 8, + "Function Name": "isContainer", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 581, - "End Line": 621 + "Control Flow Ratio": "50.0%", + "Start Line": 236, + "End Line": 241 }, { - "Function Name": "computeVertexNormals", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 91, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 987, - "End Line": 1077 + "Function Name": "unwrap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 162, + "End Line": 165 }, { - "Function Name": "applyMatrix4", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 5, + "Function Name": "unwrap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 363, - "End Line": 411 + "Control Flow Ratio": "33.3%", + "Start Line": 303, + "End Line": 306 }, { - "Function Name": "convertBufferAttribute", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1107, - "End Line": 1139 + "Function Name": "eql", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 47 }, { - "Function Name": "setIndex", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 217, - "End Line": 231 + "Function Name": "pushDeclaration", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 337 }, { - "Function Name": "handleTriangle", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, + "Function Name": "walkNodeEnsureScope", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 540, + "End Line": 545 + }, + { + "Function Name": "walkBlockNodeKeepOpen", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 902, + "End Line": 907 + }, + { + "Function Name": "startScope", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 426, + "End Line": 426 + }, + { + "Function Name": "pushChildScope", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 872, - "End Line": 905 + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 461 }, { - "Function Name": "handleVertex", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 940, - "End Line": 960 + "Function Name": "walkNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 568, + "End Line": 572 }, { - "Function Name": "normalizeNormals", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1083, - "End Line": 1097 + "Function Name": "walkContainerDecl", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 764, + "End Line": 768 }, { - "Function Name": "addGroup", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkErrorSetNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 322, - "End Line": 332 + "Start Line": 830, + "End Line": 834 }, { - "Function Name": "translate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkFuncNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 499, - "End Line": 509 + "Start Line": 852, + "End Line": 856 }, { - "Function Name": "scale", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkBlockNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 521, - "End Line": 531 + "Start Line": 893, + "End Line": 897 }, { - "Function Name": "setIndirect", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, + "Function Name": "walkIfNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 247 + "Start Line": 959, + "End Line": 963 }, { - "Function Name": "setAttribute", + "Function Name": "walkCatchNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 998, + "End Line": 1002 + }, + { + "Function Name": "walkWhileNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1024, + "End Line": 1028 + }, + { + "Function Name": "walkForNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1106 + }, + { + "Function Name": "walkSwitchNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1155, + "End Line": 1159 + }, + { + "Function Name": "walkErrdeferNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1212, + "End Line": 1216 + }, + { + "Function Name": "walkOtherNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1254, + "End Line": 1258 + }, + { + "Function Name": "hash", "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 280, - "End Line": 286 + "Start Line": 34, + "End Line": 41 }, { - "Function Name": "constructor", + "Function Name": "getCase", "Structural Impact": 2.0, - "Lines of Code (LOC)": 146, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 198 + "Start Line": 143, + "End Line": 147 }, { - "Function Name": "setDrawRange", + "Function Name": "deinit", "Structural Impact": 2.0, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 350, - "End Line": 355 + "Start Line": 523, + "End Line": 528 }, { - "Function Name": "rotateX", + "Function Name": "walkUnaryOpNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 447 + "Start Line": 1232, + "End Line": 1232 }, { - "Function Name": "rotateY", + "Function Name": "walkBinOpNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 467 + "Start Line": 1236, + "End Line": 1236 }, { - "Function Name": "rotateZ", + "Function Name": "walkOptNodeAndOptNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 477, - "End Line": 487 + "Start Line": 1242, + "End Line": 1242 }, { - "Function Name": "lookAt", + "Function Name": "walkNodeAndOptNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 541, - "End Line": 551 + "Start Line": 1248, + "End Line": 1248 }, { - "Function Name": "applyQuaternion", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Function Name": "getScopeTag", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 419, - "End Line": 427 + "Start Line": 1265, + "End Line": 1270 }, { - "Function Name": "deleteAttribute", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "getScopeParent", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 294, - "End Line": 300 + "Start Line": 1272, + "End Line": 1277 }, { - "Function Name": "getAttribute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getVarDeclNode", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 271 + "Start Line": 127, + "End Line": 130 }, { - "Function Name": "hasAttribute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getFullVarDecl", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 308, - "End Line": 312 + "Start Line": 132, + "End Line": 134 }, { - "Function Name": "center", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Function Name": "eql", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 568 + "Start Line": 168, + "End Line": 170 }, { - "Function Name": "getIndex", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "init", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 209 + "Start Line": 488, + "End Line": 488 }, { - "Function Name": "getIndirect", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "locToSmallLoc", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 254, - "End Line": 258 + "Start Line": 530, + "End Line": 535 }, { - "Function Name": "clearGroups", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "toOptional", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 337, - "End Line": 341 + "Start Line": 153, + "End Line": 155 }, { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "toOptional", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1327, - "End Line": 1331 + "Start Line": 293, + "End Line": 295 }, { - "Function Name": "dispose", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1450, - "End Line": 1454 + "Start Line": 319, + "End Line": 322 + }, + { + "Function Name": "finalize", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 384, + "End Line": 384 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 93, - "Sequential Logic Declarations": 74, - "Function Parameters": 35, - "Function/Method Declarations": 35, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 28, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 223, + "Sequential Logic Declarations": 67, + "Function Parameters": 45, + "Function/Method Declarations": 45, + "Class/Entity Declarations": 19, + "Defensive Programming Constructs": 165, + "Type/Safety Bypasses": 45, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 387, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 48, + "Exposed API / Public Exports": 41, + "State Mutations / Variable Reassignments": 46, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 38, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 2, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 12, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 11, + "Scientific & Mathematical Operations": 4, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 40, + "Pointer Arithmetic & Addressing": 53, + "Manual Memory Allocation": 1, "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": 25, + "Fatal Aborts & Exceptions": 47, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 129, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 98, - "Resource Deallocation & Cleanup": 4, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 160, + "Resource Deallocation & Cleanup": 10, + "Private / Encapsulated Scopes": 130, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 564, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1034, "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": 0, "Cloud LLM API Integrations": 0, @@ -403577,16 +408196,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 4, - "Core Var Decl": 136, - "Design Camel Case": 46, - "Design Snake Case": 89, - "Design Pascal Case": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 139, + "Design Camel Case": 1, + "Design Snake Case": 109, + "Design Pascal Case": 26, "Design Upper Case": 0, - "Design Short Vars": 37, + "Design Short Vars": 3, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Duplicate Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -403594,12 +408213,12 @@ "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)": 7, "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": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -403610,548 +408229,711 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "../math/Box3.js", - "../math/MathUtils.js", - "../math/Matrix3.js", - "../math/Matrix4.js", - "../math/Sphere.js", - "../math/Vector2.js", - "../math/Vector3.js", - "../utils.js", - "./BufferAttribute.js", - "./EventDispatcher.js", - "./Object3D.js" + "ast.zig", + "offsets.zig", + "std", + "tracy" ] }, - "javascript/threejs/Editor.js": { + "zig/zls/DocumentStore.zig": { "1. Artifact Identity": { - "Filename": "Editor.js", - "Path": "javascript/threejs/Editor.js", - "Language": "Javascript", + "Filename": "DocumentStore.zig", + "Path": "zig/zls/DocumentStore.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 7778.63, - "Y": -115.56, - "Z": -1197.58 + "X": 2688.97, + "Y": -190.63, + "Z": 8988.69 }, "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": 820, - "Coding LOC": 458, - "Documentation LOC": 14, - "Structural Magnitude": 616.06, - "Control Flow Ratio": "54.8%", - "Popularity Rank": 0, + "Total LOC": 2059, + "Coding LOC": 1604, + "Documentation LOC": 133, + "Structural Magnitude": 750.58, + "Control Flow Ratio": "60.9%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.016 + "Raw Cognitive Density": 0.764 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.37%", - "Error & Exception Exposure": "98.91%", - "Tech Debt Exposure": "71.89%", - "Testing Exposure": "80.0%", - "API Exposure": "2.07%", - "Concurrency Exposure": "72.74%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "25.68%", + "Error & Exception Exposure": "18.85%", + "Tech Debt Exposure": "19.03%", + "Testing Exposure": "2.42%", + "API Exposure": "1.5%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "20.14%", + "Commented Logic Exposure": "4.94%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.23%", + "Documentation Exposure": "14.38%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "addHelper", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 18, - "Input Parameters": 0, - "Control Flow Ratio": "78.3%", - "Start Line": 392, - "End Line": 476 + "Function Name": "createAndStoreDocument", + "Structural Impact": 59.0, + "Lines of Code (LOC)": 107, + "Control Flow Branches": 23, + "Input Parameters": 4, + "Control Flow Ratio": "62.2%", + "Start Line": 1567, + "End Line": 1673 }, { - "Function Name": "addObject", - "Structural Impact": 11.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, + "Function Name": "invalidateBuildFileWorker", + "Structural Impact": 42.8, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 21, + "Input Parameters": 2, + "Control Flow Ratio": "65.6%", + "Start Line": 1192, + "End Line": 1285 + }, + { + "Function Name": "loadBuildConfiguration", + "Structural Impact": 40.5, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 17, "Input Parameters": 3, + "Control Flow Ratio": "56.7%", + "Start Line": 1364, + "End Line": 1452 + }, + { + "Function Name": "publishCimportDiagnostics", + "Structural Impact": 39.3, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 20, + "Input Parameters": 2, "Control Flow Ratio": "80.0%", - "Start Line": 179, - "End Line": 207 + "Start Line": 1897, + "End Line": 1955 }, { - "Function Name": "setObjectMaterial", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 540, - "End Line": 552 + "Function Name": "loadDirectoryRecursive", + "Structural Impact": 32.4, + "Lines of Code (LOC)": 60, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 974, + "End Line": 1033 }, { - "Function Name": "fromJSON", - "Structural Impact": 7.4, + "Function Name": "readFile", + "Structural Impact": 22.5, "Lines of Code (LOC)": 34, - "Control Flow Branches": 3, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "68.8%", + "Start Line": 740, + "End Line": 773 + }, + { + "Function Name": "notifyBuildStart", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 674, - "End Line": 707 + "Control Flow Ratio": "56.2%", + "Start Line": 1112, + "End Line": 1154 }, { - "Function Name": "addMaterial", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, + "Function Name": "notifyBuildEnd", + "Structural Impact": 15.5, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 1158, + "End Line": 1190 + }, + { + "Function Name": "Lazy", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 595, + "End Line": 643 + }, + { + "Function Name": "deinit", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 251, - "End Line": 269 + "Control Flow Ratio": "87.5%", + "Start Line": 697, + "End Line": 723 }, { - "Function Name": "removeMaterial", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, + "Function Name": "buildDotZigExists", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "46.2%", + "Start Line": 1455, + "End Line": 1466 + }, + { + "Function Name": "loadBuildAssociatedConfiguration", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "44.4%", + "Start Line": 1302, + "End Line": 1325 + }, + { + "Function Name": "invalidateBuildFile", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 959, + "End Line": 970 + }, + { + "Function Name": "closeLspSyncedDocument", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 867, + "End Line": 889 + }, + { + "Function Name": "deinit", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 21, "Control Flow Branches": 3, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "75.0%", - "Start Line": 291, - "End Line": 309 + "Start Line": 562, + "End Line": 582 }, { - "Function Name": "getMaterialById", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, + "Function Name": "next", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 331, - "End Line": 349 + "Control Flow Ratio": "40.0%", + "Start Line": 676, + "End Line": 688 }, { - "Function Name": "toJSON", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 40, + "Function Name": "sendMessageToClient", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1096, + "End Line": 1110 + }, + { + "Function Name": "getHandle", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 709, - "End Line": 748 + "Input Parameters": 2, + "Control Flow Ratio": "37.5%", + "Start Line": 728, + "End Line": 735 }, { - "Function Name": "removeScript", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 15, + "Function Name": "deinit", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 154, + "End Line": 159 + }, + { + "Function Name": "getOrLoadHandleVoid", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 988, + "End Line": 998 + }, + { + "Function Name": "getOrNull", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 510, - "End Line": 524 + "Control Flow Ratio": "40.0%", + "Start Line": 628, + "End Line": 637 }, { - "Function Name": "getObjectMaterial", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "loadTrigramStore", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 11, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 526, - "End Line": 538 + "Control Flow Ratio": "66.7%", + "Start Line": 1066, + "End Line": 1076 }, { - "Function Name": "save", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "deinit", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 787, - "End Line": 799 + "Start Line": 1962, + "End Line": 1971 }, { - "Function Name": "removeObject", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 21, + "Function Name": "tryLockConfig", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 216, - "End Line": 236 + "Start Line": 78, + "End Line": 84 }, { - "Function Name": "addMaterialToRefCounter", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 19, + "Function Name": "await", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 271, - "End Line": 289 + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 589, + "End Line": 592 }, { - "Function Name": "removeMaterialFromRefCounter", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 19, + "Function Name": "deinit", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 311, - "End Line": 329 + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 607, + "End Line": 611 }, { - "Function Name": "setScene", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 29, + "Function Name": "deinit", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 147, - "End Line": 175 + "Start Line": 221, + "End Line": 233 }, { - "Function Name": "addScript", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, + "Function Name": "deinit", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 496, - "End Line": 508 + "Start Line": 325, + "End Line": 333 }, { - "Function Name": "removeHelper", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 478, - "End Line": 492 + "Function Name": "collectImports", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 488 }, { - "Function Name": "selectByUuid", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 589, - "End Line": 603 + "Function Name": "refresh", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 406, + "End Line": 413 }, { - "Function Name": "clear", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 627, - "End Line": 670 + "Function Name": "collectIncludeDirs", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1690, + "End Line": 1695 }, { - "Function Name": "addCamera", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 366, - "End Line": 376 + "Function Name": "collectCMacros", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1757, + "End Line": 1762 }, { - "Function Name": "removeCamera", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 378, - "End Line": 388 + "Function Name": "uriFromImportStr", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1978, + "End Line": 1983 }, { - "Function Name": "selectById", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 576, - "End Line": 587 + "Function Name": "isAssociatedWith", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 99 }, { - "Function Name": "focus", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 611, - "End Line": 619 + "Function Name": "parseTree", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 463, + "End Line": 463 }, { - "Function Name": "setViewportCamera", - "Structural Impact": 3.1, + "Function Name": "getBuildFile", + "Structural Impact": 2.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 554, - "End Line": 559 + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 800, + "End Line": 805 }, { - "Function Name": "Editor", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 129, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 15, - "End Line": 143 + "Function Name": "openLspSyncedDocument", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 840, + "End Line": 840 }, { - "Function Name": "updateMatrixWorld", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 415, - "End Line": 433 + "Function Name": "refreshLspSyncedDocument", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 894, + "End Line": 894 }, { - "Function Name": "nameObject", + "Function Name": "refreshDocumentFromFileSystem", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 209, - "End Line": 214 + "Start Line": 922, + "End Line": 922 }, { - "Function Name": "setGeometryName", + "Function Name": "resolveCImport", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1790, + "End Line": 1790 + }, + { + "Function Name": "unlockConfig", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 249 + "Start Line": 86, + "End Line": 88 }, { - "Function Name": "setMaterialName", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Function Name": "deinit", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 351, - "End Line": 356 + "Start Line": 657, + "End Line": 659 }, { - "Function Name": "execute", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 756, - "End Line": 760 + "Start Line": 666, + "End Line": 668 }, { - "Function Name": "saveArrayBuffer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "loadTrigramStores", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 801, - "End Line": 805 + "Start Line": 1035, + "End Line": 1038 }, { - "Function Name": "saveString", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "getAssociatedBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 807, - "End Line": 811 + "Start Line": 241, + "End Line": 241 }, { - "Function Name": "addGeometry", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getAssociatedCompilationUnits", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 242 + "Start Line": 337, + "End Line": 337 }, { - "Function Name": "addTexture", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "get", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 362 + "Start Line": 613, + "End Line": 613 }, { - "Function Name": "setViewportShading", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "create", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 561, - "End Line": 566 + "Start Line": 646, + "End Line": 646 }, { - "Function Name": "select", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "create", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 570, - "End Line": 574 + "Start Line": 663, + "End Line": 663 }, { - "Function Name": "focusById", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getOrLoadHandle", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 621, - "End Line": 625 + "Start Line": 779, + "End Line": 779 }, { - "Function Name": "objectByUuid", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getOrLoadBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 810, + "End Line": 810 + }, + { + "Function Name": "prepareBuildRunnerArgs", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1327, + "End Line": 1327 + }, + { + "Function Name": "collectPotentialBuildFiles", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1473, + "End Line": 1473 + }, + { + "Function Name": "createBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1522, + "End Line": 1522 + }, + { + "Function Name": "getCached", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 750, - "End Line": 754 + "Start Line": 639, + "End Line": 641 }, { - "Function Name": "formatNumber", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "isBuildFile", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 813, - "End Line": 817 + "Start Line": 1287, + "End Line": 1289 }, { - "Function Name": "deselect", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isBuiltinFile", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 605, - "End Line": 609 + "Start Line": 1291, + "End Line": 1293 }, { - "Function Name": "undo", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isInStd", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 762, - "End Line": 766 + "Start Line": 1295, + "End Line": 1298 }, { - "Function Name": "redo", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "getDocumentScope", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 772 + "Start Line": 187, + "End Line": 187 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 63, - "Sequential Logic Declarations": 52, - "Function Parameters": 46, - "Function/Method Declarations": 42, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 28, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 486, + "Sequential Logic Declarations": 312, + "Function Parameters": 59, + "Function/Method Declarations": 59, + "Class/Entity Declarations": 22, + "Defensive Programming Constructs": 323, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 409, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Exposed API / Public Exports": 45, + "State Mutations / Variable Reassignments": 158, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 101, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 18, + "Asynchronous/Concurrent Execution": 29, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 41, - "Global State Dependencies": 1, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 32, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 4, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 7, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 16, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 12, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 74, + "Pointer Arithmetic & Addressing": 112, + "Manual Memory Allocation": 9, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 151, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 0, + "Bitwise Operations": 264, + "Thread Synchronization Locks": 33, + "Immutable Data Declarations": 234, + "Resource Deallocation & Cleanup": 109, + "Private / Encapsulated Scopes": 256, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 433, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1480, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -404168,15 +408950,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 43, - "Design Camel Case": 4, - "Design Snake Case": 37, - "Design Pascal Case": 1, + "Core Var Decl": 247, + "Design Camel Case": 2, + "Design Snake Case": 196, + "Design Pascal Case": 43, "Design Upper Case": 0, - "Design Short Vars": 4, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Design Short Vars": 13, + "Design Long Vars": 6, + "Duplicate Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -404184,7 +408966,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)": 15, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -404200,1412 +408982,847 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 4, + "Total Downstream (Absolute Dependency Blast Radius)": 3 }, "9. Extracted Dependencies": [ - "./Config.js", - "./History.js", - "./Loader.js", - "./Selector.js", - "./Storage.js", - "./Strings.js", - "three" + "BuildAssociatedConfig.zig", + "DiagnosticsCollection.zig", + "DocumentScope.zig", + "TrigramStore.zig", + "Uri.zig", + "analysis.zig", + "build_runner/shared.zig", + "builtin", + "lsp", + "offsets.zig", + "std", + "tracy", + "translate_c.zig" ] }, - "javascript/threejs/GLTFLoader.js": { + "zig/zls/Server.zig": { "1. Artifact Identity": { - "Filename": "GLTFLoader.js", - "Path": "javascript/threejs/GLTFLoader.js", - "Language": "Javascript", - "Architect": "GLTFExporter", - "Indentation Style": "Tabs", - "Parent Entity": "Loader, Interpolant, GLTFCubicSplineInterpolant", + "Filename": "Server.zig", + "Path": "zig/zls/Server.zig", + "Language": "Zig", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8292.37, - "Y": -74.07, - "Z": -1119.18 + "X": 2125.03, + "Y": -185.88, + "Z": 8991.65 }, "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": 4861, - "Coding LOC": 2413, - "Documentation LOC": 613, - "Structural Magnitude": 3082.26, - "Control Flow Ratio": "66.1%", - "Popularity Rank": 0, + "Total LOC": 2030, + "Coding LOC": 1670, + "Documentation LOC": 108, + "Structural Magnitude": 1194.9, + "Control Flow Ratio": "68.6%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.529 + "Raw Cognitive Density": 0.495 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.16%", - "Error & Exception Exposure": "84.69%", - "Tech Debt Exposure": "46.95%", - "Testing Exposure": "80.0%", - "API Exposure": "1.63%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "4.91%", + "Cognitive Load Exposure": "17.63%", + "Error & Exception Exposure": "12.77%", + "Tech Debt Exposure": "10.38%", + "Testing Exposure": "2.56%", + "API Exposure": "0.47%", + "Concurrency Exposure": "12.42%", + "State Flux Exposure": "10.12%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "14.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "parse", - "Structural Impact": 77.7, - "Lines of Code (LOC)": 122, - "Control Flow Branches": 31, - "Input Parameters": 4, - "Control Flow Ratio": "86.1%", - "Start Line": 429, - "End Line": 550 + "Function Name": "initializeHandler", + "Structural Impact": 190.2, + "Lines of Code (LOC)": 244, + "Control Flow Branches": 88, + "Input Parameters": 3, + "Control Flow Ratio": "95.7%", + "Start Line": 340, + "End Line": 583 }, { - "Function Name": "_createAnimationTracks", - "Structural Impact": 71.3, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "89.7%", - "Start Line": 4514, - "End Line": 4616 + "Function Name": "sendRequestSync", + "Structural Impact": 59.9, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 25, + "Input Parameters": 4, + "Control Flow Ratio": "86.2%", + "Start Line": 1794, + "End Line": 1829 }, { - "Function Name": "getDependency", - "Structural Impact": 67.4, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 35, + "Function Name": "handleResponse", + "Structural Impact": 38.6, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 20, "Input Parameters": 2, - "Control Flow Ratio": "79.5%", - "Start Line": 2872, - "End Line": 2972 + "Control Flow Ratio": "83.3%", + "Start Line": 1974, + "End Line": 2017 }, { - "Function Name": "loadMaterial", - "Structural Impact": 50.1, - "Lines of Code (LOC)": 153, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "85.3%", - "Start Line": 3542, - "End Line": 3694 + "Function Name": "validateMessage", + "Structural Impact": 35.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 18, + "Input Parameters": 2, + "Control Flow Ratio": "69.2%", + "Start Line": 1929, + "End Line": 1972 }, { - "Function Name": "loadMesh", - "Structural Impact": 49.5, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "78.4%", - "Start Line": 3799, - "End Line": 3940 + "Function Name": "codeActionHandler", + "Structural Impact": 34.1, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 15, + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1520, + "End Line": 1562 }, { - "Function Name": "addMorphTargets", - "Structural Impact": 48.0, - "Lines of Code (LOC)": 80, - "Control Flow Branches": 21, + "Function Name": "initializedHandler", + "Structural Impact": 30.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 13, "Input Parameters": 3, - "Control Flow Ratio": "72.4%", - "Start Line": 2333, - "End Line": 2412 + "Control Flow Ratio": "81.2%", + "Start Line": 585, + "End Line": 629 }, { - "Function Name": "_loadNodeShallow", - "Structural Impact": 44.1, - "Lines of Code (LOC)": 146, - "Control Flow Branches": 25, - "Input Parameters": 1, - "Control Flow Ratio": "75.8%", - "Start Line": 4274, - "End Line": 4419 + "Function Name": "sendNotificationSync", + "Structural Impact": 27.9, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, + "Input Parameters": 4, + "Control Flow Ratio": "78.6%", + "Start Line": 1831, + "End Line": 1852 }, { - "Function Name": "createNodeMesh", - "Structural Impact": 40.9, - "Lines of Code (LOC)": 139, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "69.7%", - "Start Line": 1691, - "End Line": 1829 + "Function Name": "saveDocumentHandler", + "Structural Impact": 27.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 12, + "Input Parameters": 3, + "Control Flow Ratio": "70.6%", + "Start Line": 1190, + "End Line": 1223 }, { - "Function Name": "loadAccessor", - "Structural Impact": 39.2, - "Lines of Code (LOC)": 133, - "Control Flow Branches": 22, - "Input Parameters": 1, + "Function Name": "didChangeConfigurationHandler", + "Structural Impact": 25.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 11, + "Input Parameters": 3, "Control Flow Ratio": "78.6%", - "Start Line": 3071, - "End Line": 3203 + "Start Line": 939, + "End Line": 976 }, { - "Function Name": "computeBounds", - "Structural Impact": 37.5, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 15, + "Function Name": "processMessage", + "Structural Impact": 25.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "83.3%", - "Start Line": 4669, - "End Line": 4777 + "Control Flow Ratio": "73.3%", + "Start Line": 1864, + "End Line": 1885 }, { - "Function Name": "loadTextureImage", - "Structural Impact": 36.6, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 16, + "Function Name": "processMessageReportError", + "Structural Impact": 24.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 3233, - "End Line": 3285 + "Control Flow Ratio": "55.6%", + "Start Line": 1887, + "End Line": 1927 }, { - "Function Name": "_loadLight", - "Structural Impact": 31.7, - "Lines of Code (LOC)": 68, - "Control Flow Branches": 19, - "Input Parameters": 1, - "Control Flow Ratio": "82.6%", - "Start Line": 694, - "End Line": 761 + "Function Name": "signatureHelpHandler", + "Structural Impact": 23.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "52.6%", + "Start Line": 1341, + "End Line": 1372 }, { - "Function Name": "assignFinalMaterial", - "Structural Impact": 29.9, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "77.3%", - "Start Line": 3439, - "End Line": 3527 + "Function Name": "didChangeWatchedFilesHandler", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "76.9%", + "Start Line": 898, + "End Line": 919 }, { - "Function Name": "constructor", - "Structural Impact": 27.9, - "Lines of Code (LOC)": 74, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "76.5%", - "Start Line": 2549, - "End Line": 2622 + "Function Name": "didChangeWorkspaceFoldersHandler", + "Structural Impact": 20.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "69.2%", + "Start Line": 921, + "End Line": 937 }, { - "Function Name": "load", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 76, + "Function Name": "inlayHintHandler", + "Structural Impact": 19.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 264, - "End Line": 339 + "Input Parameters": 3, + "Control Flow Ratio": "53.3%", + "Start Line": 1494, + "End Line": 1518 }, { - "Function Name": "loadImageSource", - "Structural Impact": 23.5, - "Lines of Code (LOC)": 88, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "52.6%", - "Start Line": 3287, - "End Line": 3374 + "Function Name": "changeDocumentHandler", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "61.5%", + "Start Line": 1166, + "End Line": 1188 }, { - "Function Name": "loadAnimation", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 90, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "70.6%", - "Start Line": 4059, - "End Line": 4148 + "Function Name": "willSaveWaitUntilHandler", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1241, + "End Line": 1261 }, { - "Function Name": "addPrimitiveAttributes", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 9, + "Function Name": "formattingHandler", + "Structural Impact": 18.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 4787, - "End Line": 4845 + "Control Flow Ratio": "57.1%", + "Start Line": 1445, + "End Line": 1460 }, { - "Function Name": "loadBufferView", - "Structural Impact": 21.7, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "63.2%", - "Start Line": 1605, - "End Line": 1671 + "Function Name": "showMessage", + "Structural Impact": 17.8, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 226, + "End Line": 267 }, { - "Function Name": "loadScene", - "Structural Impact": 21.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "61.1%", - "Start Line": 4428, - "End Line": 4512 + "Function Name": "semanticTokensRangeHandler", + "Structural Impact": 17.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1292, + "End Line": 1321 }, { - "Function Name": "assignTexture", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 42, + "Function Name": "semanticTokensFullHandler", + "Structural Impact": 17.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "70.0%", - "Start Line": 3386, - "End Line": 3427 + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1263, + "End Line": 1290 }, { - "Function Name": "extendTexture", - "Structural Impact": 19.5, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 2005, - "End Line": 2047 + "Function Name": "hoverHandler", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1409, + "End Line": 1431 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1019, - "End Line": 1071 + "Function Name": "completionHandler", + "Structural Impact": 16.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1323, + "End Line": 1339 }, { - "Function Name": "decodePrimitive", + "Function Name": "closeDocumentHandler", "Structural Impact": 16.8, - "Lines of Code (LOC)": 58, + "Lines of Code (LOC)": 15, "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 1929, - "End Line": 1986 + "Input Parameters": 3, + "Control Flow Ratio": "70.0%", + "Start Line": 1225, + "End Line": 1239 }, { - "Function Name": "loadNode", - "Structural Impact": 16.7, - "Lines of Code (LOC)": 79, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 4192, - "End Line": 4270 + "Function Name": "sendMessageSync", + "Structural Impact": 16.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1854, + "End Line": 1862 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 905, - "End Line": 953 + "Function Name": "documentSymbolsHandler", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "54.5%", + "Start Line": 1433, + "End Line": 1443 }, { - "Function Name": "getImageURIMimeType", - "Structural Impact": 16.0, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 10, + "Function Name": "loop", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 8, "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2533, - "End Line": 2541 - }, - { - "Function Name": "constructor", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "88.9%", - "Start Line": 1840, - "End Line": 1901 - }, - { - "Function Name": "updateMorphTargets", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 2420, - "End Line": 2457 - }, - { - "Function Name": "parse", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 66, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 2636, - "End Line": 2701 - }, - { - "Function Name": "loadSkin", - "Structural Impact": 14.5, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 3987, - "End Line": 4050 - }, - { - "Function Name": "loadCamera", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 3949, - "End Line": 3978 + "Control Flow Ratio": "53.3%", + "Start Line": 1754, + "End Line": 1782 }, { - "Function Name": "loadGeometries", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 3730, - "End Line": 3790 + "Function Name": "openDocumentHandler", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 1148, + "End Line": 1164 }, { - "Function Name": "_markDefs", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 2708, - "End Line": 2757 + "Function Name": "prepareRenameHandler", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1467, + "End Line": 1482 }, { - "Function Name": "extendMaterialParams", + "Function Name": "foldingRangeHandler", "Structural Impact": 12.4, - "Lines of Code (LOC)": 40, + "Lines of Code (LOC)": 9, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1099, - "End Line": 1138 + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1564, + "End Line": 1572 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 28, + "Function Name": "selectionRangeHandler", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1308, - "End Line": 1335 + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1574, + "End Line": 1582 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, + "Function Name": "removeWorkspace", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1217, - "End Line": 1240 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1458, - "End Line": 1491 - }, - { - "Function Name": "getNormalizedComponentScale", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2507, - "End Line": 2531 + "Control Flow Ratio": "80.0%", + "Start Line": 885, + "End Line": 896 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 29, + "Function Name": "formatMessage", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1410, - "End Line": 1438 - }, - { - "Function Name": "createPrimitiveKey", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2459, - "End Line": 2489 + "Control Flow Ratio": "100.0%", + "Start Line": 2019, + "End Line": 2025 }, { - "Function Name": "extendParams", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 31, + "Function Name": "renameHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "75.0%", - "Start Line": 813, - "End Line": 843 + "Start Line": 1462, + "End Line": 1465 }, { - "Function Name": "_getNodeRef", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 32, + "Function Name": "referencesHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 2795, - "End Line": 2826 - }, - { - "Function Name": "reduceAssociations", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4476, - "End Line": 4512 + "Control Flow Ratio": "75.0%", + "Start Line": 1484, + "End Line": 1487 }, { - "Function Name": "addUnknownExtensionsToUserData", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 16, + "Function Name": "documentHighlightHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 2283, - "End Line": 2298 - }, - { - "Function Name": "createNodeMesh", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 4150, - "End Line": 4183 - }, - { - "Function Name": "loadBuffer", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3011, - "End Line": 3041 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 1511, - "End Line": 1538 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 1558, - "End Line": 1585 - }, - { - "Function Name": "extendMaterialParams", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1167, - "End Line": 1189 - }, - { - "Function Name": "extendMaterialParams", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1364, - "End Line": 1382 + "Control Flow Ratio": "75.0%", + "Start Line": 1489, + "End Line": 1492 }, { - "Function Name": "assignExtrasToUserData", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 17, + "Function Name": "isBlockingMessage", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 46, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 2306, - "End Line": 2322 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1630, + "End Line": 1675 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 13, + "Function Name": "generateDiagnostics", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, "Input Parameters": 2, "Control Flow Ratio": "60.0%", - "Start Line": 1268, - "End Line": 1280 + "Start Line": 327, + "End Line": 338 }, { - "Function Name": "constructor", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 119, - "Control Flow Branches": 0, + "Function Name": "sendManualWatchUpdate", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 253 - }, - { - "Function Name": "_markDefs", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 673, - "End Line": 692 + "Control Flow Ratio": "57.1%", + "Start Line": 784, + "End Line": 792 }, { - "Function Name": "getDependencies", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 22, + "Function Name": "create", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 33, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2981, - "End Line": 3002 + "Control Flow Ratio": "42.9%", + "Start Line": 1687, + "End Line": 1719 }, { - "Function Name": "getMaterialExtension", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 13, + "Function Name": "registerCapability", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 614, - "End Line": 626 - }, - { - "Function Name": "createNodeAttachment", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 771, - "End Line": 788 + "Control Flow Ratio": "66.7%", + "Start Line": 644, + "End Line": 662 }, { - "Function Name": "createUniqueName", + "Function Name": "requestConfiguration", "Structural Impact": 6.5, "Lines of Code (LOC)": 17, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3703, - "End Line": 3719 - }, - { - "Function Name": "interpolate_", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 2102, - "End Line": 2140 + "Control Flow Ratio": "100.0%", + "Start Line": 665, + "End Line": 681 }, { - "Function Name": "updateMappings", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 24, + "Function Name": "exitHandler", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2803, - "End Line": 2826 + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 636, + "End Line": 642 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 15, + "Function Name": "sendJsonMessageSync", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 863, - "End Line": 877 + "Control Flow Ratio": "40.0%", + "Start Line": 1784, + "End Line": 1792 }, { - "Function Name": "_addNodeRef", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "do", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 2772, - "End Line": 2784 + "Start Line": 330, + "End Line": 335 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 11, + "Function Name": "deinit", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 981, - "End Line": 991 - }, - { - "Function Name": "_getArrayFromAccessor", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 4618, - "End Line": 4639 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3212, - "End Line": 3231 - }, - { - "Function Name": "_invokeAll", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2845, - "End Line": 2862 - }, - { - "Function Name": "_onError", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 295, - "End Line": 310 - }, - { - "Function Name": "_invokeOne", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2828, - "End Line": 2843 - }, - { - "Function Name": "loadBufferView", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3050, - "End Line": 3062 + "Start Line": 777, + "End Line": 782 }, { - "Function Name": "collectMorphTargets", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, + "Function Name": "destroy", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 4521, - "End Line": 4529 - }, - { - "Function Name": "constructor", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1914, - "End Line": 1927 - }, - { - "Function Name": "getDependency", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 763, - "End Line": 769 - }, - { - "Function Name": "copySampleValue_", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2082, - "End Line": 2100 - }, - { - "Function Name": "createDefaultMaterial", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2263, - "End Line": 2281 - }, - { - "Function Name": "_createCubicSplineTrackInterpolant", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4641, - "End Line": 4658 - }, - { - "Function Name": "createAttributesKey", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2491, - "End Line": 2505 - }, - { - "Function Name": "register", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 391, - "End Line": 401 - }, - { - "Function Name": "unregister", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 409, - "End Line": 419 - }, - { - "Function Name": "InterpolantFactoryMethodGLTFCubicSpline", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4643, - "End Line": 4653 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 897, - "End Line": 903 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 973, - "End Line": 979 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1011, - "End Line": 1017 + "Start Line": 1721, + "End Line": 1732 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, + "Function Name": "keepRunning", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 1091, - "End Line": 1097 + "Start Line": 1740, + "End Line": 1745 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoTypeDefinitionHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1159, - "End Line": 1165 + "Start Line": 1382, + "End Line": 1389 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoImplementationHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1209, - "End Line": 1215 + "Start Line": 1391, + "End Line": 1398 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoDeclarationHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1260, - "End Line": 1266 + "Start Line": 1400, + "End Line": 1407 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "shutdownHandler", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1300, - "End Line": 1306 + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 631, + "End Line": 634 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "workspaceSymbolHandler", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1356, - "End Line": 1362 + "Start Line": 1584, + "End Line": 1586 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "deinit", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1402, - "End Line": 1408 - }, - { - "Function Name": "GLTFRegistry", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 576, - "End Line": 608 + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 92, + "End Line": 95 }, { - "Function Name": "interpolate_", - "Structural Impact": 2.7, + "Function Name": "initAnalyser", + "Structural Impact": 2.5, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2148, - "End Line": 2156 + "Start Line": 269, + "End Line": 277 }, { - "Function Name": "constructor", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 5, + "Function Name": "gotoDefinitionHandler", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2076, - "End Line": 2080 + "Start Line": 1374, + "End Line": 1380 }, { - "Function Name": "parseAsync", + "Function Name": "sendToClientRequest", "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 570 + "Start Line": 164, + "End Line": 164 }, { - "Function Name": "assignAttributeAccessor", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "sendToClientInternal", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 4793, - "End Line": 4802 + "Start Line": 206, + "End Line": 206 }, { - "Function Name": "add", + "Function Name": "sendToClientResponse", "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 588, - "End Line": 592 + "Start Line": 149, + "End Line": 149 }, { - "Function Name": "constructor", + "Function Name": "sendToClientNotification", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1598, - "End Line": 1603 + "Start Line": 180, + "End Line": 180 }, { - "Function Name": "createDracoPrimitive", + "Function Name": "sendToClientResponseError", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3736, - "End Line": 3746 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 671 - }, - { - "Function Name": "onLoad", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3331, - "End Line": 3338 - }, - { - "Function Name": "setDRACOLoader", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 348, - "End Line": 353 - }, - { - "Function Name": "setKTX2Loader", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 362, - "End Line": 367 - }, - { - "Function Name": "setMeshoptDecoder", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 376, - "End Line": 381 + "Start Line": 195, + "End Line": 195 }, { - "Function Name": "get", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "autofix", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 582, - "End Line": 586 + "Start Line": 297, + "End Line": 297 }, { - "Function Name": "remove", - "Structural Impact": 1.7, + "Function Name": "refreshBuildOnSave", + "Structural Impact": 2.0, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 856, - "End Line": 861 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 890, - "End Line": 895 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 966, - "End Line": 971 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1009 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1084, - "End Line": 1089 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1152, - "End Line": 1157 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1202, - "End Line": 1207 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1253, - "End Line": 1258 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1293, - "End Line": 1298 + "Start Line": 794, + "End Line": 798 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "createDocumentStoreConfig", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1349, - "End Line": 1354 + "Start Line": 1136, + "End Line": 1146 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "setTransport", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1395, - "End Line": 1400 + "Start Line": 1734, + "End Line": 1738 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "autofixWorkaround", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1451, - "End Line": 1456 + "Start Line": 280, + "End Line": 289 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "handleConfiguration", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1504, - "End Line": 1509 + "Start Line": 684, + "End Line": 684 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "init", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1551, - "End Line": 1556 + "Start Line": 766, + "End Line": 766 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "addWorkspace", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1684, - "End Line": 1689 + "Start Line": 857, + "End Line": 857 }, { - "Function Name": "setExtensions", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "fmtMessage", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2624, - "End Line": 2628 + "Start Line": 2027, + "End Line": 2029 }, { - "Function Name": "setPlugins", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveConfiguration", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2630, - "End Line": 2634 - }, - { - "Function Name": "removeAll", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 604 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 801, - "End Line": 805 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 807, - "End Line": 811 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1999, - "End Line": 2003 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2060, - "End Line": 2064 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3529, - "End Line": 3533 + "Start Line": 978, + "End Line": 978 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 614, - "Sequential Logic Declarations": 315, - "Function Parameters": 207, - "Function/Method Declarations": 129, - "Class/Entity Declarations": 26, - "Defensive Programming Constructs": 247, - "Type/Safety Bypasses": 3, + "Control Flow Branches": 566, + "Sequential Logic Declarations": 259, + "Function Parameters": 71, + "Function/Method Declarations": 71, + "Class/Entity Declarations": 9, + "Defensive Programming Constructs": 330, + "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 1186, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 67, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 104, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 56, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 415, + "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 86, - "Global State Dependencies": 5, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 41, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 3, + "Generic Type Abstractions": 8, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 3, + "Metaprogramming & Reflection": 10, + "Module Dependencies (Imports)": 28, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 11, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 49, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 122, + "Pointer Arithmetic & Addressing": 80, + "Manual Memory Allocation": 33, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 11, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 14, + "Structured Telemetry & Logging": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 187, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 285, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 418, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 190, + "Resource Deallocation & Cleanup": 50, + "Private / Encapsulated Scopes": 258, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2300, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1476, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 8, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -405615,15 +409832,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 546, - "Design Camel Case": 199, - "Design Snake Case": 323, - "Design Pascal Case": 8, - "Design Upper Case": 14, - "Design Short Vars": 51, - "Design Long Vars": 3, - "Duplicate Logic": 12, - "Orphaned Logic": 6, + "Core Var Decl": 250, + "Design Camel Case": 0, + "Design Snake Case": 223, + "Design Pascal Case": 23, + "Design Upper Case": 0, + "Design Short Vars": 13, + "Design Long Vars": 4, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -405631,7 +409848,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)": 8, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -405647,1878 +409864,2122 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 27, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 5, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "../utils/BufferGeometryUtils.js", - "../utils/SkeletonUtils.js", - "three", - "three/addons/loaders/GLTFLoader.js" + "Config.zig", + "DiagnosticsCollection.zig", + "DocumentStore.zig", + "Uri.zig", + "analyser/analyser.zig", + "analysis.zig", + "build_options", + "build_runner/shared.zig", + "builtin", + "configuration.zig", + "diff.zig", + "features/code_actions.zig", + "features/completions.zig", + "features/diagnostics.zig", + "features/document_symbol.zig", + "features/folding_range.zig", + "features/goto.zig", + "features/hover.zig", + "features/inlay_hints.zig", + "features/references.zig", + "features/selection_range.zig", + "features/semantic_tokens.zig", + "features/signature_help.zig", + "lsp", + "offsets.zig", + "std", + "tracy" ] }, - "javascript/threejs/Matrix4.js": { + "zig/zls/analysis.zig": { "1. Artifact Identity": { - "Filename": "Matrix4.js", - "Path": "javascript/threejs/Matrix4.js", - "Language": "Javascript", + "Filename": "analysis.zig", + "Path": "zig/zls/analysis.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8830.56, - "Y": -30.17, - "Z": -1632.92 + "X": 2417.0, + "Y": -190.97, + "Z": 8436.83 }, "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": 1315, - "Coding LOC": 597, - "Documentation LOC": 376, - "Structural Magnitude": 292.94, - "Control Flow Ratio": "44.0%", + "Total LOC": 7016, + "Coding LOC": 6099, + "Documentation LOC": 184, + "Structural Magnitude": 4134.98, + "Control Flow Ratio": "66.2%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.51 + "Raw Cognitive Density": 0.805 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.84%", - "Error & Exception Exposure": "61.0%", - "Tech Debt Exposure": "89.55%", - "Testing Exposure": "80.0%", - "API Exposure": "1.93%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "51.98%", - "Commented Logic Exposure": "5.06%", + "Cognitive Load Exposure": "45.39%", + "Error & Exception Exposure": "10.67%", + "Tech Debt Exposure": "8.72%", + "Testing Exposure": "2.51%", + "API Exposure": "1.68%", + "Concurrency Exposure": "12.2%", + "State Flux Exposure": "16.35%", + "Commented Logic Exposure": "5.29%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "29.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "makePerspective", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 8, - "Control Flow Ratio": "75.0%", - "Start Line": 1122, - "End Line": 1166 + "Function Name": "resolveTypeOfNodeUncached", + "Structural Impact": 799.4, + "Lines of Code (LOC)": 1092, + "Control Flow Branches": 429, + "Input Parameters": 2, + "Control Flow Ratio": "63.4%", + "Start Line": 1980, + "End Line": 3071 }, { - "Function Name": "makeOrthographic", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 8, - "Control Flow Ratio": "75.0%", - "Start Line": 1182, - "End Line": 1226 + "Function Name": "resolveExpressionTypeFromAncestors", + "Structural Impact": 311.9, + "Lines of Code (LOC)": 424, + "Control Flow Branches": 129, + "Input Parameters": 4, + "Control Flow Ratio": "62.0%", + "Start Line": 6445, + "End Line": 6868 }, { - "Function Name": "makeRotationFromEuler", - "Structural Impact": 23.0, - "Lines of Code (LOC)": 121, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "91.7%", - "Start Line": 338, - "End Line": 458 + "Function Name": "getFieldAccessType", + "Structural Impact": 216.5, + "Lines of Code (LOC)": 215, + "Control Flow Branches": 91, + "Input Parameters": 4, + "Control Flow Ratio": "65.0%", + "Start Line": 4997, + "End Line": 5211 }, { - "Function Name": "lookAt", - "Structural Impact": 12.3, + "Function Name": "resolveType", + "Structural Impact": 147.4, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 80, + "Input Parameters": 2, + "Control Flow Ratio": "77.7%", + "Start Line": 5901, + "End Line": 6042 + }, + { + "Function Name": "collectDeclarationsOfContainer", + "Structural Impact": 82.8, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 31, + "Input Parameters": 5, + "Control Flow Ratio": "91.2%", + "Start Line": 6046, + "End Line": 6133 + }, + { + "Function Name": "eql", + "Structural Impact": 75.5, + "Lines of Code (LOC)": 90, + "Control Flow Branches": 40, + "Input Parameters": 2, + "Control Flow Ratio": "53.3%", + "Start Line": 3487, + "End Line": 3576 + }, + { + "Function Name": "lookupSymbolFieldInit", + "Structural Impact": 68.7, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "66.7%", + "Start Line": 6380, + "End Line": 6430 + }, + { + "Function Name": "resolveLangrefType", + "Structural Impact": 60.3, + "Lines of Code (LOC)": 63, + "Control Flow Branches": 32, + "Input Parameters": 2, + "Control Flow Ratio": "68.1%", + "Start Line": 4873, + "End Line": 4935 + }, + { + "Function Name": "resolveBindingOfNodeUncached", + "Structural Impact": 58.1, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 30, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 3073, + "End Line": 3160 + }, + { + "Function Name": "resolveVarDeclAlias", + "Structural Impact": 56.1, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 29, + "Input Parameters": 2, + "Control Flow Ratio": "70.7%", + "Start Line": 667, + "End Line": 748 + }, + { + "Function Name": "resolveFunctionTypeFromCall", + "Structural Impact": 56.0, "Lines of Code (LOC)": 46, - "Control Flow Branches": 4, + "Control Flow Branches": 23, + "Input Parameters": 4, + "Control Flow Ratio": "85.2%", + "Start Line": 1825, + "End Line": 1870 + }, + { + "Function Name": "resolveArrayCat", + "Structural Impact": 49.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 23, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 483, - "End Line": 528 + "Control Flow Ratio": "82.1%", + "Start Line": 1394, + "End Line": 1417 }, { - "Function Name": "constructor", - "Structural Impact": 9.4, + "Function Name": "lookupSymbol", + "Structural Impact": 46.0, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 21, + "Input Parameters": 3, + "Control Flow Ratio": "70.0%", + "Start Line": 4514, + "End Line": 4552 + }, + { + "Function Name": "resolveCallsiteReferences", + "Structural Impact": 42.1, + "Lines of Code (LOC)": 80, + "Control Flow Branches": 21, + "Input Parameters": 2, + "Control Flow Ratio": "63.6%", + "Start Line": 1744, + "End Line": 1823 + }, + { + "Function Name": "getSymbolFieldAccessesArrayList", + "Structural Impact": 40.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 12, + "Input Parameters": 8, + "Control Flow Ratio": "92.3%", + "Start Line": 6922, + "End Line": 6947 + }, + { + "Function Name": "resolveReturnValueOfFuncNode", + "Structural Impact": 31.8, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 14, + "Input Parameters": 3, + "Control Flow Ratio": "58.3%", + "Start Line": 837, + "End Line": 872 + }, + { + "Function Name": "firstParamIs", + "Structural Impact": 30.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 13, + "Input Parameters": 3, + "Control Flow Ratio": "61.9%", + "Start Line": 448, + "End Line": 489 + }, + { + "Function Name": "resolveFieldAccessBinding", + "Structural Impact": 27.1, "Lines of Code (LOC)": 23, - "Control Flow Branches": 1, - "Input Parameters": 16, - "Control Flow Ratio": "100.0%", - "Start Line": 79, - "End Line": 101 + "Control Flow Branches": 12, + "Input Parameters": 3, + "Control Flow Ratio": "70.6%", + "Start Line": 756, + "End Line": 778 }, { - "Function Name": "decompose", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 2, + "Function Name": "getSymbolFieldAccessesHighlight", + "Structural Impact": 27.1, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 8, + "Input Parameters": 7, + "Control Flow Ratio": "66.7%", + "Start Line": 6949, + "End Line": 6980 + }, + { + "Function Name": "fromSlice", + "Structural Impact": 25.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "40.0%", - "Start Line": 1053, - "End Line": 1106 + "Control Flow Ratio": "84.6%", + "Start Line": 1039, + "End Line": 1069 }, { - "Function Name": "makeTranslation", - "Structural Impact": 7.5, + "Function Name": "createErrorUnion", + "Structural Impact": 25.4, "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 810, - "End Line": 838 + "Control Flow Ratio": "84.6%", + "Start Line": 3391, + "End Line": 3419 }, { - "Function Name": "setPosition", - "Structural Impact": 7.0, + "Function Name": "getDocCommentTokenIndex", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "76.5%", + "Start Line": 108, + "End Line": 127 + }, + { + "Function Name": "resolveUnionTag", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 939, + "End Line": 966 + }, + { + "Function Name": "createArray", + "Structural Impact": 23.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, + "Input Parameters": 4, + "Control Flow Ratio": "81.8%", + "Start Line": 3334, + "End Line": 3360 + }, + { + "Function Name": "instanceStdBuiltinType", + "Structural Impact": 23.6, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "63.2%", + "Start Line": 4939, + "End Line": 4960 + }, + { + "Function Name": "resolveStructInitType", + "Structural Impact": 23.1, "Lines of Code (LOC)": 21, - "Control Flow Branches": 2, + "Control Flow Branches": 10, "Input Parameters": 3, "Control Flow Ratio": "66.7%", - "Start Line": 683, - "End Line": 703 + "Start Line": 6885, + "End Line": 6905 }, { - "Function Name": "extractBasis", - "Structural Impact": 5.0, + "Function Name": "drain", + "Structural Impact": 22.9, "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 239, - "End Line": 257 + "Control Flow Ratio": "71.4%", + "Start Line": 352, + "End Line": 370 }, { - "Function Name": "equals", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1234, - "End Line": 1247 + "Function Name": "resolveArrayMult", + "Structural Impact": 22.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "76.9%", + "Start Line": 1381, + "End Line": 1392 }, { - "Function Name": "set", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 16, - "Control Flow Ratio": "0.0%", - "Start Line": 125, - "End Line": 136 + "Function Name": "resolveImportString", + "Structural Impact": 21.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "64.3%", + "Start Line": 4845, + "End Line": 4871 }, { - "Function Name": "extractRotation", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 1, + "Function Name": "createPointer", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "77.8%", + "Start Line": 3302, + "End Line": 3332 + }, + { + "Function Name": "isGeneric", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 12, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 289, - "End Line": 326 + "Control Flow Ratio": "50.0%", + "Start Line": 3578, + "End Line": 3632 }, { - "Function Name": "invert", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 712, - "End Line": 763 + "Function Name": "isConditional", + "Structural Impact": 20.2, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3977, + "End Line": 4013 }, { - "Function Name": "fromArray", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1256, - "End Line": 1266 + "Function Name": "typeDefinitionToken", + "Structural Impact": 20.2, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 4465, + "End Line": 4501 }, { - "Function Name": "compose", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 0, + "Function Name": "resolveCoercedIPValue", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1038 + "Control Flow Ratio": "44.4%", + "Start Line": 1428, + "End Line": 1448 }, { - "Function Name": "multiplyMatrices", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 0, + "Function Name": "resolveStringLiteral", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 600 + "Control Flow Ratio": "60.0%", + "Start Line": 1536, + "End Line": 1570 }, { - "Function Name": "makeShear", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 980, - "End Line": 993 + "Function Name": "createTuple", + "Structural Impact": 18.3, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 9, + "Input Parameters": 2, + "Control Flow Ratio": "69.2%", + "Start Line": 3362, + "End Line": 3380 }, { - "Function Name": "toArray", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, + "Function Name": "hashWithHasher", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1276, - "End Line": 1302 + "Control Flow Ratio": "100.0%", + "Start Line": 3421, + "End Line": 3485 }, { - "Function Name": "makeRotationAxis", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 944 + "Function Name": "pointerElementType", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "53.8%", + "Start Line": 4423, + "End Line": 4443 }, { - "Function Name": "makeScale", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "definitionToken", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 7, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 954, - "End Line": 967 + "Control Flow Ratio": "70.0%", + "Start Line": 5694, + "End Line": 5708 }, { - "Function Name": "makeBasis", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, + "Function Name": "stringLiteralContentLoc", + "Structural Impact": 16.7, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 5272, + "End Line": 5294 + }, + { + "Function Name": "resolveUnionTagAccess", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 278 + "Control Flow Ratio": "54.5%", + "Start Line": 968, + "End Line": 982 }, { - "Function Name": "setFromMatrix3", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 229 + "Function Name": "writeAll", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "87.5%", + "Start Line": 372, + "End Line": 385 }, { - "Function Name": "makeRotationX", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 847, - "End Line": 862 + "Function Name": "isInstanceCall", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "71.4%", + "Start Line": 418, + "End Line": 437 }, { - "Function Name": "makeRotationY", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, + "Function Name": "resolveErrorSetIPIndex", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "53.8%", + "Start Line": 1572, + "End Line": 1581 + }, + { + "Function Name": "isConst", + "Structural Impact": 13.7, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 871, - "End Line": 886 + "Control Flow Ratio": "46.7%", + "Start Line": 5763, + "End Line": 5810 }, { - "Function Name": "makeRotationZ", - "Structural Impact": 2.2, + "Function Name": "findReturnStatementInternal", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 804, + "End Line": 822 + }, + { + "Function Name": "pointerSize", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 4411, + "End Line": 4421 + }, + { + "Function Name": "isNamespace", + "Structural Impact": 10.7, "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 895, - "End Line": 910 + "Control Flow Ratio": "46.2%", + "Start Line": 4298, + "End Line": 4313 }, { - "Function Name": "copy", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Function Name": "next", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 175, - "End Line": 187 + "Control Flow Ratio": "50.0%", + "Start Line": 6165, + "End Line": 6191 }, { - "Function Name": "scale", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 771, - "End Line": 783 + "Function Name": "resolveBindingOfNodeInternal", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1960, + "End Line": 1978 }, { - "Function Name": "copyPosition", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 206 + "Function Name": "getSymbolEnumLiteral", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 6870, + "End Line": 6883 }, { - "Function Name": "multiplyScalar", - "Structural Impact": 2.0, + "Function Name": "resolveExpressionType", + "Structural Impact": 9.5, "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 608, - "End Line": 619 + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 6432, + "End Line": 6443 }, { - "Function Name": "determinant", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 628, - "End Line": 650 + "Function Name": "resolveInternPoolValue", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1450, + "End Line": 1460 }, { - "Function Name": "transpose", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 672 + "Function Name": "isStructType", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 4286, + "End Line": 4296 }, { - "Function Name": "identity", - "Structural Impact": 1.7, + "Function Name": "isErrorSetType", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 4343, + "End Line": 4352 + }, + { + "Function Name": "innermostScopeAtIndexWithTag", + "Structural Impact": 8.7, "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 156 + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 6221, + "End Line": 6234 }, { - "Function Name": "makeRotationFromQuaternion", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 472 + "Function Name": "getSymbolFieldAccesses", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "40.0%", + "Start Line": 6908, + "End Line": 6920 }, { - "Function Name": "multiply", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "resolveOptionalIPValue", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 1419, + "End Line": 1426 + }, + { + "Function Name": "isPublic", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 540 + "Control Flow Ratio": "57.1%", + "Start Line": 5845, + "End Line": 5869 }, { - "Function Name": "premultiply", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "isGenericFunc", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 548, - "End Line": 552 + "Control Flow Ratio": "57.1%", + "Start Line": 4381, + "End Line": 4393 }, { - "Function Name": "getMaxScaleOnAxis", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 800 + "Function Name": "createOptional", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 3382, + "End Line": 3389 }, { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 163, - "End Line": 167 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 40, - "Sequential Logic Declarations": 51, - "Function Parameters": 37, - "Function/Method Declarations": 37, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 19, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 86, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 40, - "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": 1, - "Module Dependencies (Imports)": 2, - "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": 10, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 98, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 582, - "Structural Space Indentations": 0, - "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": 1, - "Core Var Decl": 140, - "Design Camel Case": 12, - "Design Snake Case": 128, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 89, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 27, - "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": 1, - "Commented-Out Executable Logic": 1, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../constants.js", - "./Vector3.js" - ] - }, - "javascript/threejs/WebGLProgram.js": { - "1. Artifact Identity": { - "Filename": "WebGLProgram.js", - "Path": "javascript/threejs/WebGLProgram.js", - "Language": "Javascript", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" - }, - "2. Topological Coordinates": { - "X": 8380.39, - "Y": -88.2, - "Z": -1633.93 - }, - "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": 1029, - "Coding LOC": 621, - "Documentation LOC": 30, - "Structural Magnitude": 684.02, - "Control Flow Ratio": "77.6%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.852 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.09%", - "Error & Exception Exposure": "50.0%", - "Tech Debt Exposure": "22.59%", - "Testing Exposure": "80.0%", - "API Exposure": "0.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "50.39%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.87%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Function Name": "getContainerKind", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4269, + "End Line": 4280 + }, { - "Function Name": "WebGLProgram", - "Structural Impact": 455.6, - "Lines of Code (LOC)": 615, - "Control Flow Branches": 189, - "Input Parameters": 4, - "Control Flow Ratio": "93.6%", - "Start Line": 412, - "End Line": 1026 + "Function Name": "resolveFieldAccess", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 751, + "End Line": 754 }, { - "Function Name": "onFirstUse", - "Structural Impact": 24.5, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 13, + "Function Name": "resolveIntegerLiteral", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1462, + "End Line": 1465 + }, + { + "Function Name": "resolveDeclLiteralResultType", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "86.7%", - "Start Line": 856, - "End Line": 949 + "Control Flow Ratio": "60.0%", + "Start Line": 4361, + "End Line": 4371 }, { - "Function Name": "getShaderErrors", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 58, - "End Line": 82 + "Function Name": "isNoreturnType", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 4402, + "End Line": 4409 }, { - "Function Name": "generatePrecision", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 5, + "Function Name": "isMetaType", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 306, - "End Line": 343 + "Control Flow Ratio": "50.0%", + "Start Line": 4335, + "End Line": 4341 }, { - "Function Name": "fetchAttributeLocations", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, + "Function Name": "pop", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 178, - "End Line": 206 + "Control Flow Ratio": "100.0%", + "Start Line": 5333, + "End Line": 5340 }, { - "Function Name": "getEncodingComponents", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 4, - "Input Parameters": 1, + "Function Name": "createPointerType", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, "Control Flow Ratio": "50.0%", - "Start Line": 36, - "End Line": 56 + "Start Line": 3781, + "End Line": 3792 }, { - "Function Name": "includeReplacer", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, + "Function Name": "withoutIPIndex", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 253, - "End Line": 276 + "Control Flow Ratio": "66.7%", + "Start Line": 3878, + "End Line": 3883 }, { - "Function Name": "generateDefines", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 160, - "End Line": 176 + "Function Name": "compare", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 6175, + "End Line": 6180 }, { - "Function Name": "handleSource", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 18, + "Function Name": "getFunctionSignature", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 158, + "End Line": 162 + }, + { + "Function Name": "resolveInstanceOfNode", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 32 + "Start Line": 1936, + "End Line": 1939 }, { - "Function Name": "loopReplacer", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 15, + "Function Name": "resolveTypeOfNode", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1943, + "End Line": 1946 + }, + { + "Function Name": "resolveTypeOfNodeInternal", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1948, + "End Line": 1951 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 3846, + "End Line": 3850 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 4838, + "End Line": 4842 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 5658, + "End Line": 5662 + }, + { + "Function Name": "createArrayType", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 288, - "End Line": 302 + "Control Flow Ratio": "50.0%", + "Start Line": 3794, + "End Line": 3804 }, { - "Function Name": "generateVertexExtensions", + "Function Name": "next", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 4186, + "End Line": 4195 + }, + { + "Function Name": "loc", "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 5241, + "End Line": 5265 + }, + { + "Function Name": "allDigits", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1374, + "End Line": 1379 + }, + { + "Function Name": "createErrorUnionType", + "Structural Impact": 4.5, "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 3820, + "End Line": 3829 + }, + { + "Function Name": "ipIndex", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "66.7%", - "Start Line": 149, - "End Line": 158 + "Start Line": 3871, + "End Line": 3876 }, { - "Function Name": "generateEnvMapTypeDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isRoot", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 362, - "End Line": 368 + "Start Line": 4258, + "End Line": 4263 }, { - "Function Name": "generateEnvMapModeDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isTaggedUnion", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4327, + "End Line": 4332 + }, + { + "Function Name": "isEnumLiteral", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 374, - "End Line": 380 + "Start Line": 4354, + "End Line": 4359 }, { - "Function Name": "generateEnvMapBlendingDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isTypeFunc", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4373, + "End Line": 4378 + }, + { + "Function Name": "isFunc", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4395, + "End Line": 4400 + }, + { + "Function Name": "fromIP", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 388, - "End Line": 394 + "Start Line": 3885, + "End Line": 3892 }, { - "Function Name": "getToneMappingFunction", + "Function Name": "eql", "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 4975, + "End Line": 4979 + }, + { + "Function Name": "hash", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 110, - "End Line": 123 + "Control Flow Ratio": "33.3%", + "Start Line": 3639, + "End Line": 3647 }, { - "Function Name": "generateCubeUVSize", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, + "Function Name": "isMetaType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 396, - "End Line": 410 + "Start Line": 646, + "End Line": 651 }, { - "Function Name": "generateShadowMapTypeDefine", + "Function Name": "createTupleType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3806, + "End Line": 3811 + }, + { + "Function Name": "createOptionalType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3813, + "End Line": 3818 + }, + { + "Function Name": "isTypeFunction", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 654, + "End Line": 657 + }, + { + "Function Name": "eql", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 4991, + "End Line": 4994 + }, + { + "Function Name": "isCaptureByRef", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 5812, + "End Line": 5829 + }, + { + "Function Name": "writeString", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 4574, + "End Line": 4576 + }, + { + "Function Name": "init", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 64 + }, + { + "Function Name": "toNode", "Structural Impact": 3.1, "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 4827, + "End Line": 4831 + }, + { + "Function Name": "peek", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 350, - "End Line": 354 + "Start Line": 5325, + "End Line": 5330 }, { - "Function Name": "replaceLightNums", + "Function Name": "collectAllSymbolsAtSourceIndex", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 6136, + "End Line": 6144 + }, + { + "Function Name": "eql", "Structural Impact": 2.6, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 231 + "Start Line": 3926, + "End Line": 3932 }, { - "Function Name": "getUniforms", + "Function Name": "getPositionContext", "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 955, - "End Line": 966 + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 5355, + "End Line": 5361 }, { - "Function Name": "getAttributes", + "Function Name": "eql", "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 972, - "End Line": 983 + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 7007, + "End Line": 7013 }, { - "Function Name": "getTexelEncodingFunction", + "Function Name": "renderBuiltinFunctionSignature", "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 98 + "Start Line": 392, + "End Line": 397 }, { - "Function Name": "isReady", + "Function Name": "getVariableSignature", "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 990, - "End Line": 1000 + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 491, + "End Line": 496 }, { - "Function Name": "replaceClippingPlaneNums", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "resolveGenericTypeInternal", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 233, - "End Line": 239 + "Start Line": 786, + "End Line": 791 }, { - "Function Name": "getLuminanceFunction", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Function Name": "resolveGeneric", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 147 + "Start Line": 3655, + "End Line": 3660 }, { - "Function Name": "filterEmptyLine", - "Structural Impact": 1.7, + "Function Name": "eql", + "Structural Impact": 2.5, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 212 + "Start Line": 3864, + "End Line": 3868 }, { - "Function Name": "resolveIncludes", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "rawStringify", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 245, - "End Line": 249 + "Start Line": 4583, + "End Line": 4588 }, { - "Function Name": "unrollLoops", - "Structural Impact": 1.7, + "Function Name": "eql", + "Structural Impact": 2.5, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 286 + "Start Line": 5672, + "End Line": 5676 }, { - "Function Name": "destroy", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "lookupSymbolGlobal", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1011 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 229, - "Sequential Logic Declarations": 66, - "Function Parameters": 29, - "Function/Method Declarations": 28, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 38, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 70, - "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": 4, - "Global State Dependencies": 3, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 6, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 8, - "Authorship Metadata": 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": 1, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 5, - "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": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 65, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 204, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 549, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 18, - "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": 1, - "Core Var Decl": 98, - "Design Camel Case": 64, - "Design Snake Case": 33, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 9, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "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)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../../constants.js", - "../../math/ColorManagement.js", - "../../math/Matrix3.js", - "../../math/Vector3.js", - "../../utils.js", - "../shaders/ShaderChunk.js", - "./WebGLShader.js", - "./WebGLUniforms.js" - ] - }, - "javascript/threejs/WebGLRenderer.js": { - "1. Artifact Identity": { - "Filename": "WebGLRenderer.js", - "Path": "javascript/threejs/WebGLRenderer.js", - "Language": "Javascript", - "Architect": "the renderer", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'math/Vector4.js' mimics 'math/Vector3.js'", - "Folder Dominant Lang": "javascript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" - }, - "2. Topological Coordinates": { - "X": 7991.98, - "Y": -96.13, - "Z": -1037.69 - }, - "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": 3639, - "Coding LOC": 1628, - "Documentation LOC": 734, - "Structural Magnitude": 2408.76, - "Control Flow Ratio": "77.2%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.099 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.74%", - "Error & Exception Exposure": "43.07%", - "Tech Debt Exposure": "52.57%", - "Testing Exposure": "80.0%", - "API Exposure": "1.69%", - "Concurrency Exposure": "21.86%", - "State Flux Exposure": "97.79%", - "Commented Logic Exposure": "4.97%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 6312, + "End Line": 6317 + }, { - "Function Name": "constructor", - "Structural Impact": 642.0, - "Lines of Code (LOC)": 2545, - "Control Flow Branches": 363, - "Input Parameters": 1, - "Control Flow Ratio": "80.5%", - "Start Line": 70, - "End Line": 2614 + "Function Name": "of", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 6987, + "End Line": 6993 }, { - "Function Name": "setProgram", - "Structural Impact": 374.1, - "Lines of Code (LOC)": 428, - "Control Flow Branches": 143, - "Input Parameters": 5, - "Control Flow Ratio": "94.7%", - "Start Line": 2295, - "End Line": 2722 + "Function Name": "collectDocComments", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 129 }, { - "Function Name": "copyTextureToTexture", - "Structural Impact": 141.4, - "Lines of Code (LOC)": 235, - "Control Flow Branches": 48, - "Input Parameters": 6, - "Control Flow Ratio": "90.6%", - "Start Line": 3205, - "End Line": 3439 + "Function Name": "iterateLabels", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 6202, + "End Line": 6202 }, { - "Function Name": "renderBufferDirect", - "Structural Impact": 108.5, - "Lines of Code (LOC)": 159, - "Control Flow Branches": 37, - "Input Parameters": 6, - "Control Flow Ratio": "78.7%", - "Start Line": 1175, - "End Line": 1333 + "Function Name": "rawStringifyParameter", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 186 }, { - "Function Name": "render", - "Structural Impact": 94.2, - "Lines of Code (LOC)": 221, - "Control Flow Branches": 47, - "Input Parameters": 2, - "Control Flow Ratio": "92.2%", - "Start Line": 1600, - "End Line": 1820 + "Function Name": "rawStringifyFunction", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 252 }, { - "Function Name": "projectObject", - "Structural Impact": 81.7, - "Lines of Code (LOC)": 113, - "Control Flow Branches": 33, - "Input Parameters": 4, - "Control Flow Ratio": "91.7%", - "Start Line": 1822, - "End Line": 1934 + "Function Name": "next", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1878, + "End Line": 1882 }, { - "Function Name": "setRenderTarget", - "Structural Impact": 80.4, - "Lines of Code (LOC)": 168, - "Control Flow Branches": 35, + "Function Name": "eql", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "87.5%", - "Start Line": 2823, - "End Line": 2990 + "Control Flow Ratio": "0.0%", + "Start Line": 3649, + "End Line": 3652 }, { - "Function Name": "getProgram", - "Structural Impact": 51.8, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 22, + "Function Name": "lookupLabel", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 2142, - "End Line": 2257 + "Control Flow Ratio": "0.0%", + "Start Line": 6290, + "End Line": 6294 }, { - "Function Name": "readRenderTargetPixels", - "Structural Impact": 51.2, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 15, - "Input Parameters": 8, - "Control Flow Ratio": "78.9%", - "Start Line": 3004, - "End Line": 3068 + "Function Name": "lookupSymbolContainer", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 6355, + "End Line": 6359 }, { - "Function Name": "readRenderTargetPixelsAsync", - "Structural Impact": 48.9, - "Lines of Code (LOC)": 78, - "Control Flow Branches": 14, - "Input Parameters": 8, - "Control Flow Ratio": "82.4%", - "Start Line": 3086, - "End Line": 3163 + "Function Name": "init", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 350 }, { - "Function Name": "renderTransmissionPass", - "Structural Impact": 44.2, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 16, - "Input Parameters": 4, - "Control Flow Ratio": "84.2%", - "Start Line": 1960, - "End Line": 2082 + "Function Name": "hash", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 4967, + "End Line": 4973 }, { - "Function Name": "compile", - "Structural Impact": 38.6, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 16, + "Function Name": "iterateEnclosingScopes", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6194, + "End Line": 6200 + }, + { + "Function Name": "hash", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6998, + "End Line": 7005 + }, + { + "Function Name": "getDocCommentsBeforeToken", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "84.2%", - "Start Line": 1371, - "End Line": 1462 + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 }, { - "Function Name": "clear", - "Structural Impact": 23.8, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 9, + "Function Name": "getDocComments", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 944, - "End Line": 1018 + "Control Flow Ratio": "0.0%", + "Start Line": 83, + "End Line": 83 }, { - "Function Name": "renderObject", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "100.0%", - "Start Line": 2111, - "End Line": 2140 + "Function Name": "trimCommonIndentation", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 583, + "End Line": 583 }, { - "Function Name": "renderScene", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 1936, - "End Line": 1958 + "Function Name": "resolveGenericType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 780, + "End Line": 780 }, { - "Function Name": "renderObjects", - "Structural Impact": 13.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, + "Function Name": "resolveOrelseType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 2084, - "End Line": 2109 + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 897 }, { - "Function Name": "compileAsync", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 4, + "Function Name": "resolveAddressOf", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1478, - "End Line": 1536 + "Control Flow Ratio": "0.0%", + "Start Line": 909, + "End Line": 909 }, { - "Function Name": "initTexture", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 3464, - "End Line": 3486 + "Function Name": "resolveUnwrapErrorUnionType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 917, + "End Line": 917 }, { - "Function Name": "setSize", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, + "Function Name": "resolveBracketAccessType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 650, - "End Line": 680 + "Control Flow Ratio": "0.0%", + "Start Line": 1076, + "End Line": 1076 }, { - "Function Name": "setEffects", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 726, - "End Line": 752 + "Function Name": "resolveBracketAccess", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1133, + "End Line": 1133 }, { - "Function Name": "prepareMaterial", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 4, + "Function Name": "resolvePropertyType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 1337, - "End Line": 1357 + "Control Flow Ratio": "0.0%", + "Start Line": 1246, + "End Line": 1246 }, { - "Function Name": "materialNeedsLights", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 2742, - "End Line": 2748 + "Function Name": "coerceIP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1583, + "End Line": 1583 }, { - "Function Name": "setViewport", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 787, - "End Line": 801 + "Function Name": "resolvePeerTypes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1593, + "End Line": 1593 }, { - "Function Name": "setScissor", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 824, - "End Line": 838 + "Function Name": "resolvePeerTypesIP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1608, + "End Line": 1608 }, { - "Function Name": "setRenderTargetTextures", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 2, + "Function Name": "resolvePeerErrorSets", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 2784, - "End Line": 2802 + "Control Flow Ratio": "0.0%", + "Start Line": 1614, + "End Line": 1614 }, { - "Function Name": "copyFramebufferToTexture", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, + "Function Name": "resolvePeerTypesInternal", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 3172, - "End Line": 3187 + "Control Flow Ratio": "0.0%", + "Start Line": 1627, + "End Line": 1627 }, { - "Function Name": "releaseMaterialProgramReferences", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1151, - "End Line": 1171 + "Function Name": "resolveBindingOfNode", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1953, + "End Line": 1958 }, { - "Function Name": "initGLContext", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 423, - "End Line": 538 + "Function Name": "of", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3166, + "End Line": 3171 }, { - "Function Name": "checkMaterialsReady", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1487, - "End Line": 1516 + "Function Name": "hash", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3920, + "End Line": 3924 }, { - "Function Name": "getUniformList", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2259, - "End Line": 2270 + "Function Name": "getAllTypesWithHandlesArraySet", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4016, + "End Line": 4016 }, { - "Function Name": "setPixelRatio", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 619, - "End Line": 627 + "Function Name": "stringifyTypeOf", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4554, + "End Line": 4554 }, { - "Function Name": "initRenderTarget", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 3448, - "End Line": 3456 + "Function Name": "stringifyTypeVal", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4564, + "End Line": 4564 }, { - "Function Name": "setAnimationLoop", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1572, - "End Line": 1579 + "Function Name": "push", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 5321, + "End Line": 5321 }, { - "Function Name": "onAnimationFrame", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1542, - "End Line": 1546 + "Function Name": "tokenLocAppend", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 5343, + "End Line": 5348 }, { - "Function Name": "updateCommonMaterialProperties", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, + "Function Name": "hash", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2272, - "End Line": 2293 + "Start Line": 5665, + "End Line": 5670 }, { - "Function Name": "setDrawingBufferSize", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, + "Function Name": "innermostScopeAtIndex", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6214, + "End Line": 6219 + }, + { + "Function Name": "innermostContainer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 719 + "Start Line": 6236, + "End Line": 6236 }, { - "Function Name": "markUniformsLightsNeedsUpdate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, + "Function Name": "findReturnStatement", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2726, - "End Line": 2740 + "Start Line": 824, + "End Line": 827 }, { - "Function Name": "forceContextLoss", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 586, - "End Line": 591 + "Function Name": "hashWithHasher", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3841, + "End Line": 3844 }, { - "Function Name": "forceContextRestore", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 596, - "End Line": 601 + "Function Name": "hash", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3859, + "End Line": 3862 }, { - "Function Name": "getTargetPixelRatio", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 349, - "End Line": 353 + "Function Name": "init", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 4164, + "End Line": 4167 }, { - "Function Name": "setRenderTargetFramebuffer", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "isContainerKind", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2804, - "End Line": 2810 + "Start Line": 4282, + "End Line": 4284 }, { - "Function Name": "getContext", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "hashWithHasher", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 363 + "Start Line": 4833, + "End Line": 4836 }, { - "Function Name": "onContextLost", + "Function Name": "of", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1092, - "End Line": 1100 + "Start Line": 4987, + "End Line": 4989 }, { - "Function Name": "onMaterialDispose", + "Function Name": "deinit", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1130, - "End Line": 1138 + "Start Line": 5317, + "End Line": 5319 }, { - "Function Name": "outputColorSpace", + "Function Name": "hashWithHasher", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3539, - "End Line": 3547 + "Start Line": 5653, + "End Line": 5656 }, { - "Function Name": "deallocateMaterial", + "Function Name": "eql", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 5685, + "End Line": 5687 + }, + { + "Function Name": "allocType", "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1142, - "End Line": 1148 + "Start Line": 71, + "End Line": 71 }, { - "Function Name": "getSize", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "stringifyParameter", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 635, - "End Line": 639 + "Start Line": 173, + "End Line": 173 }, { - "Function Name": "getDrawingBufferSize", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "stringifyFunction", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 688, - "End Line": 692 + "Start Line": 239, + "End Line": 239 }, { - "Function Name": "getCurrentViewport", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "hasSelfParam", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 764 + "Start Line": 439, + "End Line": 439 }, { - "Function Name": "getViewport", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveReturnType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 772, - "End Line": 776 + "Start Line": 831, + "End Line": 831 }, { - "Function Name": "getScissor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveOptionalUnwrap", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 813 + "Start Line": 875, + "End Line": 875 }, { - "Function Name": "setScissorTest", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveFuncProtoOfCallable", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 858, - "End Line": 862 + "Start Line": 984, + "End Line": 984 }, { - "Function Name": "setOpaqueSort", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveDerefType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 870, - "End Line": 874 + "Start Line": 992, + "End Line": 992 }, { - "Function Name": "setTransparentSort", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveDerefBinding", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 886 + "Start Line": 997, + "End Line": 997 }, { - "Function Name": "getClearColor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "bracketAccessTypeFromIPIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 896, - "End Line": 900 + "Start Line": 1082, + "End Line": 1082 }, { - "Function Name": "setNodesHandler", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "resolvePrimitive", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1054, - "End Line": 1059 + "Start Line": 1512, + "End Line": 1512 }, { - "Function Name": "onContextCreationError", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "fromEither", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1124, - "End Line": 1128 + "Start Line": 3899, + "End Line": 3899 }, { - "Function Name": "dispose", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 24, + "Function Name": "getAllTypesWithHandles", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1065, - "End Line": 1088 + "Start Line": 3971, + "End Line": 3971 }, { - "Function Name": "onContextRestore", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 21, + "Function Name": "instanceTypeVal", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1122 + "Start Line": 4198, + "End Line": 4198 }, { - "Function Name": "resetState", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "instanceUnchecked", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3493, - "End Line": 3502 + "Start Line": 4203, + "End Line": 4203 }, { - "Function Name": "getContext", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "typeOf", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 566, - "End Line": 570 + "Start Line": 4226, + "End Line": 4226 }, { - "Function Name": "getContextAttributes", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "arrayInfo", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 581 + "Start Line": 4445, + "End Line": 4445 }, { - "Function Name": "getPixelRatio", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "docComments", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 608, - "End Line": 612 + "Start Line": 4503, + "End Line": 4503 }, { - "Function Name": "getScissorTest", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "initCapacity", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 845, - "End Line": 849 + "Start Line": 5312, + "End Line": 5312 }, { - "Function Name": "setClearColor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "docComments", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 908, - "End Line": 912 + "Start Line": 5831, + "End Line": 5831 }, { - "Function Name": "getClearAlpha", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "root", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 919, - "End Line": 923 + "Start Line": 3263, + "End Line": 3268 }, { - "Function Name": "setClearAlpha", - "Structural Impact": 1.2, + "Function Name": "hash64", + "Structural Impact": 1.7, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 930, - "End Line": 934 + "Start Line": 3835, + "End Line": 3839 }, { - "Function Name": "clearColor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1023, - "End Line": 1027 + "Start Line": 66, + "End Line": 69 }, { - "Function Name": "clearDepth", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "fmtEscapedSnippet", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1032, - "End Line": 1036 + "Start Line": 388, + "End Line": 390 }, { - "Function Name": "clearStencil", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "hash32", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1041, - "End Line": 1045 + "Start Line": 3831, + "End Line": 3833 }, { - "Function Name": "onXRSessionStart", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "ArrayMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1548, - "End Line": 1552 + "Start Line": 3854, + "End Line": 3856 }, { - "Function Name": "onXRSessionEnd", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isGenericType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1554, - "End Line": 1558 + "Start Line": 4265, + "End Line": 4267 }, { - "Function Name": "getActiveCubeFace", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isEnumType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2755, - "End Line": 2759 + "Start Line": 4315, + "End Line": 4317 }, { - "Function Name": "getActiveMipmapLevel", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isUnionType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2766, - "End Line": 2770 + "Start Line": 4319, + "End Line": 4321 }, { - "Function Name": "getRenderTarget", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isOpaqueType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2778, - "End Line": 2782 + "Start Line": 4323, + "End Line": 4325 }, { - "Function Name": "coordinateSystem", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isErrSetDef", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3521, - "End Line": 3525 + "Start Line": 5307, + "End Line": 5309 }, { - "Function Name": "outputColorSpace", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "nameToken", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3533, - "End Line": 3537 + "Start Line": 5690, + "End Line": 5692 + }, + { + "Function Name": "typeDeclarationNode", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 5710, + "End Line": 5710 + }, + { + "Function Name": "isStatic", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 5871, + "End Line": 5871 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 515, - "Sequential Logic Declarations": 152, - "Function Parameters": 83, - "Function/Method Declarations": 77, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 204, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 2284, + "Sequential Logic Declarations": 1166, + "Function Parameters": 197, + "Function/Method Declarations": 197, + "Class/Entity Declarations": 37, + "Defensive Programming Constructs": 1439, + "Type/Safety Bypasses": 55, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 338, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 78, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 15, - "UI / View Layer Components": 3, - "Closures and Anonymous Functions": 54, - "Global State Dependencies": 0, + "Exposed API / Public Exports": 168, + "State Mutations / Variable Reassignments": 567, + "Commented-out Code (Dead Logic)": 9, + "Structured Documentation Blocks": 111, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 2, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 39, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 37, - "Authorship Metadata": 2, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Generic Type Abstractions": 114, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 10, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 15, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 15, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, - "Dependency Injection Constructs": 2, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 49, + "Pointer Arithmetic & Addressing": 269, + "Manual Memory Allocation": 20, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 9, - "Thread Sleeps & Blocking Waits": 2, - "Bitwise Operations": 0, + "Explicit Type Casts": 5, + "Fatal Aborts & Exceptions": 951, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 974, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 172, - "Resource Deallocation & Cleanup": 20, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 6, + "Immutable Data Declarations": 900, + "Resource Deallocation & Cleanup": 27, + "Private / Encapsulated Scopes": 990, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1587, - "Structural Space Indentations": 0, - "Hardware Bridge": 26, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5819, + "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 2, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -407527,15 +411988,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 391, - "Design Camel Case": 195, - "Design Snake Case": 141, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 21, - "Design Long Vars": 6, + "Core Var Decl": 1104, + "Design Camel Case": 0, + "Design Snake Case": 984, + "Design Pascal Case": 96, + "Design Upper Case": 0, + "Design Short Vars": 71, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 27, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -407543,12 +412004,12 @@ "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)": 32, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -407559,79 +412020,30 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 37, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 4, + "Total Downstream (Absolute Dependency Blast Radius)": 3 }, "9. Extracted Dependencies": [ - "../constants.js", - "../math/Color.js", - "../math/ColorManagement.js", - "../math/Frustum.js", - "../math/Matrix4.js", - "../math/Vector3.js", - "../math/Vector4.js", - "../utils.js", - "./WebGLRenderTarget.js", - "./shaders/DFGLUTData.js", - "./webgl/WebGLAnimation.js", - "./webgl/WebGLAttributes.js", - "./webgl/WebGLBackground.js", - "./webgl/WebGLBindingStates.js", - "./webgl/WebGLBufferRenderer.js", - "./webgl/WebGLCapabilities.js", - "./webgl/WebGLClipping.js", - "./webgl/WebGLEnvironments.js", - "./webgl/WebGLExtensions.js", - "./webgl/WebGLGeometries.js", - "./webgl/WebGLIndexedBufferRenderer.js", - "./webgl/WebGLInfo.js", - "./webgl/WebGLMaterials.js", - "./webgl/WebGLMorphtargets.js", - "./webgl/WebGLObjects.js", - "./webgl/WebGLOutput.js", - "./webgl/WebGLPrograms.js", - "./webgl/WebGLProperties.js", - "./webgl/WebGLRenderLists.js", - "./webgl/WebGLRenderStates.js", - "./webgl/WebGLShadowMap.js", - "./webgl/WebGLState.js", - "./webgl/WebGLTextures.js", - "./webgl/WebGLUniforms.js", - "./webgl/WebGLUniformsGroups.js", - "./webgl/WebGLUtils.js", - "./webxr/WebXRManager.js" + "DocumentScope.zig", + "DocumentStore.zig", + "Uri.zig", + "analyser/InternPool.zig", + "analyser/error_msg.zig", + "ast.zig", + "builtin", + "features/references.zig", + "offsets.zig", + "std", + "tracy", + "version_data" ] - } - } - }, - "zig/zls": { - "Directory Group Magnitude": 7673.62, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "24.58%", - "Error & Exception Exposure": "22.16%", - "Tech Debt Exposure": "10.53%", - "Testing Exposure": "28.32%", - "API Exposure": "1.81%", - "Concurrency Exposure": "11.37%", - "State Flux Exposure": "9.18%", - "Commented Logic Exposure": "2.66%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.54%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "zig/zls/DocumentScope.zig": { + }, + "zig/zls/ast.zig": { "1. Artifact Identity": { - "Filename": "DocumentScope.zig", - "Path": "zig/zls/DocumentScope.zig", + "Filename": "ast.zig", + "Path": "zig/zls/ast.zig", "Language": "Zig", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -407641,9 +412053,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 2886.6, - "Y": -131.83, - "Z": 8302.31 + "X": 2440.2, + "Y": -143.55, + "Z": 8037.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -407652,535 +412064,645 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1346, - "Coding LOC": 1130, - "Documentation LOC": 46, - "Structural Magnitude": 249.9, - "Control Flow Ratio": "76.9%", + "Total LOC": 1847, + "Coding LOC": 1631, + "Documentation LOC": 73, + "Structural Magnitude": 764.82, + "Control Flow Ratio": "62.5%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.407 + "Raw Cognitive Density": 0.466 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.44%", - "Error & Exception Exposure": "30.86%", - "Tech Debt Exposure": "16.9%", + "Cognitive Load Exposure": "19.24%", + "Error & Exception Exposure": "47.02%", + "Tech Debt Exposure": "8.14%", "Testing Exposure": "80.0%", - "API Exposure": "2.91%", - "Concurrency Exposure": "13.45%", + "API Exposure": "2.17%", + "Concurrency Exposure": "14.1%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "5.71%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.16%", + "Documentation Exposure": "27.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "nameToken", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 51, + "Function Name": "lastToken", + "Structural Impact": 164.3, + "Lines of Code (LOC)": 410, + "Control Flow Branches": 82, + "Input Parameters": 2, + "Control Flow Ratio": "81.2%", + "Start Line": 422, + "End Line": 831 + }, + { + "Function Name": "indexOfBreakTarget", + "Structural Impact": 57.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 27, + "Input Parameters": 3, + "Control Flow Ratio": "79.4%", + "Start Line": 1812, + "End Line": 1846 + }, + { + "Function Name": "next", + "Structural Impact": 39.0, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 19, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1416, + "End Line": 1502 + }, + { + "Function Name": "fullPtrTypeComponents", + "Structural Impact": 37.1, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 19, + "Input Parameters": 2, + "Control Flow Ratio": "82.6%", + "Start Line": 11, + "End Line": 59 + }, + { + "Function Name": "next", + "Structural Impact": 31.6, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 18, + "Input Parameters": 1, + "Control Flow Ratio": "64.3%", + "Start Line": 966, + "End Line": 1059 + }, + { + "Function Name": "init", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 334, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "13.3%", + "Start Line": 1081, + "End Line": 1414 + }, + { + "Function Name": "fullAsmComponents", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 119, + "End Line": 140 + }, + { + "Function Name": "fullWhileComponents", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 223, + "End Line": 267 + }, + { + "Function Name": "paramFirstToken", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "83.3%", + "Start Line": 865, + "End Line": 870 + }, + { + "Function Name": "fullIfComponents", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 173, - "End Line": 223 + "Control Flow Ratio": "66.7%", + "Start Line": 166, + "End Line": 198 }, { - "Function Name": "getScopeDeclarationsConst", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 21, + "Function Name": "fullForComponents", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 28, "Control Flow Branches": 4, "Input Parameters": 2, "Control Flow Ratio": "57.1%", - "Start Line": 1303, - "End Line": 1323 + "Start Line": 269, + "End Line": 296 }, { - "Function Name": "getScopeChildScopesConst", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 21, + "Function Name": "initArray", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 22, "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1504, + "End Line": 1525 + }, + { + "Function Name": "blockLabel", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1325, - "End Line": 1345 + "Control Flow Ratio": "42.9%", + "Start Line": 929, + "End Line": 936 }, { - "Function Name": "get", + "Function Name": "isContainer", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 897, + "End Line": 916 + }, + { + "Function Name": "forFull", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 343, + "End Line": 354 + }, + { + "Function Name": "isTaggedUnion", "Structural Impact": 5.7, "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "28.6%", - "Start Line": 110, - "End Line": 119 + "Control Flow Ratio": "33.3%", + "Start Line": 886, + "End Line": 895 }, { - "Function Name": "getScopeDeclaration", + "Function Name": "isBuiltinCall", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 918, + "End Line": 927 + }, + { + "Function Name": "fullPtrType", "Structural Impact": 5.6, "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1293, - "End Line": 1301 + "Start Line": 356, + "End Line": 364 }, { - "Function Name": "getScopeAstNode", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, + "Function Name": "fullWhile", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1279, - "End Line": 1291 + "Control Flow Ratio": "66.7%", + "Start Line": 374, + "End Line": 381 }, { - "Function Name": "isContainer", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 236, - "End Line": 241 + "Function Name": "fullIf", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 366, + "End Line": 372 }, { - "Function Name": "unwrap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 162, - "End Line": 165 + "Function Name": "fullFor", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 383, + "End Line": 389 }, { - "Function Name": "unwrap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "fullAsm", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 391, + "End Line": 397 + }, + { + "Function Name": "findMatchingRBrace", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 399, + "End Line": 401 + }, + { + "Function Name": "errorSetFieldCount", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 303, - "End Line": 306 + "Start Line": 938, + "End Line": 946 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "identifierTokenFromIdentifierNode", + "Structural Impact": 3.7, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 47 + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 854, + "End Line": 858 }, { - "Function Name": "pushDeclaration", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 337 + "Function Name": "hasInferredError", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 860, + "End Line": 863 }, { - "Function Name": "walkNodeEnsureScope", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 540, - "End Line": 545 + "Function Name": "paramLastToken", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 872, + "End Line": 874 }, { - "Function Name": "walkBlockNodeKeepOpen", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 902, - "End Line": 907 + "Function Name": "isKeyword", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 403, + "End Line": 412 }, { - "Function Name": "startScope", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, + "Function Name": "ptrTypeSimple", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 426, - "End Line": 426 + "Start Line": 61, + "End Line": 74 }, { - "Function Name": "pushChildScope", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeSentinel", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 461 + "Start Line": 76, + "End Line": 88 }, { - "Function Name": "walkNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeAligned", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 568, - "End Line": 572 + "Start Line": 90, + "End Line": 102 }, { - "Function Name": "walkContainerDecl", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeBitRange", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 764, - "End Line": 768 + "Start Line": 104, + "End Line": 117 }, { - "Function Name": "walkErrorSetNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "asmFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 830, - "End Line": 834 + "Start Line": 153, + "End Line": 164 }, { - "Function Name": "walkFuncNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ifFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 852, - "End Line": 856 + "Start Line": 200, + "End Line": 210 }, { - "Function Name": "walkBlockNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "whileCont", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 893, - "End Line": 897 + "Start Line": 309, + "End Line": 319 }, { - "Function Name": "walkIfNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "whileFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 959, - "End Line": 963 + "Start Line": 321, + "End Line": 331 }, { - "Function Name": "walkCatchNode", + "Function Name": "asmSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 998, - "End Line": 1002 + "Start Line": 142, + "End Line": 151 }, { - "Function Name": "walkWhileNode", + "Function Name": "ifSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1024, - "End Line": 1028 + "Start Line": 212, + "End Line": 221 }, { - "Function Name": "walkForNode", + "Function Name": "whileSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1106 + "Start Line": 298, + "End Line": 307 }, { - "Function Name": "walkSwitchNode", + "Function Name": "forSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1155, - "End Line": 1159 + "Start Line": 333, + "End Line": 341 }, { - "Function Name": "walkErrdeferNode", + "Function Name": "paramLoc", "Structural Impact": 2.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1212, - "End Line": 1216 + "Start Line": 876, + "End Line": 880 }, { - "Function Name": "walkOtherNode", + "Function Name": "init", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1254, - "End Line": 1258 + "Start Line": 955, + "End Line": 963 }, { - "Function Name": "hash", + "Function Name": "paramSlice", "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 41 + "Start Line": 882, + "End Line": 884 }, { - "Function Name": "getCase", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "lessThan", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 147 + "Start Line": 1627, + "End Line": 1629 }, { - "Function Name": "deinit", + "Function Name": "init", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 523, - "End Line": 528 + "Start Line": 1531, + "End Line": 1531 }, { - "Function Name": "walkUnaryOpNode", + "Function Name": "next", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1232, - "End Line": 1232 + "Start Line": 1550, + "End Line": 1550 }, { - "Function Name": "walkBinOpNode", + "Function Name": "nextIgnoreClose", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1236, - "End Line": 1236 + "Start Line": 1567, + "End Line": 1567 }, { - "Function Name": "walkOptNodeAndOptNode", + "Function Name": "nodesOverlappingIndex", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1242, - "End Line": 1242 + "Start Line": 1594, + "End Line": 1594 }, { - "Function Name": "walkNodeAndOptNode", + "Function Name": "nodesOverlappingIndexIncludingParseErrors", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1248, - "End Line": 1248 + "Start Line": 1622, + "End Line": 1622 }, { - "Function Name": "getScopeTag", + "Function Name": "nodesAtLoc", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1265, - "End Line": 1270 + "Start Line": 1653, + "End Line": 1653 }, { - "Function Name": "getScopeParent", + "Function Name": "append", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1272, - "End Line": 1277 + "Start Line": 1661, + "End Line": 1661 }, { - "Function Name": "getVarDeclNode", + "Function Name": "deinit", "Structural Impact": 1.9, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "getFullVarDecl", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 134 + "Start Line": 1540, + "End Line": 1543 }, { - "Function Name": "eql", + "Function Name": "smallestEnclosingSubrange", "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 170 + "Start Line": 1707, + "End Line": 1710 }, { - "Function Name": "init", + "Function Name": "testDeclNameAndToken", "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 488, - "End Line": 488 - }, - { - "Function Name": "locToSmallLoc", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 535 + "Start Line": 833, + "End Line": 833 }, { - "Function Name": "toOptional", + "Function Name": "skip", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 155 + "Start Line": 1576, + "End Line": 1578 }, { - "Function Name": "toOptional", + "Function Name": "parentNode", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 293, - "End Line": 295 - }, - { - "Function Name": "deinit", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 319, - "End Line": 322 - }, - { - "Function Name": "finalize", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 384, - "End Line": 384 + "Start Line": 1581, + "End Line": 1583 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 223, - "Sequential Logic Declarations": 67, - "Function Parameters": 45, - "Function/Method Declarations": 45, - "Class/Entity Declarations": 19, - "Defensive Programming Constructs": 165, - "Type/Safety Bypasses": 45, + "Control Flow Branches": 295, + "Sequential Logic Declarations": 177, + "Function Parameters": 56, + "Function/Method Declarations": 56, + "Class/Entity Declarations": 7, + "Defensive Programming Constructs": 120, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 48, - "State Mutations / Variable Reassignments": 46, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 38, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 2, + "Exposed API / Public Exports": 52, + "State Mutations / Variable Reassignments": 110, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 34, + "Unit Test Assertions": 9, + "Asynchronous/Concurrent Execution": 4, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 12, + "Global State Dependencies": 8, "Decorators and Annotations": 0, "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 2, "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, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 53, - "Manual Memory Allocation": 1, + "Pointer Arithmetic & Addressing": 64, + "Manual Memory Allocation": 6, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 25, - "Fatal Aborts & Exceptions": 47, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 132, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 129, + "Bitwise Operations": 113, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 160, - "Resource Deallocation & Cleanup": 10, - "Private / Encapsulated Scopes": 130, + "Immutable Data Declarations": 246, + "Resource Deallocation & Cleanup": 7, + "Private / Encapsulated Scopes": 201, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 7, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1034, + "Structural Space Indentations": 1528, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -408197,14 +412719,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 139, - "Design Camel Case": 1, - "Design Snake Case": 109, - "Design Pascal Case": 26, + "Core Var Decl": 228, + "Design Camel Case": 0, + "Design Snake Case": 215, + "Design Pascal Case": 13, "Design Upper Case": 0, - "Design Short Vars": 3, - "Design Long Vars": 0, - "Duplicate Logic": 4, + "Design Short Vars": 28, + "Design Long Vars": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -408213,7 +412735,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 7, + "Dynamic Code Execution (Eval/Exec)": 22, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -408229,22 +412751,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, "9. Extracted Dependencies": [ - "ast.zig", "offsets.zig", - "std", - "tracy" + "std" ] }, - "zig/zls/DocumentStore.zig": { + "zig/zls/print_ast.zig": { "1. Artifact Identity": { - "Filename": "DocumentStore.zig", - "Path": "zig/zls/DocumentStore.zig", + "Filename": "print_ast.zig", + "Path": "zig/zls/print_ast.zig", "Language": "Zig", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -408254,9 +412774,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 2689.14, - "Y": -190.63, - "Z": 8988.89 + "X": 1817.13, + "Y": -155.75, + "Z": 8649.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -408265,681 +412785,291 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2059, - "Coding LOC": 1604, - "Documentation LOC": 133, - "Structural Magnitude": 761.58, - "Control Flow Ratio": "60.9%", - "Popularity Rank": 2, + "Total LOC": 950, + "Coding LOC": 897, + "Documentation LOC": 4, + "Structural Magnitude": 525.44, + "Control Flow Ratio": "81.4%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.764 + "Raw Cognitive Density": 0.494 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.68%", - "Error & Exception Exposure": "18.85%", - "Tech Debt Exposure": "19.03%", - "Testing Exposure": "2.42%", - "API Exposure": "1.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "20.14%", - "Commented Logic Exposure": "4.94%", + "Cognitive Load Exposure": "26.13%", + "Error & Exception Exposure": "12.8%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.46%", + "API Exposure": "0.75%", + "Concurrency Exposure": "16.07%", + "State Flux Exposure": "8.49%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.05%", + "Documentation Exposure": "21.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "createAndStoreDocument", - "Structural Impact": 59.0, - "Lines of Code (LOC)": 107, - "Control Flow Branches": 23, - "Input Parameters": 4, - "Control Flow Ratio": "62.2%", - "Start Line": 1567, - "End Line": 1673 - }, - { - "Function Name": "invalidateBuildFileWorker", - "Structural Impact": 42.8, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 21, + "Function Name": "renderNode", + "Structural Impact": 256.0, + "Lines of Code (LOC)": 444, + "Control Flow Branches": 134, "Input Parameters": 2, - "Control Flow Ratio": "65.6%", - "Start Line": 1192, - "End Line": 1285 + "Control Flow Ratio": "87.6%", + "Start Line": 79, + "End Line": 522 }, { - "Function Name": "loadBuildConfiguration", - "Structural Impact": 40.5, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 17, - "Input Parameters": 3, - "Control Flow Ratio": "56.7%", - "Start Line": 1364, - "End Line": 1452 + "Function Name": "renderOptField", + "Structural Impact": 25.6, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 10, + "Input Parameters": 4, + "Control Flow Ratio": "90.9%", + "Start Line": 561, + "End Line": 580 }, { - "Function Name": "publishCimportDiagnostics", - "Structural Impact": 39.3, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 20, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1897, - "End Line": 1955 + "Function Name": "renderOptTokenField", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 590, + "End Line": 608 }, { - "Function Name": "loadDirectoryRecursive", - "Structural Impact": 32.4, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 974, - "End Line": 1033 + "Function Name": "renderNodeSliceField", + "Structural Impact": 18.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "88.9%", + "Start Line": 610, + "End Line": 627 }, { - "Function Name": "readFile", - "Structural Impact": 22.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "68.8%", - "Start Line": 740, - "End Line": 773 + "Function Name": "renderToFile", + "Structural Impact": 18.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "58.3%", + "Start Line": 14, + "End Line": 29 }, { - "Function Name": "notifyBuildStart", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 43, + "Function Name": "main", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 34, "Control Flow Branches": 9, "Input Parameters": 1, "Control Flow Ratio": "56.2%", - "Start Line": 1112, - "End Line": 1154 + "Start Line": 845, + "End Line": 878 }, { - "Function Name": "notifyBuildEnd", - "Structural Impact": 15.5, - "Lines of Code (LOC)": 33, + "Function Name": "moveSourceCursor", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 25, "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 1158, - "End Line": 1190 - }, - { - "Function Name": "Lazy", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 595, - "End Line": 643 - }, - { - "Function Name": "deinit", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "87.5%", - "Start Line": 697, - "End Line": 723 + "Control Flow Ratio": "77.8%", + "Start Line": 629, + "End Line": 653 }, { - "Function Name": "buildDotZigExists", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 6, + "Function Name": "renderTrailing", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 5, "Input Parameters": 2, - "Control Flow Ratio": "46.2%", - "Start Line": 1455, - "End Line": 1466 - }, - { - "Function Name": "loadBuildAssociatedConfiguration", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "44.4%", - "Start Line": 1302, - "End Line": 1325 + "Control Flow Ratio": "83.3%", + "Start Line": 529, + "End Line": 539 }, { - "Function Name": "invalidateBuildFile", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 12, + "Function Name": "renderOptItem", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 5, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 959, - "End Line": 970 + "Control Flow Ratio": "100.0%", + "Start Line": 545, + "End Line": 550 }, { - "Function Name": "closeLspSyncedDocument", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 23, + "Function Name": "renderOptNode", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 867, - "End Line": 889 - }, - { - "Function Name": "deinit", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 562, - "End Line": 582 - }, - { - "Function Name": "next", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 676, - "End Line": 688 + "Control Flow Ratio": "100.0%", + "Start Line": 71, + "End Line": 77 }, { - "Function Name": "sendMessageToClient", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, + "Function Name": "renderCustomField", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1096, - "End Line": 1110 - }, - { - "Function Name": "getHandle", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "37.5%", - "Start Line": 728, - "End Line": 735 - }, - { - "Function Name": "deinit", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 154, - "End Line": 159 - }, - { - "Function Name": "getOrLoadHandleVoid", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 988, - "End Line": 998 + "Start Line": 552, + "End Line": 555 }, { - "Function Name": "getOrNull", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 628, - "End Line": 637 + "Function Name": "nodeTagName", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 188, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 656, + "End Line": 843 }, { - "Function Name": "loadTrigramStore", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1066, - "End Line": 1076 + "Function Name": "renderToWriter", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 31, + "End Line": 42 }, { - "Function Name": "deinit", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, + "Function Name": "renderRoot", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 1962, - "End Line": 1971 - }, - { - "Function Name": "tryLockConfig", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 66, + "End Line": 69 }, { - "Function Name": "await", - "Structural Impact": 5.4, + "Function Name": "newline", + "Structural Impact": 4.4, "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 589, - "End Line": 592 - }, - { - "Function Name": "deinit", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 607, - "End Line": 611 - }, - { - "Function Name": "deinit", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 221, - "End Line": 233 - }, - { - "Function Name": "deinit", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 325, - "End Line": 333 + "Start Line": 524, + "End Line": 527 }, { - "Function Name": "collectImports", - "Structural Impact": 2.8, + "Function Name": "renderTokenField", + "Structural Impact": 4.3, "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 488 - }, - { - "Function Name": "refresh", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 413 - }, - { - "Function Name": "collectIncludeDirs", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1690, - "End Line": 1695 - }, - { - "Function Name": "collectCMacros", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1757, - "End Line": 1762 - }, - { - "Function Name": "uriFromImportStr", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1978, - "End Line": 1983 - }, - { - "Function Name": "isAssociatedWith", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 99 - }, - { - "Function Name": "parseTree", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 463, - "End Line": 463 - }, - { - "Function Name": "getBuildFile", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 800, - "End Line": 805 - }, - { - "Function Name": "openLspSyncedDocument", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 840, - "End Line": 840 - }, - { - "Function Name": "refreshLspSyncedDocument", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "refreshDocumentFromFileSystem", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 922, - "End Line": 922 + "Control Flow Ratio": "100.0%", + "Start Line": 582, + "End Line": 588 }, { - "Function Name": "resolveCImport", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Function Name": "renderField", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1790, - "End Line": 1790 + "Control Flow Ratio": "100.0%", + "Start Line": 557, + "End Line": 559 }, { - "Function Name": "unlockConfig", - "Structural Impact": 1.9, + "Function Name": "format", + "Structural Impact": 3.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 88 + "Control Flow Ratio": "100.0%", + "Start Line": 52, + "End Line": 54 }, { - "Function Name": "deinit", - "Structural Impact": 1.9, + "Function Name": "renderItem", + "Structural Impact": 3.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 659 + "Control Flow Ratio": "100.0%", + "Start Line": 541, + "End Line": 543 }, { - "Function Name": "deinit", + "Function Name": "fmt", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 666, - "End Line": 668 - }, - { - "Function Name": "loadTrigramStores", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1035, - "End Line": 1038 - }, - { - "Function Name": "getAssociatedBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 241 - }, - { - "Function Name": "getAssociatedCompilationUnits", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 337, - "End Line": 337 - }, - { - "Function Name": "get", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 613, - "End Line": 613 - }, - { - "Function Name": "create", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 646, - "End Line": 646 - }, - { - "Function Name": "create", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "getOrLoadHandle", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 779, - "End Line": 779 - }, - { - "Function Name": "getOrLoadBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 810, - "End Line": 810 - }, - { - "Function Name": "prepareBuildRunnerArgs", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1327, - "End Line": 1327 - }, - { - "Function Name": "collectPotentialBuildFiles", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1473, - "End Line": 1473 - }, - { - "Function Name": "createBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1522, - "End Line": 1522 - }, - { - "Function Name": "getCached", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 639, - "End Line": 641 - }, - { - "Function Name": "isBuildFile", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1287, - "End Line": 1289 - }, - { - "Function Name": "isBuiltinFile", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1291, - "End Line": 1293 - }, - { - "Function Name": "isInStd", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1295, - "End Line": 1298 - }, - { - "Function Name": "getDocumentScope", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 187 + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 486, - "Sequential Logic Declarations": 312, - "Function Parameters": 59, - "Function/Method Declarations": 59, - "Class/Entity Declarations": 22, - "Defensive Programming Constructs": 323, - "Type/Safety Bypasses": 37, + "Control Flow Branches": 215, + "Sequential Logic Declarations": 49, + "Function Parameters": 21, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 193, + "Type/Safety Bypasses": 15, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 56, - "State Mutations / Variable Reassignments": 158, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 101, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 29, + "Exposed API / Public Exports": 11, + "State Mutations / Variable Reassignments": 48, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 4, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 32, + "Global State Dependencies": 6, "Decorators and Annotations": 0, - "Generic Type Abstractions": 4, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 16, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 12, + "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": 112, - "Manual Memory Allocation": 9, + "Pointer Arithmetic & Addressing": 22, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, - "Fatal Aborts & Exceptions": 151, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 28, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 264, - "Thread Synchronization Locks": 33, - "Immutable Data Declarations": 234, - "Resource Deallocation & Cleanup": 109, - "Private / Encapsulated Scopes": 256, + "Bitwise Operations": 46, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 95, + "Resource Deallocation & Cleanup": 6, + "Private / Encapsulated Scopes": 95, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1480, + "Structural Space Indentations": 874, "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": 0, "Cloud LLM API Integrations": 0, @@ -408950,14 +413080,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 247, - "Design Camel Case": 2, - "Design Snake Case": 196, - "Design Pascal Case": 43, + "Core Var Decl": 81, + "Design Camel Case": 1, + "Design Snake Case": 72, + "Design Pascal Case": 8, "Design Upper Case": 0, - "Design Short Vars": 13, - "Design Long Vars": 6, - "Duplicate Logic": 2, + "Design Short Vars": 2, + "Design Long Vars": 0, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -408966,7 +413096,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 15, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -408982,840 +413112,143 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 4, - "Total Downstream (Absolute Dependency Blast Radius)": 3 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "BuildAssociatedConfig.zig", - "DiagnosticsCollection.zig", - "DocumentScope.zig", - "TrigramStore.zig", - "Uri.zig", - "analysis.zig", - "build_runner/shared.zig", - "builtin", - "lsp", - "offsets.zig", "std", - "tracy", - "translate_c.zig" + "testing.zig" ] - }, - "zig/zls/Server.zig": { + } + } + }, + "cpp/NVDA": { + "Directory Group Magnitude": 7599.44, + "File Count": 12, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "66.7%", + "Static: Literature & Documentation": "33.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "32.3%", + "Error & Exception Exposure": "45.9%", + "Tech Debt Exposure": "32.23%", + "Testing Exposure": "40.42%", + "API Exposure": "2.45%", + "Concurrency Exposure": "3.35%", + "State Flux Exposure": "55.39%", + "Commented Logic Exposure": "0.81%", + "Specification Exposure": "66.67%", + "Instability Exposure": "33.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "10.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cpp/NVDA/CODE_OF_CONDUCT.md": { "1. Artifact Identity": { - "Filename": "Server.zig", - "Path": "zig/zls/Server.zig", - "Language": "Zig", + "Filename": "CODE_OF_CONDUCT.md", + "Path": "cpp/NVDA/CODE_OF_CONDUCT.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2124.91, - "Y": -185.87, - "Z": 8991.71 + "X": 4629.3, + "Y": -1.05, + "Z": 5094.36 }, "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": 2030, - "Coding LOC": 1670, - "Documentation LOC": 108, - "Structural Magnitude": 1197.9, - "Control Flow Ratio": "68.6%", + "Total LOC": 83, + "Coding LOC": 0, + "Documentation LOC": 58, + "Structural Magnitude": 1.66, + "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.495 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.63%", - "Error & Exception Exposure": "12.77%", - "Tech Debt Exposure": "10.38%", - "Testing Exposure": "2.56%", - "API Exposure": "0.58%", - "Concurrency Exposure": "12.42%", - "State Flux Exposure": "10.12%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.17%", - "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": "initializeHandler", - "Structural Impact": 190.2, - "Lines of Code (LOC)": 244, - "Control Flow Branches": 88, - "Input Parameters": 3, - "Control Flow Ratio": "95.7%", - "Start Line": 340, - "End Line": 583 - }, - { - "Function Name": "sendRequestSync", - "Structural Impact": 59.9, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 25, - "Input Parameters": 4, - "Control Flow Ratio": "86.2%", - "Start Line": 1794, - "End Line": 1829 - }, - { - "Function Name": "handleResponse", - "Structural Impact": 38.6, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 20, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 1974, - "End Line": 2017 - }, - { - "Function Name": "validateMessage", - "Structural Impact": 35.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 18, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 1929, - "End Line": 1972 - }, - { - "Function Name": "codeActionHandler", - "Structural Impact": 34.1, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 15, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1520, - "End Line": 1562 - }, - { - "Function Name": "initializedHandler", - "Structural Impact": 30.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 13, - "Input Parameters": 3, - "Control Flow Ratio": "81.2%", - "Start Line": 585, - "End Line": 629 - }, - { - "Function Name": "sendNotificationSync", - "Structural Impact": 27.9, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 4, - "Control Flow Ratio": "78.6%", - "Start Line": 1831, - "End Line": 1852 - }, - { - "Function Name": "saveDocumentHandler", - "Structural Impact": 27.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 12, - "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 1190, - "End Line": 1223 - }, - { - "Function Name": "didChangeConfigurationHandler", - "Structural Impact": 25.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "78.6%", - "Start Line": 939, - "End Line": 976 - }, - { - "Function Name": "processMessage", - "Structural Impact": 25.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "73.3%", - "Start Line": 1864, - "End Line": 1885 - }, - { - "Function Name": "processMessageReportError", - "Structural Impact": 24.1, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1887, - "End Line": 1927 - }, - { - "Function Name": "signatureHelpHandler", - "Structural Impact": 23.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "52.6%", - "Start Line": 1341, - "End Line": 1372 - }, - { - "Function Name": "didChangeWatchedFilesHandler", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 898, - "End Line": 919 - }, - { - "Function Name": "didChangeWorkspaceFoldersHandler", - "Structural Impact": 20.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "69.2%", - "Start Line": 921, - "End Line": 937 - }, - { - "Function Name": "inlayHintHandler", - "Structural Impact": 19.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "53.3%", - "Start Line": 1494, - "End Line": 1518 - }, - { - "Function Name": "changeDocumentHandler", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "61.5%", - "Start Line": 1166, - "End Line": 1188 - }, - { - "Function Name": "willSaveWaitUntilHandler", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1241, - "End Line": 1261 - }, - { - "Function Name": "formattingHandler", - "Structural Impact": 18.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 1445, - "End Line": 1460 - }, - { - "Function Name": "showMessage", - "Structural Impact": 17.8, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 226, - "End Line": 267 - }, - { - "Function Name": "semanticTokensRangeHandler", - "Structural Impact": 17.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1292, - "End Line": 1321 - }, - { - "Function Name": "semanticTokensFullHandler", - "Structural Impact": 17.4, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1263, - "End Line": 1290 - }, - { - "Function Name": "hoverHandler", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1409, - "End Line": 1431 - }, - { - "Function Name": "completionHandler", - "Structural Impact": 16.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1323, - "End Line": 1339 - }, - { - "Function Name": "closeDocumentHandler", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 1225, - "End Line": 1239 - }, - { - "Function Name": "sendMessageSync", - "Structural Impact": 16.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1854, - "End Line": 1862 - }, - { - "Function Name": "documentSymbolsHandler", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "54.5%", - "Start Line": 1433, - "End Line": 1443 - }, - { - "Function Name": "loop", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "53.3%", - "Start Line": 1754, - "End Line": 1782 - }, - { - "Function Name": "openDocumentHandler", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 1148, - "End Line": 1164 - }, - { - "Function Name": "prepareRenameHandler", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1467, - "End Line": 1482 - }, - { - "Function Name": "foldingRangeHandler", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1564, - "End Line": 1572 - }, - { - "Function Name": "selectionRangeHandler", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1574, - "End Line": 1582 - }, - { - "Function Name": "removeWorkspace", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 885, - "End Line": 896 - }, - { - "Function Name": "formatMessage", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 2019, - "End Line": 2025 - }, - { - "Function Name": "renameHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1462, - "End Line": 1465 - }, - { - "Function Name": "referencesHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1484, - "End Line": 1487 - }, - { - "Function Name": "documentHighlightHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1489, - "End Line": 1492 - }, - { - "Function Name": "isBlockingMessage", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1630, - "End Line": 1675 - }, - { - "Function Name": "generateDiagnostics", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 327, - "End Line": 338 - }, - { - "Function Name": "sendManualWatchUpdate", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 784, - "End Line": 792 - }, - { - "Function Name": "create", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1687, - "End Line": 1719 - }, - { - "Function Name": "registerCapability", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 644, - "End Line": 662 - }, - { - "Function Name": "requestConfiguration", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 665, - "End Line": 681 - }, - { - "Function Name": "exitHandler", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 636, - "End Line": 642 - }, - { - "Function Name": "sendJsonMessageSync", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1784, - "End Line": 1792 - }, - { - "Function Name": "do", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 330, - "End Line": 335 - }, - { - "Function Name": "deinit", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 777, - "End Line": 782 - }, - { - "Function Name": "destroy", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1721, - "End Line": 1732 - }, - { - "Function Name": "keepRunning", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1740, - "End Line": 1745 - }, - { - "Function Name": "gotoTypeDefinitionHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1382, - "End Line": 1389 - }, - { - "Function Name": "gotoImplementationHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1391, - "End Line": 1398 - }, - { - "Function Name": "gotoDeclarationHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1400, - "End Line": 1407 - }, - { - "Function Name": "shutdownHandler", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 631, - "End Line": 634 - }, - { - "Function Name": "workspaceSymbolHandler", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1584, - "End Line": 1586 - }, - { - "Function Name": "deinit", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 92, - "End Line": 95 - }, - { - "Function Name": "initAnalyser", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 269, - "End Line": 277 - }, - { - "Function Name": "gotoDefinitionHandler", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1374, - "End Line": 1380 - }, - { - "Function Name": "sendToClientRequest", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 164 - }, - { - "Function Name": "sendToClientInternal", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 206, - "End Line": 206 - }, - { - "Function Name": "sendToClientResponse", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "sendToClientNotification", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 180, - "End Line": 180 - }, - { - "Function Name": "sendToClientResponseError", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 195, - "End Line": 195 - }, - { - "Function Name": "autofix", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 297 - }, - { - "Function Name": "refreshBuildOnSave", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 794, - "End Line": 798 - }, - { - "Function Name": "createDocumentStoreConfig", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1136, - "End Line": 1146 - }, - { - "Function Name": "setTransport", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1734, - "End Line": 1738 - }, - { - "Function Name": "autofixWorkaround", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 280, - "End Line": 289 - }, - { - "Function Name": "handleConfiguration", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 684, - "End Line": 684 - }, - { - "Function Name": "init", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 766, - "End Line": 766 - }, - { - "Function Name": "addWorkspace", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "fmtMessage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2027, - "End Line": 2029 - }, - { - "Function Name": "resolveConfiguration", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 978, - "End Line": 978 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 566, - "Sequential Logic Declarations": 259, - "Function Parameters": 71, - "Function/Method Declarations": 71, - "Class/Entity Declarations": 9, - "Defensive Programming Constructs": 330, - "Type/Safety Bypasses": 8, + "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": 20, - "State Mutations / Variable Reassignments": 104, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 56, + "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": 41, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 8, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 10, - "Module Dependencies (Imports)": 28, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 11, + "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": 80, - "Manual Memory Allocation": 33, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 187, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 285, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 190, - "Resource Deallocation & Cleanup": 50, - "Private / Encapsulated Scopes": 258, + "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": 1476, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -409832,23 +413265,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 250, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 223, - "Design Pascal Case": 23, + "Design Snake Case": 0, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 13, - "Design Long Vars": 4, + "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": 11, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 8, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -409864,2114 +413297,2066 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 27, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 5, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, + "9. Extracted Dependencies": [] + }, + "cpp/NVDA/readme.md": { + "1. Artifact Identity": { + "Filename": "readme.md", + "Path": "cpp/NVDA/readme.md", + "Language": "Markdown", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" + }, + "2. Topological Coordinates": { + "X": 4556.45, + "Y": -83.52, + "Z": 6056.13 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 40, + "Coding LOC": 0, + "Documentation LOC": 27, + "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.0 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 5, + "Hyperlinked Literature References": 16, + "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)": 7, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, "9. Extracted Dependencies": [ - "Config.zig", - "DiagnosticsCollection.zig", - "DocumentStore.zig", - "Uri.zig", - "analyser/analyser.zig", - "analysis.zig", - "build_options", - "build_runner/shared.zig", - "builtin", - "configuration.zig", - "diff.zig", - "features/code_actions.zig", - "features/completions.zig", - "features/diagnostics.zig", - "features/document_symbol.zig", - "features/folding_range.zig", - "features/goto.zig", - "features/hover.zig", - "features/inlay_hints.zig", - "features/references.zig", - "features/selection_range.zig", - "features/semantic_tokens.zig", - "features/signature_help.zig", - "lsp", - "offsets.zig", - "std", - "tracy" + "./.github/CONTRIBUTING.md", + "./copying.txt", + "./projectDocs/community/expertsList.md", + "./projectDocs/community/readme.md", + "./projectDocs/issues/readme.md", + "./projectDocs/product_vision.md", + "CODE_OF_CONDUCT.md" ] }, - "zig/zls/analysis.zig": { + "cpp/NVDA/contributors.txt": { "1. Artifact Identity": { - "Filename": "analysis.zig", - "Path": "zig/zls/analysis.zig", - "Language": "Zig", + "Filename": "contributors.txt", + "Path": "cpp/NVDA/contributors.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2416.99, - "Y": -190.97, - "Z": 8436.79 + "X": 3801.87, + "Y": -53.3, + "Z": 5662.11 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 243, + "Coding LOC": 0, + "Documentation LOC": 241, + "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.0 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 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": [] + }, + "cpp/NVDA/copying.txt": { + "1. Artifact Identity": { + "Filename": "copying.txt", + "Path": "cpp/NVDA/copying.txt", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" + }, + "2. Topological Coordinates": { + "X": 4927.66, + "Y": -49.26, + "Z": 5699.68 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 1034, + "Coding LOC": 0, + "Documentation LOC": 849, + "Structural Magnitude": 20.68, + "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 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 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": [] + }, + "cpp/NVDA/__init__.py": { + "1. Artifact Identity": { + "Filename": "__init__.py", + "Path": "cpp/NVDA/__init__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Parent Entity": "textInfos.TextInfo, Window, EditableTextBase, UIA", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 4420.2, + "Y": -37.12, + "Z": 5172.67 }, "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": 7016, - "Coding LOC": 6099, - "Documentation LOC": 184, - "Structural Magnitude": 4159.98, - "Control Flow Ratio": "66.2%", - "Popularity Rank": 2, + "Total LOC": 2794, + "Coding LOC": 2236, + "Documentation LOC": 316, + "Structural Magnitude": 1967.82, + "Control Flow Ratio": "56.6%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.805 + "Raw Cognitive Density": 0.762 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.39%", - "Error & Exception Exposure": "10.67%", - "Tech Debt Exposure": "8.72%", - "Testing Exposure": "2.51%", - "API Exposure": "1.94%", - "Concurrency Exposure": "12.2%", - "State Flux Exposure": "16.35%", - "Commented Logic Exposure": "5.29%", + "Cognitive Load Exposure": "43.67%", + "Error & Exception Exposure": "54.34%", + "Tech Debt Exposure": "97.75%", + "Testing Exposure": "80.0%", + "API Exposure": "1.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "95.91%", + "Commented Logic Exposure": "4.89%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.68%", + "Documentation Exposure": "18.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "resolveTypeOfNodeUncached", - "Structural Impact": 799.4, - "Lines of Code (LOC)": 1092, - "Control Flow Branches": 429, - "Input Parameters": 2, - "Control Flow Ratio": "63.4%", - "Start Line": 1980, - "End Line": 3071 - }, - { - "Function Name": "resolveExpressionTypeFromAncestors", - "Structural Impact": 311.9, - "Lines of Code (LOC)": 424, - "Control Flow Branches": 129, - "Input Parameters": 4, - "Control Flow Ratio": "62.0%", - "Start Line": 6445, - "End Line": 6868 + "Function Name": "_getTextWithFieldsForUIARange", + "Structural Impact": 297.5, + "Lines of Code (LOC)": 310, + "Control Flow Branches": 93, + "Input Parameters": 8, + "Control Flow Ratio": "86.1%", + "Start Line": 720, + "End Line": 1029 }, { - "Function Name": "getFieldAccessType", - "Structural Impact": 216.5, - "Lines of Code (LOC)": 215, + "Function Name": "findOverlayClasses", + "Structural Impact": 173.0, + "Lines of Code (LOC)": 273, "Control Flow Branches": 91, - "Input Parameters": 4, - "Control Flow Ratio": "65.0%", - "Start Line": 4997, - "End Line": 5211 - }, - { - "Function Name": "resolveType", - "Structural Impact": 147.4, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 80, - "Input Parameters": 2, - "Control Flow Ratio": "77.7%", - "Start Line": 5901, - "End Line": 6042 - }, - { - "Function Name": "collectDeclarationsOfContainer", - "Structural Impact": 82.8, - "Lines of Code (LOC)": 88, - "Control Flow Branches": 31, - "Input Parameters": 5, - "Control Flow Ratio": "91.2%", - "Start Line": 6046, - "End Line": 6133 - }, - { - "Function Name": "eql", - "Structural Impact": 75.5, - "Lines of Code (LOC)": 90, - "Control Flow Branches": 40, - "Input Parameters": 2, - "Control Flow Ratio": "53.3%", - "Start Line": 3487, - "End Line": 3576 - }, - { - "Function Name": "lookupSymbolFieldInit", - "Structural Impact": 68.7, - "Lines of Code (LOC)": 51, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "66.7%", - "Start Line": 6380, - "End Line": 6430 - }, - { - "Function Name": "resolveLangrefType", - "Structural Impact": 60.3, - "Lines of Code (LOC)": 63, - "Control Flow Branches": 32, "Input Parameters": 2, - "Control Flow Ratio": "68.1%", - "Start Line": 4873, - "End Line": 4935 + "Control Flow Ratio": "71.1%", + "Start Line": 1194, + "End Line": 1466 }, { - "Function Name": "resolveBindingOfNodeUncached", - "Structural Impact": 58.1, - "Lines of Code (LOC)": 88, + "Function Name": "_getFormatFieldAtRange", + "Structural Impact": 74.0, + "Lines of Code (LOC)": 94, "Control Flow Branches": 30, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 3073, - "End Line": 3160 - }, - { - "Function Name": "resolveVarDeclAlias", - "Structural Impact": 56.1, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 29, - "Input Parameters": 2, - "Control Flow Ratio": "70.7%", - "Start Line": 667, - "End Line": 748 - }, - { - "Function Name": "resolveFunctionTypeFromCall", - "Structural Impact": 56.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 23, "Input Parameters": 4, - "Control Flow Ratio": "85.2%", - "Start Line": 1825, - "End Line": 1870 + "Control Flow Ratio": "88.2%", + "Start Line": 351, + "End Line": 444 }, { - "Function Name": "resolveArrayCat", - "Structural Impact": 49.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 23, - "Input Parameters": 3, - "Control Flow Ratio": "82.1%", - "Start Line": 1394, - "End Line": 1417 + "Function Name": "_get_states", + "Structural Impact": 58.7, + "Lines of Code (LOC)": 100, + "Control Flow Branches": 37, + "Input Parameters": 1, + "Control Flow Ratio": "94.9%", + "Start Line": 1907, + "End Line": 2006 }, { - "Function Name": "lookupSymbol", - "Structural Impact": 46.0, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 21, - "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 4514, - "End Line": 4552 + "Function Name": "_getTextWithFields_text", + "Structural Impact": 54.5, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 22, + "Input Parameters": 4, + "Control Flow Ratio": "91.7%", + "Start Line": 654, + "End Line": 715 }, { - "Function Name": "resolveCallsiteReferences", - "Structural Impact": 42.1, - "Lines of Code (LOC)": 80, + "Function Name": "__init__", + "Structural Impact": 52.2, + "Lines of Code (LOC)": 60, "Control Flow Branches": 21, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1744, - "End Line": 1823 - }, - { - "Function Name": "getSymbolFieldAccessesArrayList", - "Structural Impact": 40.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 12, - "Input Parameters": 8, - "Control Flow Ratio": "92.3%", - "Start Line": 6922, - "End Line": 6947 + "Input Parameters": 4, + "Control Flow Ratio": "95.5%", + "Start Line": 468, + "End Line": 527 }, { - "Function Name": "resolveReturnValueOfFuncNode", - "Structural Impact": 31.8, + "Function Name": "_getFormatFieldAnnotationTypes", + "Structural Impact": 39.8, "Lines of Code (LOC)": 36, - "Control Flow Branches": 14, - "Input Parameters": 3, - "Control Flow Ratio": "58.3%", - "Start Line": 837, - "End Line": 872 + "Control Flow Branches": 16, + "Input Parameters": 4, + "Control Flow Ratio": "94.1%", + "Start Line": 305, + "End Line": 340 }, { - "Function Name": "firstParamIs", - "Structural Impact": 30.1, - "Lines of Code (LOC)": 42, + "Function Name": "kwargsFromSuper", + "Structural Impact": 34.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 13, - "Input Parameters": 3, - "Control Flow Ratio": "61.9%", - "Start Line": 448, - "End Line": 489 + "Input Parameters": 4, + "Control Flow Ratio": "68.4%", + "Start Line": 1469, + "End Line": 1521 }, { - "Function Name": "resolveFieldAccessBinding", - "Structural Impact": 27.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 12, + "Function Name": "_getFormatFieldIndent", + "Structural Impact": 33.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 15, "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 756, - "End Line": 778 + "Control Flow Ratio": "93.8%", + "Start Line": 233, + "End Line": 267 }, { - "Function Name": "getSymbolFieldAccessesHighlight", - "Structural Impact": 27.1, - "Lines of Code (LOC)": 32, + "Function Name": "__init__", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 35, "Control Flow Branches": 8, - "Input Parameters": 7, - "Control Flow Ratio": "66.7%", - "Start Line": 6949, - "End Line": 6980 + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 1527, + "End Line": 1561 }, { - "Function Name": "fromSlice", - "Structural Impact": 25.6, - "Lines of Code (LOC)": 31, + "Function Name": "_get_devInfo", + "Structural Impact": 19.3, + "Lines of Code (LOC)": 46, "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 1039, - "End Line": 1069 + "Input Parameters": 1, + "Control Flow Ratio": "61.1%", + "Start Line": 1759, + "End Line": 1804 }, { - "Function Name": "createErrorUnion", - "Structural Impact": 25.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 3391, - "End Line": 3419 + "Function Name": "_getControlFieldForUIAObject", + "Structural Impact": 17.7, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 5, + "Input Parameters": 5, + "Control Flow Ratio": "55.6%", + "Start Line": 585, + "End Line": 645 }, { - "Function Name": "getDocCommentTokenIndex", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 13, + "Function Name": "_prefetchUIACacheForPropertyIDs", + "Structural Impact": 16.9, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "76.5%", - "Start Line": 108, - "End Line": 127 + "Control Flow Ratio": "72.7%", + "Start Line": 1163, + "End Line": 1189 }, { - "Function Name": "resolveUnionTag", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 939, - "End Line": 966 + "Function Name": "event_UIA_notification", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 5, + "Input Parameters": 5, + "Control Flow Ratio": "71.4%", + "Start Line": 2430, + "End Line": 2459 }, { - "Function Name": "createArray", - "Structural Impact": 23.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, + "Function Name": "find", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 5, "Input Parameters": 4, - "Control Flow Ratio": "81.8%", - "Start Line": 3334, - "End Line": 3360 - }, - { - "Function Name": "instanceStdBuiltinType", - "Structural Impact": 23.6, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "63.2%", - "Start Line": 4939, - "End Line": 4960 + "Control Flow Ratio": "55.6%", + "Start Line": 155, + "End Line": 184 }, { - "Function Name": "resolveStructInitType", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, + "Function Name": "_getFormatFieldSuperscriptsAndSubscripts", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 6885, - "End Line": 6905 + "Control Flow Ratio": "85.7%", + "Start Line": 211, + "End Line": 226 }, { - "Function Name": "drain", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 10, - "Input Parameters": 3, + "Function Name": "move", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 4, "Control Flow Ratio": "71.4%", - "Start Line": 352, - "End Line": 370 - }, - { - "Function Name": "resolveArrayMult", - "Structural Impact": 22.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 1381, - "End Line": 1392 + "Start Line": 1062, + "End Line": 1086 }, { - "Function Name": "resolveImportString", - "Structural Impact": 21.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "64.3%", - "Start Line": 4845, - "End Line": 4871 + "Function Name": "_get_positionInfo", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2321, + "End Line": 2343 }, { - "Function Name": "createPointer", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 31, + "Function Name": "_get_positionInfo", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 25, "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "77.8%", - "Start Line": 3302, - "End Line": 3332 + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 2549, + "End Line": 2573 }, { - "Function Name": "isGeneric", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 12, + "Function Name": "event_UIA_dropTargetEffect", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3578, - "End Line": 3632 + "Control Flow Ratio": "70.0%", + "Start Line": 2468, + "End Line": 2490 }, { - "Function Name": "isConditional", - "Structural Impact": 20.2, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3977, - "End Line": 4013 + "Function Name": "doAction", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 2293, + "End Line": 2306 }, { - "Function Name": "typeDefinitionToken", - "Structural Impact": 20.2, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 12, + "Function Name": "_get_role", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, "Input Parameters": 1, "Control Flow Ratio": "75.0%", - "Start Line": 4465, - "End Line": 4501 - }, - { - "Function Name": "resolveCoercedIPValue", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "44.4%", - "Start Line": 1428, - "End Line": 1448 - }, - { - "Function Name": "resolveStringLiteral", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1536, - "End Line": 1570 + "Start Line": 1838, + "End Line": 1857 }, { - "Function Name": "createTuple", - "Structural Impact": 18.3, + "Function Name": "event_stateChange", + "Structural Impact": 10.8, "Lines of Code (LOC)": 19, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 3362, - "End Line": 3380 + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 2629, + "End Line": 2647 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 3421, - "End Line": 3485 + "Function Name": "_getFormatFieldFontAttributes", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 197, + "End Line": 209 }, { - "Function Name": "pointerElementType", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, + "Function Name": "compareEndPoints", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "53.8%", - "Start Line": 4423, - "End Line": 4443 + "Control Flow Ratio": "66.7%", + "Start Line": 1105, + "End Line": 1114 }, { - "Function Name": "definitionToken", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, + "Function Name": "setEndPoint", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 5694, - "End Line": 5708 + "Control Flow Ratio": "80.0%", + "Start Line": 1116, + "End Line": 1125 }, { - "Function Name": "stringLiteralContentLoc", - "Structural Impact": 16.7, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 5272, - "End Line": 5294 + "Function Name": "_get_parent", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 2040, + "End Line": 2058 }, { - "Function Name": "resolveUnionTagAccess", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "54.5%", - "Start Line": 968, - "End Line": 982 + "Function Name": "_getReadOnlyState", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2008, + "End Line": 2023 }, { - "Function Name": "writeAll", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "87.5%", - "Start Line": 372, - "End Line": 385 + "Function Name": "_getUIAPattern", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 1599, + "End Line": 1602 }, { - "Function Name": "isInstanceCall", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 418, - "End Line": 437 + "Function Name": "_getFormatFieldCulture", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 342, + "End Line": 349 }, { - "Function Name": "resolveErrorSetIPIndex", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "53.8%", - "Start Line": 1572, - "End Line": 1581 + "Function Name": "_get_controllerFor", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2369, + "End Line": 2394 }, { - "Function Name": "isConst", - "Structural Impact": 13.7, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 7, + "Function Name": "_get_UIAElementAtStart", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "46.7%", - "Start Line": 5763, - "End Line": 5810 + "Control Flow Ratio": "50.0%", + "Start Line": 547, + "End Line": 570 }, { - "Function Name": "findReturnStatementInternal", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, + "Function Name": "correctAPIForRelation", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 804, - "End Line": 822 + "Start Line": 2034, + "End Line": 2038 }, { - "Function Name": "pointerSize", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 5, + "Function Name": "isDescendantOf", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 4411, - "End Line": 4421 + "Control Flow Ratio": "60.0%", + "Start Line": 2348, + "End Line": 2367 }, { - "Function Name": "isNamespace", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, + "Function Name": "_get_keyboardShortcut", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 4298, - "End Line": 4313 + "Control Flow Ratio": "66.7%", + "Start Line": 1874, + "End Line": 1887 }, { - "Function Name": "next", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, + "Function Name": "_get_rowHeaderText", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 4, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 6165, - "End Line": 6191 + "Start Line": 2170, + "End Line": 2184 }, { - "Function Name": "resolveBindingOfNodeInternal", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 19, + "Function Name": "_get_columnHeaderText", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1960, - "End Line": 1978 - }, - { - "Function Name": "getSymbolEnumLiteral", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 6870, - "End Line": 6883 + "Start Line": 2198, + "End Line": 2212 }, { - "Function Name": "resolveExpressionType", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 6432, - "End Line": 6443 + "Function Name": "_get_TextInfo", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 1742, + "End Line": 1754 }, { - "Function Name": "resolveInternPoolValue", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, + "Function Name": "_get__level", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1450, - "End Line": 1460 + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2509, + "End Line": 2518 }, { - "Function Name": "isStructType", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, + "Function Name": "_get_description", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 4286, - "End Line": 4296 + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2537, + "End Line": 2543 }, { - "Function Name": "isErrorSetType", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, + "Function Name": "getActionName", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 4343, - "End Line": 4352 + "Control Flow Ratio": "60.0%", + "Start Line": 2286, + "End Line": 2291 }, { - "Function Name": "innermostScopeAtIndexWithTag", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "_getUIACacheablePropertyValue", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 6221, - "End Line": 6234 + "Start Line": 1149, + "End Line": 1161 }, { - "Function Name": "getSymbolFieldAccesses", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 13, + "Function Name": "_getFormatFieldHeadings", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "40.0%", - "Start Line": 6908, - "End Line": 6920 + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 295, + "End Line": 303 }, { - "Function Name": "resolveOptionalIPValue", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 8, + "Function Name": "_get_selectionContainer", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 1419, - "End Line": 1426 + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 1673, + "End Line": 1686 }, { - "Function Name": "isPublic", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 4, + "Function Name": "_get_children", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 5845, - "End Line": 5869 + "Control Flow Ratio": "42.9%", + "Start Line": 2124, + "End Line": 2137 }, { - "Function Name": "isGenericFunc", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 4381, - "End Line": 4393 + "Function Name": "_getFormatFieldColor", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 275, + "End Line": 281 }, { - "Function Name": "createOptional", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, + "Function Name": "_get_labeledBy", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 3382, - "End Line": 3389 + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 2396, + "End Line": 2407 }, { - "Function Name": "getContainerKind", + "Function Name": "_get_value", "Structural Impact": 6.3, "Lines of Code (LOC)": 12, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4269, - "End Line": 4280 + "Control Flow Ratio": "42.9%", + "Start Line": 2782, + "End Line": 2793 }, { - "Function Name": "resolveFieldAccess", + "Function Name": "_getFormatFieldLineSpacing", "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 751, - "End Line": 754 + "Control Flow Ratio": "66.7%", + "Start Line": 283, + "End Line": 287 }, { - "Function Name": "resolveIntegerLiteral", + "Function Name": "_getFormatFieldLinks", "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1462, - "End Line": 1465 + "Control Flow Ratio": "66.7%", + "Start Line": 289, + "End Line": 293 }, { - "Function Name": "resolveDeclLiteralResultType", + "Function Name": "_get__shouldAllowUIALiveRegionChangeEvent", "Structural Impact": 6.2, "Lines of Code (LOC)": 11, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4361, - "End Line": 4371 + "Control Flow Ratio": "50.0%", + "Start Line": 1587, + "End Line": 1597 }, { - "Function Name": "isNoreturnType", + "Function Name": "_getIndentValueDisplayString", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 446, + "End Line": 463 + }, + { + "Function Name": "_get_presentationType", "Structural Impact": 6.1, "Lines of Code (LOC)": 8, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "60.0%", - "Start Line": 4402, - "End Line": 4409 + "Start Line": 2025, + "End Line": 2032 }, { - "Function Name": "isMetaType", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, + "Function Name": "event_UIA_window_windowOpen", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4335, - "End Line": 4341 - }, - { - "Function Name": "pop", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 5333, - "End Line": 5340 + "Control Flow Ratio": "60.0%", + "Start Line": 2669, + "End Line": 2677 }, { - "Function Name": "createPointerType", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, + "Function Name": "_get_focusRedirect", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 3781, - "End Line": 3792 + "Start Line": 2753, + "End Line": 2761 }, { - "Function Name": "withoutIPIndex", - "Structural Impact": 5.5, + "Function Name": "_get_hasIrrelevantLocation", + "Structural Impact": 6.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 3878, - "End Line": 3883 + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2314, + "End Line": 2319 }, { - "Function Name": "compare", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_name", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2739, + "End Line": 2745 + }, + { + "Function Name": "_getBoundingRectsFromUIARange", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "40.0%", - "Start Line": 6175, - "End Line": 6180 + "Start Line": 1040, + "End Line": 1053 }, { - "Function Name": "getFunctionSignature", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "collapse", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 158, - "End Line": 162 + "Start Line": 1091, + "End Line": 1103 }, { - "Function Name": "resolveInstanceOfNode", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "__eq__", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1936, - "End Line": 1939 + "Control Flow Ratio": "33.3%", + "Start Line": 529, + "End Line": 534 }, { - "Function Name": "resolveTypeOfNode", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "_isEqual", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1943, - "End Line": 1946 + "Control Flow Ratio": "33.3%", + "Start Line": 1563, + "End Line": 1569 }, { - "Function Name": "resolveTypeOfNodeInternal", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "_get_UIAAnnotationObjects", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 1948, - "End Line": 1951 + "Start Line": 1691, + "End Line": 1704 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_previous", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 3846, - "End Line": 3850 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2060, + "End Line": 2071 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_next", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 4838, - "End Line": 4842 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2076, + "End Line": 2087 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_firstChild", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 5658, - "End Line": 5662 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2089, + "End Line": 2100 }, { - "Function Name": "createArrayType", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 3794, - "End Line": 3804 + "Function Name": "_get_lastChild", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2102, + "End Line": 2113 }, { - "Function Name": "next", + "Function Name": "_get__controlFieldUIACacheRequest", "Structural Impact": 4.7, "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", - "Start Line": 4186, - "End Line": 4195 + "Start Line": 137, + "End Line": 146 }, { - "Function Name": "loc", + "Function Name": "_get_childCount", "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 5241, - "End Line": 5265 + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2139, + "End Line": 2147 }, { - "Function Name": "allDigits", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_location", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1374, - "End Line": 1379 + "Control Flow Ratio": "33.3%", + "Start Line": 2252, + "End Line": 2260 }, { - "Function Name": "createErrorUnionType", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 3, + "Function Name": "_get_description", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 3820, - "End Line": 3829 + "Start Line": 2594, + "End Line": 2602 }, { - "Function Name": "ipIndex", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_description", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3871, - "End Line": 3876 + "Control Flow Ratio": "40.0%", + "Start Line": 2527, + "End Line": 2533 }, { - "Function Name": "isRoot", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_UIASelectionPattern", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 4258, - "End Line": 4263 + "Start Line": 2613, + "End Line": 2619 }, { - "Function Name": "isTaggedUnion", + "Function Name": "_get_NVDAObjectAtStart", "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4327, - "End Line": 4332 + "Control Flow Ratio": "40.0%", + "Start Line": 541, + "End Line": 545 }, { - "Function Name": "isEnumLiteral", + "Function Name": "_get_UIAFullDescription", "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4354, - "End Line": 4359 + "Control Flow Ratio": "40.0%", + "Start Line": 1859, + "End Line": 1863 }, { - "Function Name": "isTypeFunc", + "Function Name": "_get_UIAHelpText", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1865, + "End Line": 1869 + }, + { + "Function Name": "_get_value", "Structural Impact": 4.5, "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4373, - "End Line": 4378 + "Control Flow Ratio": "33.3%", + "Start Line": 2274, + "End Line": 2279 }, { - "Function Name": "isFunc", + "Function Name": "event_valueChange", "Structural Impact": 4.5, "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "66.7%", - "Start Line": 4395, - "End Line": 4400 + "Start Line": 2585, + "End Line": 2590 }, { - "Function Name": "fromIP", + "Function Name": "_get_TextInfo", "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2770, + "End Line": 2773 + }, + { + "Function Name": "_getFormatFieldFontName", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 3885, - "End Line": 3892 + "Start Line": 186, + "End Line": 189 }, { - "Function Name": "eql", + "Function Name": "_getFormatFieldFontSize", "Structural Impact": 4.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 4975, - "End Line": 4979 - }, - { - "Function Name": "hash", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 3639, - "End Line": 3647 + "Control Flow Ratio": "50.0%", + "Start Line": 191, + "End Line": 195 }, { - "Function Name": "isMetaType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getFormatFieldStyle", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 646, - "End Line": 651 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 228, + "End Line": 231 }, { - "Function Name": "createTupleType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getFormatFieldAlignment", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 3806, - "End Line": 3811 + "Start Line": 269, + "End Line": 273 }, { - "Function Name": "createOptionalType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getTextFromHeaderElement", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3813, - "End Line": 3818 + "Control Flow Ratio": "25.0%", + "Start Line": 2161, + "End Line": 2168 }, { - "Function Name": "isTypeFunction", + "Function Name": "getTextWithFields", "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 654, - "End Line": 657 + "Start Line": 1031, + "End Line": 1035 }, { - "Function Name": "eql", + "Function Name": "getSelectedItemsCount", "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 4991, - "End Line": 4994 + "Control Flow Ratio": "25.0%", + "Start Line": 1664, + "End Line": 1668 }, { - "Function Name": "isCaptureByRef", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 18, + "Function Name": "event_UIA_layoutInvalidated", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 16, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 5812, - "End Line": 5829 + "Control Flow Ratio": "33.3%", + "Start Line": 2710, + "End Line": 2725 }, { - "Function Name": "writeString", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_processID", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 4574, - "End Line": 4576 + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2240, + "End Line": 2250 }, { - "Function Name": "init", + "Function Name": "_get_UIASelectionPattern2", "Structural Impact": 3.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 64 + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1653, + "End Line": 1662 }, { - "Function Name": "toNode", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, + "Function Name": "_get_UIATextEditPattern", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "25.0%", - "Start Line": 4827, - "End Line": 4831 + "Start Line": 1722, + "End Line": 1730 }, { - "Function Name": "peek", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, + "Function Name": "_get_liveRegionPoliteness", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 5325, - "End Line": 5330 - }, - { - "Function Name": "collectAllSymbolsAtSourceIndex", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6136, - "End Line": 6144 - }, - { - "Function Name": "eql", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3926, - "End Line": 3932 - }, - { - "Function Name": "getPositionContext", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 5355, - "End Line": 5361 + "Control Flow Ratio": "25.0%", + "Start Line": 1829, + "End Line": 1836 }, { - "Function Name": "eql", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 7007, - "End Line": 7013 + "Function Name": "_get_UIAChildren", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 2115, + "End Line": 2122 }, { - "Function Name": "renderBuiltinFunctionSignature", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 397 + "Function Name": "_get_table", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2226, + "End Line": 2233 }, { - "Function Name": "getVariableSignature", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 491, - "End Line": 496 + "Function Name": "_get_shouldAllowUIAFocusEvent", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1579, + "End Line": 1583 }, { - "Function Name": "resolveGenericTypeInternal", - "Structural Impact": 2.5, + "Function Name": "_get_UIAAutomationId", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 786, - "End Line": 791 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1806, + "End Line": 1811 }, { - "Function Name": "resolveGeneric", - "Structural Impact": 2.5, + "Function Name": "_get_UIAFrameworkId", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3655, - "End Line": 3660 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1813, + "End Line": 1818 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "_get_name", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3864, - "End Line": 3868 - }, - { - "Function Name": "rawStringify", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 4583, - "End Line": 4588 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1823, + "End Line": 1827 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "_get_rowNumber", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 5672, - "End Line": 5676 - }, - { - "Function Name": "lookupSymbolGlobal", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6312, - "End Line": 6317 - }, - { - "Function Name": "of", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6987, - "End Line": 6993 - }, - { - "Function Name": "collectDocComments", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 129 - }, - { - "Function Name": "iterateLabels", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6202, - "End Line": 6202 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2149, + "End Line": 2153 }, { - "Function Name": "rawStringifyParameter", - "Structural Impact": 2.2, + "Function Name": "_get_rowSpan", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 186 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2155, + "End Line": 2159 }, { - "Function Name": "rawStringifyFunction", - "Structural Impact": 2.2, + "Function Name": "_get_columnNumber", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 252 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2186, + "End Line": 2190 }, { - "Function Name": "next", - "Structural Impact": 2.2, + "Function Name": "_get_columnSpan", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1878, - "End Line": 1882 - }, - { - "Function Name": "eql", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 3649, - "End Line": 3652 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2192, + "End Line": 2196 }, { - "Function Name": "lookupLabel", - "Structural Impact": 2.2, + "Function Name": "_get_rowCount", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6290, - "End Line": 6294 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2214, + "End Line": 2218 }, { - "Function Name": "lookupSymbolContainer", - "Structural Impact": 2.2, + "Function Name": "_get_columnCount", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6355, - "End Line": 6359 - }, - { - "Function Name": "init", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 350 - }, - { - "Function Name": "hash", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4967, - "End Line": 4973 - }, - { - "Function Name": "iterateEnclosingScopes", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6194, - "End Line": 6200 - }, - { - "Function Name": "hash", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6998, - "End Line": 7005 - }, - { - "Function Name": "getDocCommentsBeforeToken", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "getDocComments", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 83 - }, - { - "Function Name": "trimCommonIndentation", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 583, - "End Line": 583 - }, - { - "Function Name": "resolveGenericType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 780, - "End Line": 780 - }, - { - "Function Name": "resolveOrelseType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 897 - }, - { - "Function Name": "resolveAddressOf", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 909, - "End Line": 909 - }, - { - "Function Name": "resolveUnwrapErrorUnionType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 917, - "End Line": 917 - }, - { - "Function Name": "resolveBracketAccessType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1076, - "End Line": 1076 - }, - { - "Function Name": "resolveBracketAccess", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1133, - "End Line": 1133 - }, - { - "Function Name": "resolvePropertyType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1246, - "End Line": 1246 - }, - { - "Function Name": "coerceIP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1583, - "End Line": 1583 - }, - { - "Function Name": "resolvePeerTypes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1593, - "End Line": 1593 - }, - { - "Function Name": "resolvePeerTypesIP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1608, - "End Line": 1608 - }, - { - "Function Name": "resolvePeerErrorSets", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1614, - "End Line": 1614 - }, - { - "Function Name": "resolvePeerTypesInternal", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1627, - "End Line": 1627 - }, - { - "Function Name": "resolveBindingOfNode", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1953, - "End Line": 1958 - }, - { - "Function Name": "of", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3166, - "End Line": 3171 + "Control Flow Ratio": "33.3%", + "Start Line": 2220, + "End Line": 2224 }, { - "Function Name": "hash", - "Structural Impact": 2.0, + "Function Name": "_get_UIAValue", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3920, - "End Line": 3924 - }, - { - "Function Name": "getAllTypesWithHandlesArraySet", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4016, - "End Line": 4016 - }, - { - "Function Name": "stringifyTypeOf", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4554, - "End Line": 4554 - }, - { - "Function Name": "stringifyTypeVal", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4564, - "End Line": 4564 - }, - { - "Function Name": "push", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 5321, - "End Line": 5321 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2262, + "End Line": 2266 }, { - "Function Name": "tokenLocAppend", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5343, - "End Line": 5348 + "Function Name": "_get_UIARangeValue", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2268, + "End Line": 2272 }, { - "Function Name": "hash", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5665, - "End Line": 5670 + "Function Name": "_get_hasFocus", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2308, + "End Line": 2312 }, { - "Function Name": "innermostScopeAtIndex", - "Structural Impact": 2.0, + "Function Name": "event_UIA_dragDropEffect", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6214, - "End Line": 6219 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2461, + "End Line": 2466 }, { - "Function Name": "innermostContainer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6236, - "End Line": 6236 + "Function Name": "_get_value", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2621, + "End Line": 2625 }, { - "Function Name": "findReturnStatement", - "Structural Impact": 1.9, + "Function Name": "_get_tableID", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 824, - "End Line": 827 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2235, + "End Line": 2238 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, + "Function Name": "_get_actionCount", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3841, - "End Line": 3844 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2281, + "End Line": 2284 }, { - "Function Name": "hash", - "Structural Impact": 1.9, + "Function Name": "event_valueChange", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3859, - "End Line": 3862 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2415, + "End Line": 2418 }, { - "Function Name": "init", - "Structural Impact": 1.9, + "Function Name": "_get_positionInfo", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4164, - "End Line": 4167 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2520, + "End Line": 2523 }, { - "Function Name": "isContainerKind", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4282, - "End Line": 4284 + "Function Name": "_get_description", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1871, + "End Line": 1872 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_getTextFromUIARange", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4833, - "End Line": 4836 + "Start Line": 647, + "End Line": 652 }, { - "Function Name": "of", + "Function Name": "expand", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4987, - "End Line": 4989 + "Start Line": 1058, + "End Line": 1060 }, { - "Function Name": "deinit", + "Function Name": "getNormalizedUIATextRangeFromElement", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 5317, - "End Line": 5319 - }, - { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5653, - "End Line": 5656 + "Start Line": 1523, + "End Line": 1525 }, { - "Function Name": "eql", + "Function Name": "event_UIA_systemAlert", "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5685, - "End Line": 5687 - }, - { - "Function Name": "allocType", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "stringifyParameter", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 173 - }, - { - "Function Name": "stringifyFunction", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 239, - "End Line": 239 + "Start Line": 2420, + "End Line": 2428 }, { - "Function Name": "hasSelfParam", + "Function Name": "_get_UIATextPattern", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 + "Start Line": 1706, + "End Line": 1712 }, { - "Function Name": "resolveReturnType", + "Function Name": "_get_UIATableItemPattern", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 + "Start Line": 1714, + "End Line": 1720 }, { - "Function Name": "resolveOptionalUnwrap", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_controlFieldNVDAObjectClass", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 875 + "Start Line": 92, + "End Line": 97 }, { - "Function Name": "resolveFuncProtoOfCallable", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get__coreCycleUIAPropertyCacheElementCache", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 984, - "End Line": 984 + "Start Line": 1142, + "End Line": 1147 }, { - "Function Name": "resolveDerefType", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAInvokePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 992, - "End Line": 992 + "Start Line": 1604, + "End Line": 1609 }, { - "Function Name": "resolveDerefBinding", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAGridPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 997, - "End Line": 997 + "Start Line": 1611, + "End Line": 1616 }, { - "Function Name": "bracketAccessTypeFromIPIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIARangeValuePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1082, - "End Line": 1082 + "Start Line": 1618, + "End Line": 1623 }, { - "Function Name": "resolvePrimitive", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAValuePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1512, - "End Line": 1512 + "Start Line": 1625, + "End Line": 1630 }, { - "Function Name": "fromEither", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIATogglePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3899, - "End Line": 3899 + "Start Line": 1632, + "End Line": 1637 }, { - "Function Name": "getAllTypesWithHandles", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIASelectionItemPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3971, - "End Line": 3971 + "Start Line": 1639, + "End Line": 1644 }, { - "Function Name": "instanceTypeVal", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIASelectionPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4198, - "End Line": 4198 + "Start Line": 1646, + "End Line": 1651 }, { - "Function Name": "instanceUnchecked", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIALegacyIAccessiblePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4203, - "End Line": 4203 + "Start Line": 1732, + "End Line": 1737 }, { - "Function Name": "typeOf", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "updateCaret", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4226, - "End Line": 4226 + "Start Line": 1130, + "End Line": 1133 }, { - "Function Name": "arrayInfo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "event_gainFocus", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4445, - "End Line": 4445 + "Start Line": 1571, + "End Line": 1573 }, { - "Function Name": "docComments", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "event_loseFocus", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4503, - "End Line": 4503 + "Start Line": 1575, + "End Line": 1577 }, { - "Function Name": "initCapacity", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "fetch", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5312, - "End Line": 5312 + "Start Line": 415, + "End Line": 416 }, { - "Function Name": "docComments", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "__hash__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5831, - "End Line": 5831 + "Start Line": 538, + "End Line": 539 }, { - "Function Name": "root", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "_get_bookmark", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3263, - "End Line": 3268 + "Start Line": 572, + "End Line": 573 }, { - "Function Name": "hash64", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "_get_text", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3835, - "End Line": 3839 + "Start Line": 1037, + "End Line": 1038 }, { - "Function Name": "deinit", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Function Name": "_get_boundingRects", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 69 + "Start Line": 1055, + "End Line": 1056 }, { - "Function Name": "fmtEscapedSnippet", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "copy", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 390 + "Start Line": 1088, + "End Line": 1089 }, { - "Function Name": "hash32", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "updateSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3831, - "End Line": 3833 + "Start Line": 1127, + "End Line": 1128 }, { - "Function Name": "ArrayMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "setFocus", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3854, - "End Line": 3856 + "Start Line": 1756, + "End Line": 1757 }, { - "Function Name": "isGenericType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "scrollIntoView", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4265, - "End Line": 4267 + "Start Line": 2345, + "End Line": 2346 }, { - "Function Name": "isEnumType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_UIA_controllerFor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4315, - "End Line": 4317 + "Start Line": 2409, + "End Line": 2410 }, { - "Function Name": "isUnionType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_UIA_elementSelected", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4319, - "End Line": 4321 + "Start Line": 2412, + "End Line": 2413 }, { - "Function Name": "isOpaqueType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_value", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4323, - "End Line": 4325 + "Start Line": 2506, + "End Line": 2507 }, { - "Function Name": "isErrSetDef", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_value", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5307, - "End Line": 5309 + "Start Line": 2575, + "End Line": 2576 }, { - "Function Name": "nameToken", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_focusEntered", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5690, - "End Line": 5692 + "Start Line": 2582, + "End Line": 2583 }, { - "Function Name": "typeDeclarationNode", + "Function Name": "event_nameChange", "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5710, - "End Line": 5710 + "Start Line": 2691, + "End Line": 2692 }, { - "Function Name": "isStatic", + "Function Name": "event_stateChange", "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5871, - "End Line": 5871 + "Start Line": 2694, + "End Line": 2695 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2284, - "Sequential Logic Declarations": 1166, - "Function Parameters": 197, - "Function/Method Declarations": 197, - "Class/Entity Declarations": 37, - "Defensive Programming Constructs": 1439, - "Type/Safety Bypasses": 55, + "Control Flow Branches": 620, + "Sequential Logic Declarations": 475, + "Function Parameters": 147, + "Function/Method Declarations": 147, + "Class/Entity Declarations": 24, + "Defensive Programming Constructs": 177, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 193, - "State Mutations / Variable Reassignments": 567, - "Commented-out Code (Dead Logic)": 9, - "Structured Documentation Blocks": 111, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 2, + "Exposed API / Public Exports": 61, + "State Mutations / Variable Reassignments": 311, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 33, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 39, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 114, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 10, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 54, + "Collection Iterators / Comprehensions": 10, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 15, + "Module Dependencies (Imports)": 50, "Authorship Metadata": 0, - "Planned Work (TODOs)": 15, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 4, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 269, - "Manual Memory Allocation": 20, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 5, - "Fatal Aborts & Exceptions": 951, + "Explicit Type Casts": 16, + "Fatal Aborts & Exceptions": 21, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 974, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 900, - "Resource Deallocation & Cleanup": 27, - "Private / Encapsulated Scopes": 990, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 325, + "Event Listeners & Subscribers": 79, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5819, + "Structural Tab Indentations": 2171, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -411979,32 +415364,32 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 2, "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": 1104, - "Design Camel Case": 0, - "Design Snake Case": 984, - "Design Pascal Case": 96, + "Lazy Evaluation & Generators (O(1) Memory)": 12, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 410, + "Design Camel Case": 182, + "Design Snake Case": 183, + "Design Pascal Case": 28, "Design Upper Case": 0, - "Design Short Vars": 71, - "Design Long Vars": 2, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Design Short Vars": 27, + "Design Long Vars": 9, + "Duplicate Logic": 2, + "Orphaned Logic": 82, "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)": 32, + "External Network & I/O Hooks": 21, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -412020,712 +415405,1885 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 12, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 4, - "Total Downstream (Absolute Dependency Blast Radius)": 3 + "Direct Upstream (Fragility)": 34, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 9, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DocumentScope.zig", - "DocumentStore.zig", - "Uri.zig", - "analyser/InternPool.zig", - "analyser/error_msg.zig", - "ast.zig", - "builtin", - "features/references.zig", - "offsets.zig", - "std", - "tracy", - "version_data" + ".", + ".excel", + ".wordDocument", + "NVDAObjects", + "NVDAObjects.behaviors", + "NVDAObjects.window", + "NVDAObjects.window.edit", + "NVDAState", + "UIAHandler", + "UIAHandler.customAnnotations", + "UIAHandler.customProps", + "UIAHandler.types", + "UIAHandler.utils", + "__future__", + "api", + "array", + "braille", + "colors", + "comtypes", + "config", + "config.configFlags", + "controlTypes", + "ctypes.wintypes", + "displayModel", + "languageHandler", + "locationHelper", + "logHandler", + "numbers", + "speech", + "textInfos", + "time", + "typing", + "ui", + "winVersion" ] }, - "zig/zls/ast.zig": { + "cpp/NVDA/braille.py": { "1. Artifact Identity": { - "Filename": "ast.zig", - "Path": "zig/zls/ast.zig", - "Language": "Zig", + "Filename": "braille.py", + "Path": "cpp/NVDA/braille.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", + "Indentation Style": "Tabs", + "Parent Entity": "StrEnum, NamedTuple, object", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2440.22, - "Y": -143.56, - "Z": 8036.73 + "X": 4330.03, + "Y": 4.61, + "Z": 5552.06 }, "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": 1847, - "Coding LOC": 1631, - "Documentation LOC": 73, - "Structural Magnitude": 778.82, - "Control Flow Ratio": "62.5%", + "Total LOC": 4054, + "Coding LOC": 2617, + "Documentation LOC": 1062, + "Structural Magnitude": 2563.34, + "Control Flow Ratio": "60.4%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.466 + "Raw Cognitive Density": 0.807 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "19.24%", - "Error & Exception Exposure": "47.02%", - "Tech Debt Exposure": "8.14%", + "Cognitive Load Exposure": "34.85%", + "Error & Exception Exposure": "78.81%", + "Tech Debt Exposure": "8.73%", "Testing Exposure": "80.0%", - "API Exposure": "2.76%", - "Concurrency Exposure": "14.1%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "5.71%", + "API Exposure": "2.52%", + "Concurrency Exposure": "13.6%", + "State Flux Exposure": "99.91%", + "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.01%", + "Documentation Exposure": "15.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "lastToken", - "Structural Impact": 164.3, - "Lines of Code (LOC)": 410, - "Control Flow Branches": 82, - "Input Parameters": 2, - "Control Flow Ratio": "81.2%", - "Start Line": 422, - "End Line": 831 + "Function Name": "_addTextWithFields", + "Structural Impact": 88.5, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 36, + "Input Parameters": 4, + "Control Flow Ratio": "87.8%", + "Start Line": 1397, + "End Line": 1512 }, { - "Function Name": "indexOfBreakTarget", - "Structural Impact": 57.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 27, - "Input Parameters": 3, - "Control Flow Ratio": "79.4%", - "Start Line": 1812, - "End Line": 1846 + "Function Name": "getPropertiesBraille", + "Structural Impact": 87.8, + "Lines of Code (LOC)": 144, + "Control Flow Branches": 56, + "Input Parameters": 1, + "Control Flow Ratio": "96.6%", + "Start Line": 712, + "End Line": 855 }, { - "Function Name": "next", - "Structural Impact": 39.0, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1416, - "End Line": 1502 + "Function Name": "getFormatFieldBraille", + "Structural Impact": 77.4, + "Lines of Code (LOC)": 72, + "Control Flow Branches": 32, + "Input Parameters": 4, + "Control Flow Ratio": "94.1%", + "Start Line": 1190, + "End Line": 1261 }, { - "Function Name": "fullPtrTypeComponents", - "Structural Impact": 37.1, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "82.6%", - "Start Line": 11, - "End Line": 59 + "Function Name": "getControlFieldBraille", + "Structural Impact": 64.3, + "Lines of Code (LOC)": 110, + "Control Flow Branches": 23, + "Input Parameters": 5, + "Control Flow Ratio": "74.2%", + "Start Line": 956, + "End Line": 1065 }, { - "Function Name": "next", - "Structural Impact": 31.6, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 18, + "Function Name": "_getControlFieldForReportStart", + "Structural Impact": 63.3, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 15, + "Input Parameters": 13, + "Control Flow Ratio": "78.9%", + "Start Line": 1119, + "End Line": 1187 + }, + { + "Function Name": "update", + "Structural Impact": 36.9, + "Lines of Code (LOC)": 60, + "Control Flow Branches": 23, "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 966, - "End Line": 1059 + "Control Flow Ratio": "88.5%", + "Start Line": 875, + "End Line": 934 }, { - "Function Name": "init", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 334, - "Control Flow Branches": 4, + "Function Name": "getFocusRegions", + "Structural Impact": 36.7, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 19, "Input Parameters": 2, - "Control Flow Ratio": "13.3%", - "Start Line": 1081, - "End Line": 1414 + "Control Flow Ratio": "65.5%", + "Start Line": 2281, + "End Line": 2321 }, { - "Function Name": "fullAsmComponents", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 7, + "Function Name": "getFocusContextRegions", + "Structural Impact": 33.2, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 16, "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 119, - "End Line": 140 + "Control Flow Ratio": "64.0%", + "Start Line": 2204, + "End Line": 2278 }, { - "Function Name": "fullWhileComponents", - "Structural Impact": 14.4, + "Function Name": "setDisplayByName", + "Structural Impact": 31.3, "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 223, - "End Line": 267 + "Control Flow Branches": 12, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 2772, + "End Line": 2816 }, { - "Function Name": "paramFirstToken", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "83.3%", - "Start Line": 865, - "End Line": 870 + "Function Name": "_get_script", + "Structural Impact": 30.0, + "Lines of Code (LOC)": 63, + "Control Flow Branches": 18, + "Input Parameters": 1, + "Control Flow Ratio": "72.0%", + "Start Line": 3858, + "End Line": 3920 }, { - "Function Name": "fullIfComponents", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, + "Function Name": "update", + "Structural Impact": 28.6, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "89.5%", + "Start Line": 590, + "End Line": 651 + }, + { + "Function Name": "update", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 15, + "Input Parameters": 1, + "Control Flow Ratio": "78.9%", + "Start Line": 1517, + "End Line": 1627 + }, + { + "Function Name": "_normalizeCellArraySize", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 9, + "Input Parameters": 6, + "Control Flow Ratio": "81.8%", + "Start Line": 2891, + "End Line": 2924 + }, + { + "Function Name": "_getTryPorts", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 14, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 166, - "End Line": 198 + "Control Flow Ratio": "87.5%", + "Start Line": 3680, + "End Line": 3709 }, { - "Function Name": "fullForComponents", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, + "Function Name": "_set_windowEndPos", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 13, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 269, - "End Line": 296 + "Control Flow Ratio": "65.0%", + "Start Line": 1997, + "End Line": 2049 }, { - "Function Name": "initArray", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, + "Function Name": "_handlePendingUpdate", + "Structural Impact": 24.5, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 15, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1504, - "End Line": 1525 + "Control Flow Ratio": "71.4%", + "Start Line": 3138, + "End Line": 3174 }, { - "Function Name": "blockLabel", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 929, - "End Line": 936 + "Function Name": "handlePostConfigProfileSwitch", + "Structural Impact": 23.8, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "93.3%", + "Start Line": 3265, + "End Line": 3316 }, { - "Function Name": "isContainer", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 897, - "End Line": 916 + "Function Name": "handleCaretMove", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 3116, + "End Line": 3136 }, { - "Function Name": "forFull", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "handleUpdate", + "Structural Impact": 20.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 10, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 343, - "End Line": 354 + "Control Flow Ratio": "55.6%", + "Start Line": 3206, + "End Line": 3233 }, { - "Function Name": "isTaggedUnion", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, + "Function Name": "_getModifierGestures", + "Structural Impact": 20.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 10, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 886, - "End Line": 895 + "Control Flow Ratio": "83.3%", + "Start Line": 3715, + "End Line": 3742 }, { - "Function Name": "isBuiltinCall", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "_getControlFieldForLayoutPresentation", + "Structural Impact": 19.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 6, "Control Flow Ratio": "66.7%", - "Start Line": 918, - "End Line": 927 + "Start Line": 1068, + "End Line": 1088 }, { - "Function Name": "fullPtrType", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "handleGainFocus", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, + "Input Parameters": 3, "Control Flow Ratio": "66.7%", - "Start Line": 356, - "End Line": 364 + "Start Line": 3066, + "End Line": 3086 }, { - "Function Name": "fullWhile", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, + "Function Name": "_doNewObject", + "Structural Impact": 18.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 374, - "End Line": 381 + "Control Flow Ratio": "90.0%", + "Start Line": 3088, + "End Line": 3114 }, { - "Function Name": "fullIf", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "_onSecureDesktopStateChanged", + "Structural Impact": 18.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 366, - "End Line": 372 + "Control Flow Ratio": "81.8%", + "Start Line": 2541, + "End Line": 2566 }, { - "Function Name": "fullFor", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 383, - "End Line": 389 + "Function Name": "_appendFormattingMarker", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 5, + "Control Flow Ratio": "85.7%", + "Start Line": 1304, + "End Line": 1324 }, { - "Function Name": "fullAsm", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "handleReviewMove", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 391, - "End Line": 397 + "Control Flow Ratio": "75.0%", + "Start Line": 3235, + "End Line": 3249 }, { - "Function Name": "findMatchingRBrace", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, + "Function Name": "getTextInfoForBraillePos", + "Structural Impact": 17.3, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 8, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 399, - "End Line": 401 + "Start Line": 1629, + "End Line": 1663 }, { - "Function Name": "errorSetFieldCount", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "previousLine", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 938, - "End Line": 946 + "Control Flow Ratio": "72.7%", + "Start Line": 1724, + "End Line": 1747 }, { - "Function Name": "identifierTokenFromIdentifierNode", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, + "Function Name": "_showSpeechInBraille", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 854, - "End Line": 858 + "Control Flow Ratio": "72.7%", + "Start Line": 2591, + "End Line": 2611 }, { - "Function Name": "hasInferredError", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "_calculateWindowRowBufferOffsets", + "Structural Impact": 15.5, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 860, - "End Line": 863 + "Control Flow Ratio": "63.6%", + "Start Line": 1956, + "End Line": 1988 }, { - "Function Name": "paramLastToken", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, + "Function Name": "_bgThreadExecutor", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 872, - "End Line": 874 + "Control Flow Ratio": "63.6%", + "Start Line": 3376, + "End Line": 3406 }, { - "Function Name": "isKeyword", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 403, - "End Line": 412 + "Function Name": "message", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 3011, + "End Line": 3036 }, { - "Function Name": "ptrTypeSimple", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 74 + "Function Name": "bufferPositionsToRawText", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 1907, + "End Line": 1926 }, { - "Function Name": "ptrTypeSentinel", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 88 + "Function Name": "_getAutoPorts", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 3649, + "End Line": 3668 }, { - "Function Name": "ptrTypeAligned", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Function Name": "getDisplayTextForIdentifier", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 102 + "Control Flow Ratio": "63.6%", + "Start Line": 3944, + "End Line": 3966 }, { - "Function Name": "ptrTypeBitRange", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "_routeToTextInfo", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 117 + "Control Flow Ratio": "63.6%", + "Start Line": 1767, + "End Line": 1783 }, { - "Function Name": "asmFull", - "Structural Impact": 2.3, + "Function Name": "_setDisplay", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "71.4%", + "Start Line": 2843, + "End Line": 2868 + }, + { + "Function Name": "_switchDisplay", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "62.5%", + "Start Line": 2818, + "End Line": 2841 + }, + { + "Function Name": "regionPosToBufferPos", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1890, + "End Line": 1905 + }, + { + "Function Name": "getDisplayList", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 516, + "End Line": 539 + }, + { + "Function Name": "_writeCells", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2926, + "End Line": 2959 + }, + { + "Function Name": "getPossiblePorts", + "Structural Impact": 13.1, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 3612, + "End Line": 3646 + }, + { + "Function Name": "_getDisplayDriver", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 496, + "End Line": 513 + }, + { + "Function Name": "_get_displayDimensions", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 2671, + "End Line": 2701 + }, + { + "Function Name": "_getTypeformFromFormatField", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 1370, + "End Line": 1386 + }, + { + "Function Name": "_getControlFieldForTableCell", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 3, + "Input Parameters": 7, + "Control Flow Ratio": "60.0%", + "Start Line": 1091, + "End Line": 1116 + }, + { + "Function Name": "getSerialPorts", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 3972, + "End Line": 3997 + }, + { + "Function Name": "_refreshEnabled", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 2728, + "End Line": 2745 + }, + { + "Function Name": "_handleProgressBarUpdate", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 3189, + "End Line": 3204 + }, + { + "Function Name": "scrollToCursorOrSelection", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 3176, + "End Line": 3185 + }, + { + "Function Name": "getDisplayDrivers", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4000, + "End Line": 4020 + }, + { + "Function Name": "nextLine", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1706, + "End Line": 1722 + }, + { + "Function Name": "scrollTo", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "57.1%", + "Start Line": 2082, + "End Line": 2089 + }, + { + "Function Name": "setTether", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "57.1%", + "Start Line": 2631, + "End Line": 2639 + }, + { + "Function Name": "routeTo", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1665, + "End Line": 1686 + }, + { + "Function Name": "terminate", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2507, + "End Line": 2532 + }, + { + "Function Name": "_getAnnotationProperty", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 682, + "End Line": 706 + }, + { + "Function Name": "update", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 2108, + "End Line": 2127 + }, + { + "Function Name": "check", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3523, + "End Line": 3539 + }, + { + "Function Name": "_updateDisplay", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2875, + "End Line": 2889 + }, + { + "Function Name": "formatCellsForLog", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2324, + "End Line": 2336 + }, + { + "Function Name": "initialDisplay", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 3251, + "End Line": 3263 + }, + { + "Function Name": "_displayWithCursor", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2965, + "End Line": 2974 + }, + { + "Function Name": "_ackTimeoutResetter", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 3408, + "End Line": 3412 + }, + { + "Function Name": "NVDAObjectHasUsefulText", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 478, + "End Line": 493 + }, + { + "Function Name": "_getFormattingTags", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1283, + "End Line": 1301 + }, + { + "Function Name": "_routeToTextInfo", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1688, + "End Line": 1704 + }, + { + "Function Name": "focus", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 2091, + "End Line": 2106 + }, + { + "Function Name": "_set_numCells", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 3583, + "End Line": 3588 + }, + { + "Function Name": "routeTo", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 950, + "End Line": 953 + }, + { + "Function Name": "_addFieldText", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1388, + "End Line": 1395 + }, + { + "Function Name": "rindex", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1807, + "End Line": 1811 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2457, + "End Line": 2505 + }, + { + "Function Name": "_enableDetection", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 3332, + "End Line": 3368 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 864, + "End Line": 873 + }, + { + "Function Name": "terminate", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3554, + "End Line": 3570 + }, + { + "Function Name": "_resetMessageTimer", + "Structural Impact": 6.3, "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3038, + "End Line": 3049 + }, + { + "Function Name": "_get_visibleRegions", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1846, + "End Line": 1853 + }, + { + "Function Name": "scrollForward", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 2058, + "End Line": 2065 + }, + { + "Function Name": "scrollBack", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 2073, + "End Line": 2080 + }, + { + "Function Name": "_dismissMessage", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 164 + "Control Flow Ratio": "66.7%", + "Start Line": 3051, + "End Line": 3064 }, { - "Function Name": "ifFull", - "Structural Impact": 2.3, + "Function Name": "windowPosToBufferPos", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 1934, + "End Line": 1945 + }, + { + "Function Name": "getTextInfoForWindowPos", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2161, + "End Line": 2168 + }, + { + "Function Name": "__init__", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1331, + "End Line": 1335 + }, + { + "Function Name": "bufferPosToRegionPos", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1884, + "End Line": 1888 + }, + { + "Function Name": "bufferPosToWindowPos", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1928, + "End Line": 1932 + }, + { + "Function Name": "handleDisplayUnavailable", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3318, + "End Line": 3330 + }, + { + "Function Name": "_get_identifiers", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 3829, + "End Line": 3841 + }, + { + "Function Name": "getParagraphStartMarker", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1264, + "End Line": 1280 + }, + { + "Function Name": "_isMultiline", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 1337, + "End Line": 1348 + }, + { + "Function Name": "_routingShouldMoveSystemCaret", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1792, + "End Line": 1804 + }, + { + "Function Name": "_get_brailleToRawPos", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1873, + "End Line": 1882 + }, + { + "Function Name": "_get_windowBrailleCells", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2144, + "End Line": 2152 + }, + { + "Function Name": "_handleEnabledDecisionFalse", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2752, + "End Line": 2761 + }, + { + "Function Name": "_get_speechEffectWhenExecuted", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 3928, + "End Line": 3936 + }, + { + "Function Name": "_get_rawToBraillePos", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1862, + "End Line": 1869 + }, + { + "Function Name": "_get_cursorWindowPos", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2133, + "End Line": 2139 + }, + { + "Function Name": "_handleAck", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3744, + "End Line": 3751 + }, + { + "Function Name": "_get_displayName", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 3843, + "End Line": 3850 + }, + { + "Function Name": "_getReadingUnit", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1514, + "End Line": 1515 + }, + { + "Function Name": "_speakOnNavigatingByUnit", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 4037, + "End Line": 4053 + }, + { + "Function Name": "shouldBeUsed", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 415, + "End Line": 423 + }, + { + "Function Name": "_setCursor", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1361, + "End Line": 1368 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2154, + "End Line": 2159 + }, + { + "Function Name": "_onSessionLockStateChanged", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2568, + "End Line": 2574 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 936, + "End Line": 940 + }, + { + "Function Name": "_set_enabled", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2747, + "End Line": 2750 + }, + { + "Function Name": "_onBrailleViewerChangedState", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2870, + "End Line": 2873 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3001, + "End Line": 3004 + }, + { + "Function Name": "getTextInfoForWindowPos", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 3006, + "End Line": 3009 + }, + { + "Function Name": "_speakOnRouting", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 4023, + "End Line": 4034 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1350, + "End Line": 1359 + }, + { + "Function Name": "update", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2980, + "End Line": 2989 + }, + { + "Function Name": "_get_regionsWithPositions", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1855, + "End Line": 1860 + }, + { + "Function Name": "_nextWindow", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2051, + "End Line": 2056 + }, + { + "Function Name": "_previousWindow", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2067, + "End Line": 2071 + }, + { + "Function Name": "_clearAll", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2534, + "End Line": 2539 + }, + { + "Function Name": "_disableDetection", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3370, + "End Line": 3374 + }, + { + "Function Name": "_get_scriptableObject", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 3852, + "End Line": 3856 + }, + { + "Function Name": "updateDisplay", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2129, + "End Line": 2131 + }, + { + "Function Name": "clearBrailleRegions", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2623, + "End Line": 2626 + }, + { + "Function Name": "scrollForward", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2991, + "End Line": 2994 + }, + { + "Function Name": "scrollBack", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2996, + "End Line": 2999 + }, + { + "Function Name": "DotFirmnessSetting", + "Structural Impact": 3.0, "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 200, - "End Line": 210 + "Start Line": 3754, + "End Line": 3764 }, { - "Function Name": "whileCont", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Function Name": "__init__", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 550, + "End Line": 588 + }, + { + "Function Name": "_get_shouldAutoTether", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2641, + "End Line": 2642 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 319 + "Start Line": 1815, + "End Line": 1828 }, { - "Function Name": "whileFull", + "Function Name": "registerAutomaticDetection", "Structural Impact": 2.3, "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 331 + "Start Line": 3542, + "End Line": 3552 }, { - "Function Name": "asmSimple", + "Function Name": "_set_displaySize", "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 151 + "Start Line": 2658, + "End Line": 2666 }, { - "Function Name": "ifSimple", + "Function Name": "__init__", "Structural Impact": 2.2, "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 212, - "End Line": 221 + "Start Line": 3511, + "End Line": 3520 }, { - "Function Name": "whileSimple", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "_set_displayDimensions", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 298, - "End Line": 307 + "Start Line": 2703, + "End Line": 2710 }, { - "Function Name": "forSimple", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "BrailleInputSetting", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 333, - "End Line": 341 + "Start Line": 3767, + "End Line": 3774 }, { - "Function Name": "paramLoc", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "HIDInputSetting", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 876, - "End Line": 880 + "Start Line": 3777, + "End Line": 3784 }, { - "Function Name": "init", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "suppressClearBrailleRegions", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 955, - "End Line": 963 + "Start Line": 2616, + "End Line": 2621 }, { - "Function Name": "paramSlice", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, + "Function Name": "_get_enabled", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 884 + "Start Line": 2715, + "End Line": 2726 }, { - "Function Name": "lessThan", - "Structural Impact": 2.1, + "Function Name": "__init__", + "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1627, - "End Line": 1629 + "Start Line": 677, + "End Line": 679 }, { - "Function Name": "init", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "clear", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1531, - "End Line": 1531 + "Start Line": 1835, + "End Line": 1844 }, { - "Function Name": "next", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "invalidateCachedFocusAncestors", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1550, - "End Line": 1550 + "Start Line": 2192, + "End Line": 2201 }, { - "Function Name": "nextIgnoreClose", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_set_table", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1567, - "End Line": 1567 + "Start Line": 2583, + "End Line": 2585 }, { - "Function Name": "nodesOverlappingIndex", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_get_displaySize", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1594, - "End Line": 1594 + "Start Line": 2647, + "End Line": 2656 }, { - "Function Name": "nodesOverlappingIndexIncludingParseErrors", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_get_source", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1622, - "End Line": 1622 + "Start Line": 3798, + "End Line": 3806 }, { - "Function Name": "nodesAtLoc", - "Structural Impact": 2.0, + "Function Name": "_get_model", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3808, + "End Line": 3817 + }, + { + "Function Name": "routeTo", + "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1653, - "End Line": 1653 + "Start Line": 653, + "End Line": 653 }, { - "Function Name": "append", - "Structural Impact": 2.0, + "Function Name": "previousLine", + "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1661, - "End Line": 1661 + "Start Line": 664, + "End Line": 664 }, { - "Function Name": "deinit", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_setCursor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1540, - "End Line": 1543 + "Start Line": 1757, + "End Line": 1758 }, { - "Function Name": "smallestEnclosingSubrange", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_setCursor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1707, - "End Line": 1710 + "Start Line": 1785, + "End Line": 1786 }, { - "Function Name": "testDeclNameAndToken", + "Function Name": "_set_windowStartPos", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1953, + "End Line": 1954 + }, + { + "Function Name": "saveWindow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2170, + "End Line": 2177 + }, + { + "Function Name": "restoreWindow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2179, + "End Line": 2186 + }, + { + "Function Name": "_get_numCells", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3575, + "End Line": 3581 + }, + { + "Function Name": "display", "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 + "Start Line": 3601, + "End Line": 3601 }, { - "Function Name": "skip", + "Function Name": "getManualPorts", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3671, + "End Line": 3677 + }, + { + "Function Name": "_get_id", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3819, + "End Line": 3823 + }, + { + "Function Name": "_get_keyNames", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3922, + "End Line": 3926 + }, + { + "Function Name": "_get_windowEndPos", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1576, - "End Line": 1578 + "Start Line": 1993, + "End Line": 1995 }, { - "Function Name": "parentNode", + "Function Name": "_get_table", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1581, - "End Line": 1583 + "Start Line": 2579, + "End Line": 2581 + }, + { + "Function Name": "_writeCellsInBackground", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2961, + "End Line": 2963 + }, + { + "Function Name": "_blink", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2976, + "End Line": 2978 + }, + { + "Function Name": "nextLine", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 671 + }, + { + "Function Name": "_isMultiline", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1751, + "End Line": 1752 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1754, + "End Line": 1755 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1764, + "End Line": 1765 + }, + { + "Function Name": "_get_windowStartPos", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1950, + "End Line": 1951 + }, + { + "Function Name": "_get_windowRawText", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2141, + "End Line": 2142 + }, + { + "Function Name": "displaySize", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2372, + "End Line": 2373 + }, + { + "Function Name": "getTether", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2628, + "End Line": 2629 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3598, + "End Line": 3599 + }, + { + "Function Name": "initialize", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3428, + "End Line": 3436 + }, + { + "Function Name": "terminate", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3444, + "End Line": 3447 + }, + { + "Function Name": "pumpAll", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3439, + "End Line": 3441 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 295, - "Sequential Logic Declarations": 177, - "Function Parameters": 56, - "Function/Method Declarations": 56, - "Class/Entity Declarations": 7, - "Defensive Programming Constructs": 120, - "Type/Safety Bypasses": 37, + "Control Flow Branches": 755, + "Sequential Logic Declarations": 495, + "Function Parameters": 172, + "Function/Method Declarations": 171, + "Class/Entity Declarations": 15, + "Defensive Programming Constructs": 108, + "Type/Safety Bypasses": 64, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 66, - "State Mutations / Variable Reassignments": 110, - "Commented-out Code (Dead Logic)": 4, - "Structured Documentation Blocks": 34, - "Unit Test Assertions": 9, - "Asynchronous/Concurrent Execution": 4, + "Exposed API / Public Exports": 122, + "State Mutations / Variable Reassignments": 617, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 98, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 8, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 8, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 2, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, + "Decorators and Annotations": 13, + "Generic Type Abstractions": 102, + "Collection Iterators / Comprehensions": 17, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 20, + "Module Dependencies (Imports)": 76, "Authorship Metadata": 0, - "Planned Work (TODOs)": 2, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 4, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 64, - "Manual Memory Allocation": 6, + "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": 3, - "Fatal Aborts & Exceptions": 132, + "Explicit Type Casts": 19, + "Fatal Aborts & Exceptions": 21, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 113, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 246, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 201, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 7, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1528, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 2, + "Immutable Data Declarations": 2, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 439, + "Event Listeners & Subscribers": 44, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 2471, + "Structural Space Indentations": 0, "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, + "Regex Execution": 1, + "Time Date Logic": 3, "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": 228, - "Design Camel Case": 0, - "Design Snake Case": 215, - "Design Pascal Case": 13, - "Design Upper Case": 0, - "Design Short Vars": 28, - "Design Long Vars": 2, + "Lazy Evaluation & Generators (O(1) Memory)": 24, + "Vectorized Math & Tensor Operations": 13, + "Core Var Decl": 570, + "Design Camel Case": 272, + "Design Snake Case": 252, + "Design Pascal Case": 7, + "Design Upper Case": 23, + "Design Short Vars": 1, + "Design Long Vars": 17, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -412735,7 +417293,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 22, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -412751,327 +417309,525 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 59, "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 5 + "Total Upstream (Absolute Fragility)": 7, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "offsets.zig", - "std" + "NVDAObjects", + "annotation", + "api", + "autoSettingsUtils.driverSetting", + "baseObject", + "bdDetect", + "brailleDisplayDrivers", + "brailleInput", + "brailleTables", + "brailleViewer", + "collections", + "config", + "config.configFlags", + "config.featureFlagEnums", + "contextlib", + "controlTypes", + "controlTypes.state", + "ctypes.wintypes", + "cursorManager", + "displayModel", + "driverHandler", + "easeOfAccess", + "editableText", + "enum", + "extensionPoints", + "globalCommands", + "gui", + "gui.guiHelper", + "hwIo", + "hwPortUtils", + "importlib", + "inputCore", + "itertools", + "keyboardHandler", + "locale", + "logHandler", + "louis", + "louisHelper", + "mathPres", + "pkgutil", + "queueHandler", + "re", + "scriptHandler", + "serial", + "speech.extensions", + "speech.speech", + "speech.types", + "textInfos", + "textUtils", + "threading", + "time", + "to", + "treeInterceptorHandler", + "typing", + "utils.security", + "winAPI.secureDesktop", + "winBindings.kernel32", + "winKernel", + "wx" ] }, - "zig/zls/print_ast.zig": { + "cpp/NVDA/core.py": { "1. Artifact Identity": { - "Filename": "print_ast.zig", - "Path": "zig/zls/print_ast.zig", - "Language": "Zig", + "Filename": "core.py", + "Path": "cpp/NVDA/core.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", + "Indentation Style": "Tabs", + "Parent Entity": "Enum, wx.App, wx.Timer", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1817.01, - "Y": -155.75, - "Z": 8649.07 + "X": 4713.67, + "Y": -44.49, + "Z": 5951.19 }, "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": 950, - "Coding LOC": 897, - "Documentation LOC": 4, - "Structural Magnitude": 525.44, - "Control Flow Ratio": "81.4%", + "Total LOC": 1198, + "Coding LOC": 826, + "Documentation LOC": 183, + "Structural Magnitude": 409.92, + "Control Flow Ratio": "39.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.494 + "Raw Cognitive Density": 0.38 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.13%", - "Error & Exception Exposure": "12.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.46%", - "API Exposure": "0.75%", - "Concurrency Exposure": "16.07%", - "State Flux Exposure": "8.49%", + "Cognitive Load Exposure": "14.73%", + "Error & Exception Exposure": "60.58%", + "Tech Debt Exposure": "10.0%", + "Testing Exposure": "80.0%", + "API Exposure": "1.73%", + "Concurrency Exposure": "26.64%", + "State Flux Exposure": "68.91%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.16%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "renderNode", - "Structural Impact": 256.0, - "Lines of Code (LOC)": 444, - "Control Flow Branches": 134, - "Input Parameters": 2, - "Control Flow Ratio": "87.6%", - "Start Line": 79, - "End Line": 522 - }, - { - "Function Name": "renderOptField", - "Structural Impact": 25.6, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 10, - "Input Parameters": 4, - "Control Flow Ratio": "90.9%", - "Start Line": 561, - "End Line": 580 + "Function Name": "main", + "Structural Impact": 79.1, + "Lines of Code (LOC)": 462, + "Control Flow Branches": 55, + "Input Parameters": 0, + "Control Flow Ratio": "43.0%", + "Start Line": 672, + "End Line": 1133 }, { - "Function Name": "renderOptTokenField", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 590, - "End Line": 608 + "Function Name": "doStartupDialogs", + "Structural Impact": 21.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 16, + "Input Parameters": 0, + "Control Flow Ratio": "51.6%", + "Start Line": 125, + "End Line": 209 }, { - "Function Name": "renderNodeSliceField", - "Structural Impact": 18.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "88.9%", - "Start Line": 610, - "End Line": 627 + "Function Name": "restart", + "Structural Impact": 13.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 281, + "End Line": 308 }, { - "Function Name": "renderToFile", - "Structural Impact": 18.7, - "Lines of Code (LOC)": 16, + "Function Name": "Notify", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 34, "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "58.3%", - "Start Line": 14, - "End Line": 29 + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 991, + "End Line": 1024 }, { - "Function Name": "main", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 34, + "Function Name": "_closeAllWindows", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 52, "Control Flow Branches": 9, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "56.2%", - "Start Line": 845, - "End Line": 878 + "Start Line": 496, + "End Line": 547 }, { - "Function Name": "moveSourceCursor", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 25, + "Function Name": "computeRestartCLIArgs", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 20, "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 629, - "End Line": 653 + "Input Parameters": 1, + "Control Flow Ratio": "58.3%", + "Start Line": 219, + "End Line": 238 }, { - "Function Name": "renderTrailing", + "Function Name": "resetConfiguration", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "19.0%", + "Start Line": 311, + "End Line": 403 + }, + { + "Function Name": "requestPump", "Structural Impact": 10.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 529, - "End Line": 539 + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1150, + "End Line": 1169 }, { - "Function Name": "renderOptItem", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 6, + "Function Name": "callLater", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "42.9%", + "Start Line": 1176, + "End Line": 1191 + }, + { + "Function Name": "_showAddonsErrors", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 47, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 545, - "End Line": 550 + "Input Parameters": 0, + "Control Flow Ratio": "62.5%", + "Start Line": 76, + "End Line": 122 }, { - "Function Name": "renderOptNode", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 7, + "Function Name": "triggerNVDAExit", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 71, - "End Line": 77 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 470, + "End Line": 493 }, { - "Function Name": "renderCustomField", + "Function Name": "_setUpWxApp", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 57, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 613, + "End Line": 669 + }, + { + "Function Name": "getWxLangOrNone", "Structural Impact": 6.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 552, - "End Line": 555 + "Lines of Code (LOC)": 18, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "62.5%", + "Start Line": 422, + "End Line": 439 }, { - "Function Name": "nodeTagName", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 188, - "Control Flow Branches": 1, + "Function Name": "onEndSession", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 653, + "End Line": 665 + }, + { + "Function Name": "processRequest", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 981, + "End Line": 989 + }, + { + "Function Name": "restartUnsafely", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 3, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 656, - "End Line": 843 + "Start Line": 241, + "End Line": 278 }, { - "Function Name": "renderToWriter", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 3, + "Function Name": "_terminate", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1136, + "End Line": 1143 + }, + { + "Function Name": "_doLoseFocus", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 601, + "End Line": 610 + }, + { + "Function Name": "__getattr__", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 31, - "End Line": 42 + "Start Line": 39, + "End Line": 49 }, { - "Function Name": "renderRoot", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, + "Function Name": "_setInitialFocus", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "42.9%", + "Start Line": 406, + "End Line": 419 + }, + { + "Function Name": "onResult", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 66, - "End Line": 69 + "Control Flow Ratio": "40.0%", + "Start Line": 198, + "End Line": 205 }, { - "Function Name": "newline", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, + "Function Name": "queueRequest", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 524, - "End Line": 527 + "Control Flow Ratio": "50.0%", + "Start Line": 972, + "End Line": 979 }, { - "Function Name": "renderTokenField", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, + "Function Name": "_handleNVDAModuleCleanupBeforeGUIExit", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 582, - "End Line": 588 + "Input Parameters": 0, + "Control Flow Ratio": "12.5%", + "Start Line": 550, + "End Line": 574 }, { - "Function Name": "renderField", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, + "Function Name": "_doShutdown", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 557, - "End Line": 559 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 463, + "End Line": 467 }, { - "Function Name": "format", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, + "Function Name": "onQueryEndSession", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 52, - "End Line": 54 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 646, + "End Line": 649 }, { - "Function Name": "renderItem", - "Structural Impact": 3.6, + "Function Name": "OnAssert", + "Structural Impact": 2.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 541, - "End Line": 543 + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 627, + "End Line": 629 }, { - "Function Name": "fmt", + "Function Name": "_startNewInstance", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 460 + }, + { + "Function Name": "_callLaterExec", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1194, + "End Line": 1197 + }, + { + "Function Name": "_initializeObjectCaches", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 598 + }, + { + "Function Name": "InitLocale", "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 631, + "End Line": 640 + }, + { + "Function Name": "handleReplaceCLIArg", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 135 + }, + { + "Function Name": "__bool__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 69 + }, + { + "Function Name": "_doPostNvdaStartupAction", + "Structural Impact": 1.1, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 1053, + "End Line": 1055 + }, + { + "Function Name": "isMainThread", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1146, + "End Line": 1147 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 215, - "Sequential Logic Declarations": 49, - "Function Parameters": 21, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 193, - "Type/Safety Bypasses": 15, + "Control Flow Branches": 141, + "Sequential Logic Declarations": 218, + "Function Parameters": 34, + "Function/Method Declarations": 34, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 48, + "Type/Safety Bypasses": 30, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 11, - "State Mutations / Variable Reassignments": 48, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 26, + "State Mutations / Variable Reassignments": 66, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 4, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 12, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 6, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Global State Dependencies": 3, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 18, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 126, "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, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 22, - "Manual Memory Allocation": 1, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 28, + "Fatal Aborts & Exceptions": 11, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 46, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 95, - "Resource Deallocation & Cleanup": 6, - "Private / Encapsulated Scopes": 95, - "Event Listeners & Subscribers": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 1, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 114, + "Event Listeners & Subscribers": 8, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 874, + "Structural Tab Indentations": 771, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 4, "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, @@ -413079,14 +417835,14 @@ "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": 81, - "Design Camel Case": 1, - "Design Snake Case": 72, - "Design Pascal Case": 8, - "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 0, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 88, + "Design Camel Case": 35, + "Design Snake Case": 44, + "Design Pascal Case": 1, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -413112,121 +417868,440 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 74, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 10, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "std", - "testing.zig" + "IAccessibleHandler", + "JABHandler", + "NVDAHelper", + "NVDAObjects", + "NVDAState", + "UIAHandler", + "_remoteClient", + "addonHandler", + "addonStore", + "api", + "appModuleHandler", + "argsParsing", + "audio", + "audioDucking", + "baseObject", + "bdDetect", + "braille", + "brailleInput", + "brailleTables", + "brailleViewer", + "buildVersion", + "characterProcessing", + "comtypes", + "config", + "configobj", + "dataclasses", + "displayModel", + "enum", + "eventHandler", + "extensionPoints", + "garbageHandler", + "globalPluginHandler", + "globalVars", + "gui", + "gui.installerGui", + "gui.message", + "gui.settingsDialogs", + "gui.startupDialogs", + "hwIo", + "inputCore", + "keyboardHandler", + "languageHandler", + "logHandler", + "mathPres", + "mouseHandler", + "nvwave", + "os", + "queueHandler", + "screenCurtain", + "shellapi", + "socket", + "speech", + "speechDictHandler", + "subprocess", + "sys", + "threading", + "time", + "tones", + "touchHandler", + "treeInterceptorHandler", + "typing", + "updateCheck", + "utils", + "utils.security", + "vision", + "watchdog", + "winAPI", + "winAPI.dpiAwareness", + "winAPI.messageWindow", + "winBindings.kernel32", + "winConsoleHandler", + "winUser", + "winVersion", + "wx" ] - } - } - }, - "cpp/NVDA": { - "Directory Group Magnitude": 7618.44, - "File Count": 12, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "66.7%", - "Static: Literature & Documentation": "33.3%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "32.3%", - "Error & Exception Exposure": "45.9%", - "Tech Debt Exposure": "32.23%", - "Testing Exposure": "40.42%", - "API Exposure": "2.51%", - "Concurrency Exposure": "3.35%", - "State Flux Exposure": "55.39%", - "Commented Logic Exposure": "0.81%", - "Specification Exposure": "66.67%", - "Instability Exposure": "33.33%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.24%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cpp/NVDA/CODE_OF_CONDUCT.md": { + }, + "cpp/NVDA/espeak.py": { "1. Artifact Identity": { - "Filename": "CODE_OF_CONDUCT.md", - "Path": "cpp/NVDA/CODE_OF_CONDUCT.md", - "Language": "Markdown", + "Filename": "espeak.py", + "Path": "cpp/NVDA/espeak.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", + "Parent Entity": "SynthDriver", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4629.5, - "Y": -1.04, - "Z": 5094.49 + "X": 3832.94, + "Y": 3.64, + "Z": 5596.96 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 83, - "Coding LOC": 0, - "Documentation LOC": 58, - "Structural Magnitude": 1.66, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 497, + "Coding LOC": 269, + "Documentation LOC": 185, + "Structural Magnitude": 222.48, + "Control Flow Ratio": "41.5%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.042 }, "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": "67.75%", + "Error & Exception Exposure": "77.07%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "80.0%", + "API Exposure": "0.34%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.96%", + "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": [], + "5. Function Analysis": [ + { + "Function Name": "speak", + "Structural Impact": 44.8, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 23, + "Input Parameters": 2, + "Control Flow Ratio": "69.7%", + "Start Line": 323, + "End Line": 386 + }, + { + "Function Name": "_normalizeLangCommand", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "84.6%", + "Start Line": 252, + "End Line": 294 + }, + { + "Function Name": "_handleLangChangeCommand", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 296, + "End Line": 318 + }, + { + "Function Name": "_set_voice", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 464, + "End Line": 477 + }, + { + "Function Name": "_onIndexReached", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 479, + "End Line": 483 + }, + { + "Function Name": "_set_variant", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 491, + "End Line": 493 + }, + { + "Function Name": "_get_voice", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 454, + "End Line": 462 + }, + { + "Function Name": "_set_rateBoost", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 401, + "End Line": 406 + }, + { + "Function Name": "_set_rate", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "_getAvailableVoices", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 443, + "End Line": 452 + }, + { + "Function Name": "_get_rate", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 408, + "End Line": 412 + }, + { + "Function Name": "_getAvailableVariants", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 495, + "End Line": 496 + }, + { + "Function Name": "_processText", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 250 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 214, + "End Line": 224 + }, + { + "Function Name": "_set_pitch", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 425, + "End Line": 427 + }, + { + "Function Name": "_set_inflection", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 433, + "End Line": 435 + }, + { + "Function Name": "pause", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 391, + "End Line": 392 + }, + { + "Function Name": "_set_volume", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 440, + "End Line": 441 + }, + { + "Function Name": "_get_pitch", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 423 + }, + { + "Function Name": "_get_inflection", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 431 + }, + { + "Function Name": "check", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 211, + "End Line": 212 + }, + { + "Function Name": "_get_language", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 226, + "End Line": 227 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 388, + "End Line": 389 + }, + { + "Function Name": "_get_rateBoost", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 399 + }, + { + "Function Name": "_get_volume", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 438 + }, + { + "Function Name": "terminate", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 486 + }, + { + "Function Name": "_get_variant", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 488, + "End Line": 489 + } + ], "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, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 51, + "Sequential Logic Declarations": 72, + "Function Parameters": 28, + "Function/Method Declarations": 27, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 13, + "Type/Safety Bypasses": 4, "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": 2, + "Exposed API / Public Exports": 6, + "State Mutations / Variable Reassignments": 69, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 3, "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, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 3, "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, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -413237,17 +418312,17 @@ "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": 4, + "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, + "Private / Encapsulated Scopes": 104, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 256, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413264,19 +418339,19 @@ "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": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 50, + "Design Camel Case": 22, + "Design Snake Case": 23, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 3, + "Design Short Vars": 1, "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": 11, + "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -413297,89 +418372,120 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + ".", + "collections", + "languageHandler", + "logHandler", + "os", + "speech.commands", + "speech.types", + "synthDriverHandler", + "typing" + ] }, - "cpp/NVDA/readme.md": { + "cpp/NVDA/ensureuv.ps1": { "1. Artifact Identity": { - "Filename": "readme.md", - "Path": "cpp/NVDA/readme.md", - "Language": "Markdown", + "Filename": "ensureuv.ps1", + "Path": "cpp/NVDA/ensureuv.ps1", + "Language": "Powershell", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .ps1)" }, "2. Topological Coordinates": { - "X": 4556.63, - "Y": -83.53, - "Z": 6056.42 + "X": 4209.4, + "Y": -92.37, + "Z": 6161.41 }, "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": 40, - "Coding LOC": 0, - "Documentation LOC": 27, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 119, + "Coding LOC": 105, + "Documentation LOC": 1, + "Structural Magnitude": 70.0, + "Control Flow Ratio": "78.4%", "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.914 }, "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": "65.86%", + "Error & Exception Exposure": "82.98%", + "Tech Debt Exposure": "47.03%", + "Testing Exposure": "2.48%", + "API Exposure": "2.9%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.99%", + "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": [], + "5. Function Analysis": [ + { + "Function Name": "Install-Uv", + "Structural Impact": 34.7, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 21, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 16, + "End Line": 86 + }, + { + "Function Name": "Invoke-Uv", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 14 + } + ], "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, + "Control Flow Branches": 29, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, "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, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 31, "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, + "Closures and Anonymous Functions": 21, + "Global State Dependencies": 4, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -413392,10 +418498,10 @@ "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, + "Structured Telemetry & Logging": 4, + "Ad-hoc Print / Debug Statements": 12, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -413404,14 +418510,14 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 89, "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, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -413430,11 +418536,11 @@ "Design Short Vars": 0, "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": 5, - "Hyperlinked Literature References": 16, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -413447,92 +418553,185 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "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)": 7, + "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": [ - "./.github/CONTRIBUTING.md", - "./copying.txt", - "./projectDocs/community/expertsList.md", - "./projectDocs/community/readme.md", - "./projectDocs/issues/readme.md", - "./projectDocs/product_vision.md", - "CODE_OF_CONDUCT.md" - ] + "9. Extracted Dependencies": [] }, - "cpp/NVDA/contributors.txt": { + "cpp/NVDA/inProcess.cpp": { "1. Artifact Identity": { - "Filename": "contributors.txt", - "Path": "cpp/NVDA/contributors.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "inProcess.cpp", + "Path": "cpp/NVDA/inProcess.cpp", + "Language": "Cpp", + "Architect": "2006-2010 NVDA contributers", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 3801.96, - "Y": -53.3, - "Z": 5662.35 + "X": 4840.47, + "Y": 3.08, + "Z": 5288.74 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 243, - "Coding LOC": 0, - "Documentation LOC": 241, - "Structural Magnitude": 4.86, - "Control Flow Ratio": "0.0%", + "Total LOC": 196, + "Coding LOC": 153, + "Documentation LOC": 27, + "Structural Magnitude": 185.46, + "Control Flow Ratio": "51.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.966 }, "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": "70.32%", + "Error & Exception Exposure": "97.17%", + "Tech Debt Exposure": "23.28%", + "Testing Exposure": "80.0%", + "API Exposure": "8.72%", + "Concurrency Exposure": "0.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": [], + "5. Function Analysis": [ + { + "Function Name": "unregisterWindowsHook", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "70.0%", + "Start Line": 96, + "End Line": 113 + }, + { + "Function Name": "inProcess_getMessageHook", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 116, + "End Line": 134 + }, + { + "Function Name": "execInThread", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 160, + "End Line": 195 + }, + { + "Function Name": "registerWindowsHook", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 84, + "End Line": 94 + }, + { + "Function Name": "inProcess_winEventCallback", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 150, + "End Line": 158 + }, + { + "Function Name": "inProcess_callWndProcHook", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 137, + "End Line": 147 + }, + { + "Function Name": "unregisterWinEventHook", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 72, + "End Line": 82 + }, + { + "Function Name": "inProcess_initialize", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 54 + }, + { + "Function Name": "registerWinEventHook", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 67, + "End Line": 70 + }, + { + "Function Name": "inProcess_terminate", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 56, + "End Line": 65 + } + ], "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, + "Control Flow Branches": 28, + "Sequential Logic Declarations": 26, + "Function Parameters": 15, + "Function/Method Declarations": 10, "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, + "Exposed API / Public Exports": 9, + "State Mutations / Variable Reassignments": 98, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -413544,17 +418743,17 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 16, + "Authorship Metadata": 1, "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, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Preprocessor Macros": 1, + "Pointer Arithmetic & Addressing": 23, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -413569,7 +418768,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 109, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413587,12 +418786,12 @@ "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": 18, + "Design Camel Case": 3, + "Design Snake Case": 14, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 11, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -413619,41 +418818,58 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 16, "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": [ + "IA2Support.h", + "common/log.h", + "cstdio", + "gdiHooks.h", + "ia2LiveRegions.h", + "ime.h", + "inProcess.h", + "inputLangChange.h", + "list", + "map", + "nvdaHelperRemote.h", + "set", + "tsf.h", + "typedCharacter.h", + "windows.h", + "winword.h" + ] }, - "cpp/NVDA/copying.txt": { + "cpp/NVDA/nvdaControllerInternal.cpp": { "1. Artifact Identity": { - "Filename": "copying.txt", - "Path": "cpp/NVDA/copying.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "nvdaControllerInternal.cpp", + "Path": "cpp/NVDA/nvdaControllerInternal.cpp", + "Language": "Cpp", + "Architect": "2006-2025 NV Access Limited, rui Batista, Google LLC, Christopher Toth", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 4927.9, - "Y": -49.26, - "Z": 5699.92 + "X": 4050.97, + "Y": -5.82, + "Z": 5053.12 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1034, - "Coding LOC": 0, - "Documentation LOC": 849, - "Structural Magnitude": 20.68, + "Total LOC": 92, + "Coding LOC": 61, + "Documentation LOC": 13, + "Structural Magnitude": 30.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -413662,27 +418878,178 @@ "Raw Cognitive Density": 0.0 }, "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": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.59%", + "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": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "nvdaControllerInternal_displayModelTextChangeNotify", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 41 + }, + { + "Function Name": "nvdaControllerInternal_drawFocusRectNotify", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 79, + "End Line": 81 + }, + { + "Function Name": "nvdaControllerInternal_inputCompositionUpdate", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 + }, + { + "Function Name": "nvdaControllerInternal_inputLangChangeNotify", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 25 + }, + { + "Function Name": "nvdaControllerInternal_logMessage", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "nvdaControllerInternal_inputCandidateListUpdate", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 51 + }, + { + "Function Name": "nvdaControllerInternal_inputConversionModeUpdate", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 61 + }, + { + "Function Name": "nvdaControllerInternal_vbufChangeNotify", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 64, + "End Line": 66 + }, + { + "Function Name": "nvdaControllerInternal_reportLiveRegion", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + }, + { + "Function Name": "nvdaControllerInternal_requestRegistration", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 20 + }, + { + "Function Name": "nvdaControllerInternal_typedCharacterNotify", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 30 + }, + { + "Function Name": "nvdaControllerInternal_IMEOpenStatusUpdate", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 56 + }, + { + "Function Name": "nvdaControllerInternal_installAddonPackageFromPath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 71 + }, + { + "Function Name": "nvdaControllerInternal_handleRemoteURL", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 76 + }, + { + "Function Name": "nvdaControllerInternal_openConfigDirectory", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 91 + } + ], "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": 15, + "Function Parameters": 14, + "Function/Method Declarations": 15, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -413702,8 +419069,8 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -413711,7 +419078,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 16, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -413721,12 +419088,12 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 70, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 15, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413752,7 +419119,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -413776,30 +419143,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": [ + "local/nvdaControllerInternal.h" + ] }, - "cpp/NVDA/__init__.py": { + "cpp/NVDA/storage.cpp": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "cpp/NVDA/__init__.py", - "Language": "Python", - "Architect": "Unknown Architect", + "Filename": "storage.cpp", + "Path": "cpp/NVDA/storage.cpp", + "Language": "Cpp", + "Architect": "2006-2022 NVDA contributors", "Indentation Style": "Tabs", - "Parent Entity": "textInfos.TextInfo, Window, EditableTextBase, UIA", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 4420.37, - "Y": -37.12, - "Z": 5172.8 + "X": 4073.22, + "Y": -11.18, + "Z": 5862.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -413808,5910 +419176,542 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2794, - "Coding LOC": 2236, - "Documentation LOC": 316, - "Structural Magnitude": 1967.82, - "Control Flow Ratio": "56.6%", + "Total LOC": 1247, + "Coding LOC": 1115, + "Documentation LOC": 62, + "Structural Magnitude": 2122.1, + "Control Flow Ratio": "71.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.762 + "Raw Cognitive Density": 1.427 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "43.67%", - "Error & Exception Exposure": "54.34%", - "Tech Debt Exposure": "97.75%", + "Cognitive Load Exposure": "90.39%", + "Error & Exception Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "1.64%", + "API Exposure": "11.58%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.91%", - "Commented Logic Exposure": "4.89%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.43%", + "Documentation Exposure": "49.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_getTextWithFieldsForUIARange", - "Structural Impact": 297.5, - "Lines of Code (LOC)": 310, - "Control Flow Branches": 93, - "Input Parameters": 8, - "Control Flow Ratio": "86.1%", - "Start Line": 720, - "End Line": 1029 - }, - { - "Function Name": "findOverlayClasses", - "Structural Impact": 173.0, - "Lines of Code (LOC)": 273, - "Control Flow Branches": 91, - "Input Parameters": 2, - "Control Flow Ratio": "71.1%", - "Start Line": 1194, - "End Line": 1466 + "Function Name": "VBufStorage_buffer_t::getLineOffsets", + "Structural Impact": 136.9, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 52, + "Input Parameters": 5, + "Control Flow Ratio": "94.5%", + "Start Line": 1066, + "End Line": 1207 }, { - "Function Name": "_getFormatFieldAtRange", - "Structural Impact": 74.0, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 30, - "Input Parameters": 4, - "Control Flow Ratio": "88.2%", - "Start Line": 351, - "End Line": 444 + "Function Name": "VBufStorage_buffer_t::findNodeByAttributes", + "Structural Impact": 105.1, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 37, + "Input Parameters": 6, + "Control Flow Ratio": "84.1%", + "Start Line": 973, + "End Line": 1064 }, { - "Function Name": "_get_states", - "Structural Impact": 58.7, - "Lines of Code (LOC)": 100, - "Control Flow Branches": 37, - "Input Parameters": 1, - "Control Flow Ratio": "94.9%", - "Start Line": 1907, - "End Line": 2006 + "Function Name": "VBufStorage_fieldNode_t::nextNodeInTree", + "Structural Impact": 59.4, + "Lines of Code (LOC)": 68, + "Control Flow Branches": 27, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 57, + "End Line": 124 }, { - "Function Name": "_getTextWithFields_text", - "Structural Impact": 54.5, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 22, - "Input Parameters": 4, - "Control Flow Ratio": "91.7%", - "Start Line": 654, - "End Line": 715 + "Function Name": "VBufStorage_buffer_t::insertNode", + "Structural Impact": 57.5, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 26, + "Input Parameters": 3, + "Control Flow Ratio": "76.5%", + "Start Line": 445, + "End Line": 515 }, { - "Function Name": "__init__", - "Structural Impact": 52.2, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 21, - "Input Parameters": 4, - "Control Flow Ratio": "95.5%", - "Start Line": 468, - "End Line": 527 + "Function Name": "VBufStorage_buffer_t::unlinkFieldNode", + "Structural Impact": 48.8, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 26, + "Input Parameters": 2, + "Control Flow Ratio": "89.7%", + "Start Line": 766, + "End Line": 806 }, { - "Function Name": "_getFormatFieldAnnotationTypes", - "Structural Impact": 39.8, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 16, - "Input Parameters": 4, - "Control Flow Ratio": "94.1%", - "Start Line": 305, - "End Line": 340 + "Function Name": "VBufStorage_buffer_t::replaceSubtrees", + "Structural Impact": 48.6, + "Lines of Code (LOC)": 123, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "74.4%", + "Start Line": 642, + "End Line": 764 }, { - "Function Name": "kwargsFromSuper", - "Structural Impact": 34.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 13, - "Input Parameters": 4, - "Control Flow Ratio": "68.4%", - "Start Line": 1469, - "End Line": 1521 + "Function Name": "VBufStorage_fieldNode_t::getTextInRange", + "Structural Impact": 26.1, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 9, + "Input Parameters": 5, + "Control Flow Ratio": "81.8%", + "Start Line": 274, + "End Line": 306 }, { - "Function Name": "_getFormatFieldIndent", - "Structural Impact": 33.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 15, + "Function Name": "VBufStorage_buffer_t::addTextFieldNode", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "93.8%", - "Start Line": 233, - "End Line": 267 + "Control Flow Ratio": "76.9%", + "Start Line": 585, + "End Line": 621 }, { - "Function Name": "__init__", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 1527, - "End Line": 1561 + "Function Name": "VBufStorage_fieldNode_t::generateAttributesForMarkupOpeningTag", + "Structural Impact": 21.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "90.0%", + "Start Line": 225, + "End Line": 258 }, { - "Function Name": "_get_devInfo", - "Structural Impact": 19.3, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "61.1%", - "Start Line": 1759, - "End Line": 1804 + "Function Name": "outputEscapedAttribute", + "Structural Impact": 21.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 130, + "End Line": 149 }, { - "Function Name": "_getControlFieldForUIAObject", - "Structural Impact": 17.7, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 5, + "Function Name": "VBufStorage_buffer_t::locateControlFieldNodeAtOffset", + "Structural Impact": 20.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 7, "Input Parameters": 5, - "Control Flow Ratio": "55.6%", - "Start Line": 585, - "End Line": 645 + "Control Flow Ratio": "77.8%", + "Start Line": 887, + "End Line": 907 }, { - "Function Name": "_prefetchUIACacheForPropertyIDs", - "Structural Impact": 16.9, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, + "Function Name": "VBufStorage_fieldNode_t::matchAttributes", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 1163, - "End Line": 1189 + "Control Flow Ratio": "69.2%", + "Start Line": 151, + "End Line": 191 }, { - "Function Name": "event_UIA_notification", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 30, + "Function Name": "VBufStorage_textFieldNode_t::getTextInRange", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 22, "Control Flow Branches": 5, "Input Parameters": 5, - "Control Flow Ratio": "71.4%", - "Start Line": 2430, - "End Line": 2459 - }, - { - "Function Name": "find", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "55.6%", - "Start Line": 155, - "End Line": 184 + "Control Flow Ratio": "83.3%", + "Start Line": 402, + "End Line": 423 }, { - "Function Name": "_getFormatFieldSuperscriptsAndSubscripts", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 16, + "Function Name": "VBufStorage_buffer_t::locateTextFieldNodeAtOffset", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 21, "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "85.7%", - "Start Line": 211, - "End Line": 226 - }, - { - "Function Name": "move", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 1062, - "End Line": 1086 - }, - { - "Function Name": "_get_positionInfo", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2321, - "End Line": 2343 + "Control Flow Ratio": "60.0%", + "Start Line": 865, + "End Line": 885 }, { - "Function Name": "_get_positionInfo", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 25, + "Function Name": "VBufStorage_buffer_t::isFieldNodeAtOffset", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 21, "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 2549, - "End Line": 2573 + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 843, + "End Line": 863 }, { - "Function Name": "event_UIA_dropTargetEffect", - "Structural Impact": 12.5, + "Function Name": "VBufStorage_buffer_t::addControlFieldNode", + "Structural Impact": 13.2, "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 2468, - "End Line": 2490 - }, - { - "Function Name": "doAction", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 14, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 2293, - "End Line": 2306 - }, - { - "Function Name": "_get_role", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1838, - "End Line": 1857 - }, - { - "Function Name": "event_stateChange", - "Structural Impact": 10.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 2629, - "End Line": 2647 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 561, + "End Line": 583 }, { - "Function Name": "_getFormatFieldFontAttributes", - "Structural Impact": 10.7, + "Function Name": "VBufStorage_buffer_t::getTextInRange", + "Structural Impact": 11.8, "Lines of Code (LOC)": 13, "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 197, - "End Line": 209 + "Input Parameters": 4, + "Control Flow Ratio": "57.1%", + "Start Line": 959, + "End Line": 971 }, { - "Function Name": "compareEndPoints", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 10, + "Function Name": "VBufStorage_fieldNode_t::locateTextFieldNodeAtOffset", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 17, "Control Flow Branches": 4, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1105, - "End Line": 1114 + "Start Line": 207, + "End Line": 223 }, { - "Function Name": "setEndPoint", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 10, + "Function Name": "VBufStorage_buffer_t::getSelectionOffsets", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 4, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "80.0%", - "Start Line": 1116, - "End Line": 1125 - }, - { - "Function Name": "_get_parent", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 2040, - "End Line": 2058 - }, - { - "Function Name": "_getReadOnlyState", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2008, - "End Line": 2023 + "Start Line": 932, + "End Line": 940 }, { - "Function Name": "_getUIAPattern", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 4, + "Function Name": "VBufStorage_buffer_t::addTextFieldNode", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 18, "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 1599, - "End Line": 1602 + "Input Parameters": 3, + "Control Flow Ratio": "37.5%", + "Start Line": 623, + "End Line": 640 }, { - "Function Name": "_getFormatFieldCulture", + "Function Name": "VBufStorage_buffer_t::getIdentifierFromControlFieldNode", "Structural Impact": 8.4, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 9, "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "60.0%", - "Start Line": 342, - "End Line": 349 - }, - { - "Function Name": "_get_controllerFor", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2369, - "End Line": 2394 - }, - { - "Function Name": "_get_UIAElementAtStart", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 547, - "End Line": 570 + "Start Line": 922, + "End Line": 930 }, { - "Function Name": "correctAPIForRelation", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 5, + "Function Name": "VBufStorage_buffer_t::removeFieldNode", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 2034, - "End Line": 2038 + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 808, + "End Line": 819 }, { - "Function Name": "isDescendantOf", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 20, + "Function Name": "VBufStorage_buffer_t::setSelectionOffsets", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 10, "Control Flow Branches": 3, "Input Parameters": 2, "Control Flow Ratio": "60.0%", - "Start Line": 2348, - "End Line": 2367 - }, - { - "Function Name": "_get_keyboardShortcut", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1874, - "End Line": 1887 + "Start Line": 942, + "End Line": 951 }, { - "Function Name": "_get_rowHeaderText", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2170, - "End Line": 2184 + "Function Name": "VBufStorage_buffer_t::addReferenceNodeToBuffer", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1231, + "End Line": 1240 }, { - "Function Name": "_get_columnHeaderText", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 4, - "Input Parameters": 1, + "Function Name": "VBufStorage_buffer_t::isDescendantNode", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 2198, - "End Line": 2212 + "Start Line": 1213, + "End Line": 1225 }, { - "Function Name": "_get_TextInfo", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 1742, - "End Line": 1754 + "Function Name": "VBufStorage_buffer_t::addControlFieldNode", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 548, + "End Line": 559 }, { - "Function Name": "_get__level", - "Structural Impact": 7.6, + "Function Name": "VBufStorage_buffer_t::getFieldNodeOffsets", + "Structural Impact": 4.5, "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2509, - "End Line": 2518 - }, - { - "Function Name": "_get_description", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2537, - "End Line": 2543 + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 832, + "End Line": 841 }, { - "Function Name": "getActionName", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_buffer_t::getControlFieldNodeWithIdentifier", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 2286, - "End Line": 2291 + "Control Flow Ratio": "33.3%", + "Start Line": 909, + "End Line": 920 }, { - "Function Name": "_getUIACacheablePropertyValue", - "Structural Impact": 6.7, + "Function Name": "VBufStorage_fieldNode_t::calculateOffsetInTree", + "Structural Impact": 3.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1149, - "End Line": 1161 - }, - { - "Function Name": "_getFormatFieldHeadings", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 3, + "Input Parameters": 0, "Control Flow Ratio": "66.7%", - "Start Line": 295, - "End Line": 303 - }, - { - "Function Name": "_get_selectionContainer", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 1673, - "End Line": 1686 + "Start Line": 193, + "End Line": 205 }, { - "Function Name": "_get_children", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_buffer_t::deleteSubtree", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2124, - "End Line": 2137 + "Control Flow Ratio": "50.0%", + "Start Line": 526, + "End Line": 537 }, { - "Function Name": "_getFormatFieldColor", - "Structural Impact": 6.3, + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator<", + "Structural Impact": 3.2, "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 275, - "End Line": 281 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 39, + "End Line": 45 }, { - "Function Name": "_get_labeledBy", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_fieldNode_t::getAttribute", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 2396, - "End Line": 2407 + "Control Flow Ratio": "25.0%", + "Start Line": 327, + "End Line": 334 }, { - "Function Name": "_get_value", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator!=", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2782, - "End Line": 2793 + "Control Flow Ratio": "50.0%", + "Start Line": 47, + "End Line": 49 }, { - "Function Name": "_getFormatFieldLineSpacing", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 283, - "End Line": 287 + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator==", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 51, + "End Line": 53 }, { - "Function Name": "_getFormatFieldLinks", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 289, - "End Line": 293 + "Function Name": "VBufStorage_buffer_t::isNodeInBuffer", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1227, + "End Line": 1229 }, { - "Function Name": "_get__shouldAllowUIALiveRegionChangeEvent", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, + "Function Name": "VBufStorage_fieldNode_t::getAttributesString", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 1587, - "End Line": 1597 + "Start Line": 336, + "End Line": 345 }, { - "Function Name": "_getIndentValueDisplayString", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "VBufStorage_buffer_t::clearBuffer", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 446, - "End Line": 463 + "Start Line": 821, + "End Line": 830 }, { - "Function Name": "_get_presentationType", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2025, - "End Line": 2032 + "Function Name": "VBufStorage_fieldNode_t::generateMarkupOpeningTag", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 260, + "End Line": 266 }, { - "Function Name": "event_UIA_window_windowOpen", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2669, - "End Line": 2677 + "Function Name": "VBufStorage_controlFieldNode_t::generateAttributesForMarkupOpeningTag", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 364 }, { - "Function Name": "_get_focusRedirect", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, + "Function Name": "VBufStorage_buffer_t::getTextLength", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 2753, - "End Line": 2761 + "Start Line": 953, + "End Line": 957 }, { - "Function Name": "_get_hasIrrelevantLocation", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2314, - "End Line": 2319 + "Function Name": "VBufStorage_controlFieldNode_t::VBufStorage_controlFieldNode_t", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 373, + "End Line": 375 }, { - "Function Name": "_get_name", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2739, - "End Line": 2745 + "Function Name": "VBufStorage_buffer_t::hasContent", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1209, + "End Line": 1211 }, { - "Function Name": "_getBoundingRectsFromUIARange", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::addAttribute", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1040, - "End Line": 1053 + "Control Flow Ratio": "0.0%", + "Start Line": 321, + "End Line": 325 }, { - "Function Name": "collapse", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_controlFieldNode_t::getIdentifier", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1091, - "End Line": 1103 + "Control Flow Ratio": "0.0%", + "Start Line": 377, + "End Line": 381 }, { - "Function Name": "__eq__", - "Structural Impact": 5.5, + "Function Name": "VBufStorage_textFieldNode_t::locateTextFieldNodeAtOffset", + "Structural Impact": 2.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 529, - "End Line": 534 + "Control Flow Ratio": "0.0%", + "Start Line": 391, + "End Line": 396 }, { - "Function Name": "_isEqual", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::VBufStorage_fieldNode_t", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1563, - "End Line": 1569 + "Control Flow Ratio": "0.0%", + "Start Line": 313, + "End Line": 315 }, { - "Function Name": "_get_UIAAnnotationObjects", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1691, - "End Line": 1704 + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::VBufStorage_controlFieldNodeIdentifier_t", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 37 }, { - "Function Name": "_get_previous", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_buffer_t::forgetControlFieldNode", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2060, - "End Line": 2071 + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 443 }, { - "Function Name": "_get_next", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_buffer_t::deleteNode", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2076, - "End Line": 2087 + "Control Flow Ratio": "0.0%", + "Start Line": 517, + "End Line": 524 }, { - "Function Name": "_get_firstChild", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::generateMarkupClosingTag", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2089, - "End Line": 2100 + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 272 }, { - "Function Name": "_get_lastChild", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_controlFieldNode_t::disassociateFromBuffer", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2102, - "End Line": 2113 - }, - { - "Function Name": "_get__controlFieldUIACacheRequest", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 137, - "End Line": 146 - }, - { - "Function Name": "_get_childCount", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2139, - "End Line": 2147 - }, - { - "Function Name": "_get_location", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2252, - "End Line": 2260 - }, - { - "Function Name": "_get_description", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2594, - "End Line": 2602 - }, - { - "Function Name": "_get_description", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2527, - "End Line": 2533 - }, - { - "Function Name": "_get_UIASelectionPattern", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2613, - "End Line": 2619 - }, - { - "Function Name": "_get_NVDAObjectAtStart", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 541, - "End Line": 545 - }, - { - "Function Name": "_get_UIAFullDescription", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1859, - "End Line": 1863 - }, - { - "Function Name": "_get_UIAHelpText", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1865, - "End Line": 1869 - }, - { - "Function Name": "_get_value", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2274, - "End Line": 2279 - }, - { - "Function Name": "event_valueChange", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2585, - "End Line": 2590 - }, - { - "Function Name": "_get_TextInfo", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2770, - "End Line": 2773 - }, - { - "Function Name": "_getFormatFieldFontName", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 186, - "End Line": 189 - }, - { - "Function Name": "_getFormatFieldFontSize", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 191, - "End Line": 195 - }, - { - "Function Name": "_getFormatFieldStyle", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "_getFormatFieldAlignment", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 269, - "End Line": 273 - }, - { - "Function Name": "_getTextFromHeaderElement", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 2161, - "End Line": 2168 - }, - { - "Function Name": "getTextWithFields", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1031, - "End Line": 1035 - }, - { - "Function Name": "getSelectedItemsCount", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1664, - "End Line": 1668 - }, - { - "Function Name": "event_UIA_layoutInvalidated", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2710, - "End Line": 2725 - }, - { - "Function Name": "_get_processID", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2240, - "End Line": 2250 - }, - { - "Function Name": "_get_UIASelectionPattern2", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1653, - "End Line": 1662 - }, - { - "Function Name": "_get_UIATextEditPattern", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1722, - "End Line": 1730 - }, - { - "Function Name": "_get_liveRegionPoliteness", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1829, - "End Line": 1836 - }, - { - "Function Name": "_get_UIAChildren", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 2115, - "End Line": 2122 - }, - { - "Function Name": "_get_table", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2226, - "End Line": 2233 - }, - { - "Function Name": "_get_shouldAllowUIAFocusEvent", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1579, - "End Line": 1583 - }, - { - "Function Name": "_get_UIAAutomationId", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1806, - "End Line": 1811 - }, - { - "Function Name": "_get_UIAFrameworkId", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1813, - "End Line": 1818 - }, - { - "Function Name": "_get_name", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1823, - "End Line": 1827 - }, - { - "Function Name": "_get_rowNumber", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2149, - "End Line": 2153 - }, - { - "Function Name": "_get_rowSpan", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2155, - "End Line": 2159 - }, - { - "Function Name": "_get_columnNumber", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2186, - "End Line": 2190 - }, - { - "Function Name": "_get_columnSpan", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2192, - "End Line": 2196 - }, - { - "Function Name": "_get_rowCount", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2214, - "End Line": 2218 - }, - { - "Function Name": "_get_columnCount", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2220, - "End Line": 2224 - }, - { - "Function Name": "_get_UIAValue", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2262, - "End Line": 2266 - }, - { - "Function Name": "_get_UIARangeValue", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2268, - "End Line": 2272 - }, - { - "Function Name": "_get_hasFocus", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2308, - "End Line": 2312 - }, - { - "Function Name": "event_UIA_dragDropEffect", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2461, - "End Line": 2466 - }, - { - "Function Name": "_get_value", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2621, - "End Line": 2625 - }, - { - "Function Name": "_get_tableID", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2235, - "End Line": 2238 - }, - { - "Function Name": "_get_actionCount", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2281, - "End Line": 2284 - }, - { - "Function Name": "event_valueChange", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2415, - "End Line": 2418 - }, - { - "Function Name": "_get_positionInfo", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2520, - "End Line": 2523 - }, - { - "Function Name": "_get_description", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1871, - "End Line": 1872 - }, - { - "Function Name": "_getTextFromUIARange", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 652 - }, - { - "Function Name": "expand", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1058, - "End Line": 1060 - }, - { - "Function Name": "getNormalizedUIATextRangeFromElement", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1523, - "End Line": 1525 - }, - { - "Function Name": "event_UIA_systemAlert", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2420, - "End Line": 2428 - }, - { - "Function Name": "_get_UIATextPattern", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1706, - "End Line": 1712 - }, - { - "Function Name": "_get_UIATableItemPattern", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1714, - "End Line": 1720 - }, - { - "Function Name": "_get_controlFieldNVDAObjectClass", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 97 - }, - { - "Function Name": "_get__coreCycleUIAPropertyCacheElementCache", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1142, - "End Line": 1147 - }, - { - "Function Name": "_get_UIAInvokePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1604, - "End Line": 1609 - }, - { - "Function Name": "_get_UIAGridPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1611, - "End Line": 1616 - }, - { - "Function Name": "_get_UIARangeValuePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1618, - "End Line": 1623 - }, - { - "Function Name": "_get_UIAValuePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1625, - "End Line": 1630 - }, - { - "Function Name": "_get_UIATogglePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1632, - "End Line": 1637 - }, - { - "Function Name": "_get_UIASelectionItemPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1639, - "End Line": 1644 - }, - { - "Function Name": "_get_UIASelectionPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1646, - "End Line": 1651 - }, - { - "Function Name": "_get_UIALegacyIAccessiblePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1732, - "End Line": 1737 - }, - { - "Function Name": "updateCaret", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1130, - "End Line": 1133 - }, - { - "Function Name": "event_gainFocus", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1571, - "End Line": 1573 - }, - { - "Function Name": "event_loseFocus", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1575, - "End Line": 1577 - }, - { - "Function Name": "fetch", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 415, - "End Line": 416 - }, - { - "Function Name": "__hash__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 538, - "End Line": 539 - }, - { - "Function Name": "_get_bookmark", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 573 - }, - { - "Function Name": "_get_text", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1037, - "End Line": 1038 - }, - { - "Function Name": "_get_boundingRects", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1055, - "End Line": 1056 - }, - { - "Function Name": "copy", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1088, - "End Line": 1089 - }, - { - "Function Name": "updateSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1127, - "End Line": 1128 - }, - { - "Function Name": "setFocus", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1756, - "End Line": 1757 - }, - { - "Function Name": "scrollIntoView", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2345, - "End Line": 2346 - }, - { - "Function Name": "event_UIA_controllerFor", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2409, - "End Line": 2410 - }, - { - "Function Name": "event_UIA_elementSelected", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2412, - "End Line": 2413 - }, - { - "Function Name": "_get_value", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2506, - "End Line": 2507 - }, - { - "Function Name": "_get_value", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2575, - "End Line": 2576 - }, - { - "Function Name": "event_focusEntered", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2582, - "End Line": 2583 - }, - { - "Function Name": "event_nameChange", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2691, - "End Line": 2692 - }, - { - "Function Name": "event_stateChange", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2694, - "End Line": 2695 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 620, - "Sequential Logic Declarations": 475, - "Function Parameters": 147, - "Function/Method Declarations": 147, - "Class/Entity Declarations": 24, - "Defensive Programming Constructs": 177, - "Type/Safety Bypasses": 37, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 61, - "State Mutations / Variable Reassignments": 311, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 33, - "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": 54, - "Collection Iterators / Comprehensions": 10, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 50, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 4, - "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": 16, - "Fatal Aborts & Exceptions": 21, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 325, - "Event Listeners & Subscribers": 79, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2171, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 2, - "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)": 12, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 410, - "Design Camel Case": 182, - "Design Snake Case": 183, - "Design Pascal Case": 28, - "Design Upper Case": 0, - "Design Short Vars": 27, - "Design Long Vars": 9, - "Duplicate Logic": 2, - "Orphaned Logic": 82, - "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": 21, - "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)": 34, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 9, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".", - ".excel", - ".wordDocument", - "NVDAObjects", - "NVDAObjects.behaviors", - "NVDAObjects.window", - "NVDAObjects.window.edit", - "NVDAState", - "UIAHandler", - "UIAHandler.customAnnotations", - "UIAHandler.customProps", - "UIAHandler.types", - "UIAHandler.utils", - "__future__", - "api", - "array", - "braille", - "colors", - "comtypes", - "config", - "config.configFlags", - "controlTypes", - "ctypes.wintypes", - "displayModel", - "languageHandler", - "locationHelper", - "logHandler", - "numbers", - "speech", - "textInfos", - "time", - "typing", - "ui", - "winVersion" - ] - }, - "cpp/NVDA/braille.py": { - "1. Artifact Identity": { - "Filename": "braille.py", - "Path": "cpp/NVDA/braille.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "StrEnum, NamedTuple, object", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 4330.2, - "Y": 4.61, - "Z": 5552.26 - }, - "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": 4054, - "Coding LOC": 2617, - "Documentation LOC": 1062, - "Structural Magnitude": 2576.34, - "Control Flow Ratio": "60.4%", - "Popularity Rank": 2, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.807 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.85%", - "Error & Exception Exposure": "78.81%", - "Tech Debt Exposure": "8.73%", - "Testing Exposure": "80.0%", - "API Exposure": "2.78%", - "Concurrency Exposure": "13.6%", - "State Flux Exposure": "99.91%", - "Commented Logic Exposure": "4.84%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_addTextWithFields", - "Structural Impact": 88.5, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 36, - "Input Parameters": 4, - "Control Flow Ratio": "87.8%", - "Start Line": 1397, - "End Line": 1512 - }, - { - "Function Name": "getPropertiesBraille", - "Structural Impact": 87.8, - "Lines of Code (LOC)": 144, - "Control Flow Branches": 56, - "Input Parameters": 1, - "Control Flow Ratio": "96.6%", - "Start Line": 712, - "End Line": 855 - }, - { - "Function Name": "getFormatFieldBraille", - "Structural Impact": 77.4, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 32, - "Input Parameters": 4, - "Control Flow Ratio": "94.1%", - "Start Line": 1190, - "End Line": 1261 - }, - { - "Function Name": "getControlFieldBraille", - "Structural Impact": 64.3, - "Lines of Code (LOC)": 110, - "Control Flow Branches": 23, - "Input Parameters": 5, - "Control Flow Ratio": "74.2%", - "Start Line": 956, - "End Line": 1065 - }, - { - "Function Name": "_getControlFieldForReportStart", - "Structural Impact": 63.3, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 15, - "Input Parameters": 13, - "Control Flow Ratio": "78.9%", - "Start Line": 1119, - "End Line": 1187 - }, - { - "Function Name": "update", - "Structural Impact": 36.9, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "88.5%", - "Start Line": 875, - "End Line": 934 - }, - { - "Function Name": "getFocusRegions", - "Structural Impact": 36.7, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "65.5%", - "Start Line": 2281, - "End Line": 2321 - }, - { - "Function Name": "getFocusContextRegions", - "Structural Impact": 33.2, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "64.0%", - "Start Line": 2204, - "End Line": 2278 - }, - { - "Function Name": "setDisplayByName", - "Structural Impact": 31.3, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 12, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 2772, - "End Line": 2816 - }, - { - "Function Name": "_get_script", - "Structural Impact": 30.0, - "Lines of Code (LOC)": 63, - "Control Flow Branches": 18, - "Input Parameters": 1, - "Control Flow Ratio": "72.0%", - "Start Line": 3858, - "End Line": 3920 - }, - { - "Function Name": "update", - "Structural Impact": 28.6, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "89.5%", - "Start Line": 590, - "End Line": 651 - }, - { - "Function Name": "update", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 15, - "Input Parameters": 1, - "Control Flow Ratio": "78.9%", - "Start Line": 1517, - "End Line": 1627 - }, - { - "Function Name": "_normalizeCellArraySize", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 9, - "Input Parameters": 6, - "Control Flow Ratio": "81.8%", - "Start Line": 2891, - "End Line": 2924 - }, - { - "Function Name": "_getTryPorts", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 14, - "Input Parameters": 2, - "Control Flow Ratio": "87.5%", - "Start Line": 3680, - "End Line": 3709 - }, - { - "Function Name": "_set_windowEndPos", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "65.0%", - "Start Line": 1997, - "End Line": 2049 - }, - { - "Function Name": "_handlePendingUpdate", - "Structural Impact": 24.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 15, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 3138, - "End Line": 3174 - }, - { - "Function Name": "handlePostConfigProfileSwitch", - "Structural Impact": 23.8, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "93.3%", - "Start Line": 3265, - "End Line": 3316 - }, - { - "Function Name": "handleCaretMove", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 3116, - "End Line": 3136 - }, - { - "Function Name": "handleUpdate", - "Structural Impact": 20.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 3206, - "End Line": 3233 - }, - { - "Function Name": "_getModifierGestures", - "Structural Impact": 20.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 3715, - "End Line": 3742 - }, - { - "Function Name": "_getControlFieldForLayoutPresentation", - "Structural Impact": 19.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 6, - "Control Flow Ratio": "66.7%", - "Start Line": 1068, - "End Line": 1088 - }, - { - "Function Name": "handleGainFocus", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 3066, - "End Line": 3086 - }, - { - "Function Name": "_doNewObject", - "Structural Impact": 18.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "90.0%", - "Start Line": 3088, - "End Line": 3114 - }, - { - "Function Name": "_onSecureDesktopStateChanged", - "Structural Impact": 18.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 2541, - "End Line": 2566 - }, - { - "Function Name": "_appendFormattingMarker", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 5, - "Control Flow Ratio": "85.7%", - "Start Line": 1304, - "End Line": 1324 - }, - { - "Function Name": "handleReviewMove", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 3235, - "End Line": 3249 - }, - { - "Function Name": "getTextInfoForBraillePos", - "Structural Impact": 17.3, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1629, - "End Line": 1663 - }, - { - "Function Name": "previousLine", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 1724, - "End Line": 1747 - }, - { - "Function Name": "_showSpeechInBraille", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 2591, - "End Line": 2611 - }, - { - "Function Name": "_calculateWindowRowBufferOffsets", - "Structural Impact": 15.5, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1956, - "End Line": 1988 - }, - { - "Function Name": "_bgThreadExecutor", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 3376, - "End Line": 3406 - }, - { - "Function Name": "message", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 3011, - "End Line": 3036 - }, - { - "Function Name": "bufferPositionsToRawText", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 1907, - "End Line": 1926 - }, - { - "Function Name": "_getAutoPorts", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 3649, - "End Line": 3668 - }, - { - "Function Name": "getDisplayTextForIdentifier", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 3944, - "End Line": 3966 - }, - { - "Function Name": "_routeToTextInfo", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1767, - "End Line": 1783 - }, - { - "Function Name": "_setDisplay", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 2843, - "End Line": 2868 - }, - { - "Function Name": "_switchDisplay", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "62.5%", - "Start Line": 2818, - "End Line": 2841 - }, - { - "Function Name": "regionPosToBufferPos", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1890, - "End Line": 1905 - }, - { - "Function Name": "getDisplayList", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 516, - "End Line": 539 - }, - { - "Function Name": "_writeCells", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2926, - "End Line": 2959 - }, - { - "Function Name": "getPossiblePorts", - "Structural Impact": 13.1, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 3612, - "End Line": 3646 - }, - { - "Function Name": "_getDisplayDriver", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 496, - "End Line": 513 - }, - { - "Function Name": "_get_displayDimensions", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 2671, - "End Line": 2701 - }, - { - "Function Name": "_getTypeformFromFormatField", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 1370, - "End Line": 1386 - }, - { - "Function Name": "_getControlFieldForTableCell", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 3, - "Input Parameters": 7, - "Control Flow Ratio": "60.0%", - "Start Line": 1091, - "End Line": 1116 - }, - { - "Function Name": "getSerialPorts", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 3972, - "End Line": 3997 - }, - { - "Function Name": "_refreshEnabled", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 2728, - "End Line": 2745 - }, - { - "Function Name": "_handleProgressBarUpdate", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 3189, - "End Line": 3204 - }, - { - "Function Name": "scrollToCursorOrSelection", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 3176, - "End Line": 3185 - }, - { - "Function Name": "getDisplayDrivers", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4000, - "End Line": 4020 - }, - { - "Function Name": "nextLine", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1706, - "End Line": 1722 - }, - { - "Function Name": "scrollTo", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 2082, - "End Line": 2089 - }, - { - "Function Name": "setTether", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 2631, - "End Line": 2639 - }, - { - "Function Name": "routeTo", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1665, - "End Line": 1686 - }, - { - "Function Name": "terminate", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2507, - "End Line": 2532 - }, - { - "Function Name": "_getAnnotationProperty", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 682, - "End Line": 706 - }, - { - "Function Name": "update", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 2108, - "End Line": 2127 - }, - { - "Function Name": "check", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3523, - "End Line": 3539 - }, - { - "Function Name": "_updateDisplay", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2875, - "End Line": 2889 - }, - { - "Function Name": "formatCellsForLog", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2324, - "End Line": 2336 - }, - { - "Function Name": "initialDisplay", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 3251, - "End Line": 3263 - }, - { - "Function Name": "_displayWithCursor", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2965, - "End Line": 2974 - }, - { - "Function Name": "_ackTimeoutResetter", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 3408, - "End Line": 3412 - }, - { - "Function Name": "NVDAObjectHasUsefulText", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 478, - "End Line": 493 - }, - { - "Function Name": "_getFormattingTags", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1283, - "End Line": 1301 - }, - { - "Function Name": "_routeToTextInfo", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1688, - "End Line": 1704 - }, - { - "Function Name": "focus", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 2091, - "End Line": 2106 - }, - { - "Function Name": "_set_numCells", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 3583, - "End Line": 3588 - }, - { - "Function Name": "routeTo", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 950, - "End Line": 953 - }, - { - "Function Name": "_addFieldText", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1388, - "End Line": 1395 - }, - { - "Function Name": "rindex", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1807, - "End Line": 1811 - }, - { - "Function Name": "__init__", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2457, - "End Line": 2505 - }, - { - "Function Name": "_enableDetection", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 3332, - "End Line": 3368 - }, - { - "Function Name": "__init__", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 864, - "End Line": 873 - }, - { - "Function Name": "terminate", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3554, - "End Line": 3570 - }, - { - "Function Name": "_resetMessageTimer", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3038, - "End Line": 3049 - }, - { - "Function Name": "_get_visibleRegions", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1846, - "End Line": 1853 - }, - { - "Function Name": "scrollForward", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 2058, - "End Line": 2065 - }, - { - "Function Name": "scrollBack", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 2073, - "End Line": 2080 - }, - { - "Function Name": "_dismissMessage", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 3051, - "End Line": 3064 - }, - { - "Function Name": "windowPosToBufferPos", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1934, - "End Line": 1945 - }, - { - "Function Name": "getTextInfoForWindowPos", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 2161, - "End Line": 2168 - }, - { - "Function Name": "__init__", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1331, - "End Line": 1335 - }, - { - "Function Name": "bufferPosToRegionPos", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1884, - "End Line": 1888 - }, - { - "Function Name": "bufferPosToWindowPos", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1928, - "End Line": 1932 - }, - { - "Function Name": "handleDisplayUnavailable", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3318, - "End Line": 3330 - }, - { - "Function Name": "_get_identifiers", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 3829, - "End Line": 3841 - }, - { - "Function Name": "getParagraphStartMarker", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1264, - "End Line": 1280 - }, - { - "Function Name": "_isMultiline", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 1337, - "End Line": 1348 - }, - { - "Function Name": "_routingShouldMoveSystemCaret", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1792, - "End Line": 1804 - }, - { - "Function Name": "_get_brailleToRawPos", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1873, - "End Line": 1882 - }, - { - "Function Name": "_get_windowBrailleCells", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2144, - "End Line": 2152 - }, - { - "Function Name": "_handleEnabledDecisionFalse", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2752, - "End Line": 2761 - }, - { - "Function Name": "_get_speechEffectWhenExecuted", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 3928, - "End Line": 3936 - }, - { - "Function Name": "_get_rawToBraillePos", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1862, - "End Line": 1869 - }, - { - "Function Name": "_get_cursorWindowPos", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2133, - "End Line": 2139 - }, - { - "Function Name": "_handleAck", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3744, - "End Line": 3751 - }, - { - "Function Name": "_get_displayName", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 3843, - "End Line": 3850 - }, - { - "Function Name": "_getReadingUnit", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1514, - "End Line": 1515 - }, - { - "Function Name": "_speakOnNavigatingByUnit", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 4037, - "End Line": 4053 - }, - { - "Function Name": "shouldBeUsed", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 415, - "End Line": 423 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1361, - "End Line": 1368 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 2154, - "End Line": 2159 - }, - { - "Function Name": "_onSessionLockStateChanged", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2568, - "End Line": 2574 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 936, - "End Line": 940 - }, - { - "Function Name": "_set_enabled", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2747, - "End Line": 2750 - }, - { - "Function Name": "_onBrailleViewerChangedState", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2870, - "End Line": 2873 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3001, - "End Line": 3004 - }, - { - "Function Name": "getTextInfoForWindowPos", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 3006, - "End Line": 3009 - }, - { - "Function Name": "_speakOnRouting", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 4023, - "End Line": 4034 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1350, - "End Line": 1359 - }, - { - "Function Name": "update", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2980, - "End Line": 2989 - }, - { - "Function Name": "_get_regionsWithPositions", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1855, - "End Line": 1860 - }, - { - "Function Name": "_nextWindow", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2051, - "End Line": 2056 - }, - { - "Function Name": "_previousWindow", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2067, - "End Line": 2071 - }, - { - "Function Name": "_clearAll", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2534, - "End Line": 2539 - }, - { - "Function Name": "_disableDetection", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3370, - "End Line": 3374 - }, - { - "Function Name": "_get_scriptableObject", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 3852, - "End Line": 3856 - }, - { - "Function Name": "updateDisplay", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2129, - "End Line": 2131 - }, - { - "Function Name": "clearBrailleRegions", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2623, - "End Line": 2626 - }, - { - "Function Name": "scrollForward", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2991, - "End Line": 2994 - }, - { - "Function Name": "scrollBack", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2996, - "End Line": 2999 - }, - { - "Function Name": "DotFirmnessSetting", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 3754, - "End Line": 3764 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 550, - "End Line": 588 - }, - { - "Function Name": "_get_shouldAutoTether", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2641, - "End Line": 2642 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1815, - "End Line": 1828 - }, - { - "Function Name": "registerAutomaticDetection", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3542, - "End Line": 3552 - }, - { - "Function Name": "_set_displaySize", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2658, - "End Line": 2666 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3511, - "End Line": 3520 - }, - { - "Function Name": "_set_displayDimensions", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2703, - "End Line": 2710 - }, - { - "Function Name": "BrailleInputSetting", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3767, - "End Line": 3774 - }, - { - "Function Name": "HIDInputSetting", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3777, - "End Line": 3784 - }, - { - "Function Name": "suppressClearBrailleRegions", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2616, - "End Line": 2621 - }, - { - "Function Name": "_get_enabled", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2715, - "End Line": 2726 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 677, - "End Line": 679 - }, - { - "Function Name": "clear", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1835, - "End Line": 1844 - }, - { - "Function Name": "invalidateCachedFocusAncestors", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2192, - "End Line": 2201 - }, - { - "Function Name": "_set_table", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2583, - "End Line": 2585 - }, - { - "Function Name": "_get_displaySize", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2647, - "End Line": 2656 - }, - { - "Function Name": "_get_source", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3798, - "End Line": 3806 - }, - { - "Function Name": "_get_model", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3808, - "End Line": 3817 - }, - { - "Function Name": "routeTo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "previousLine", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 664, - "End Line": 664 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1757, - "End Line": 1758 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1785, - "End Line": 1786 - }, - { - "Function Name": "_set_windowStartPos", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1953, - "End Line": 1954 - }, - { - "Function Name": "saveWindow", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2170, - "End Line": 2177 - }, - { - "Function Name": "restoreWindow", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2179, - "End Line": 2186 - }, - { - "Function Name": "_get_numCells", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3575, - "End Line": 3581 - }, - { - "Function Name": "display", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3601, - "End Line": 3601 - }, - { - "Function Name": "getManualPorts", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3671, - "End Line": 3677 - }, - { - "Function Name": "_get_id", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3819, - "End Line": 3823 - }, - { - "Function Name": "_get_keyNames", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3922, - "End Line": 3926 - }, - { - "Function Name": "_get_windowEndPos", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1993, - "End Line": 1995 - }, - { - "Function Name": "_get_table", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2579, - "End Line": 2581 - }, - { - "Function Name": "_writeCellsInBackground", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2961, - "End Line": 2963 - }, - { - "Function Name": "_blink", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2976, - "End Line": 2978 - }, - { - "Function Name": "nextLine", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 671 - }, - { - "Function Name": "_isMultiline", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1751, - "End Line": 1752 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1754, - "End Line": 1755 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1764, - "End Line": 1765 - }, - { - "Function Name": "_get_windowStartPos", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1950, - "End Line": 1951 - }, - { - "Function Name": "_get_windowRawText", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2141, - "End Line": 2142 - }, - { - "Function Name": "displaySize", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2372, - "End Line": 2373 - }, - { - "Function Name": "getTether", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2628, - "End Line": 2629 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3598, - "End Line": 3599 - }, - { - "Function Name": "initialize", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3428, - "End Line": 3436 - }, - { - "Function Name": "terminate", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3444, - "End Line": 3447 - }, - { - "Function Name": "pumpAll", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3439, - "End Line": 3441 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 755, - "Sequential Logic Declarations": 495, - "Function Parameters": 172, - "Function/Method Declarations": 171, - "Class/Entity Declarations": 15, - "Defensive Programming Constructs": 108, - "Type/Safety Bypasses": 64, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 135, - "State Mutations / Variable Reassignments": 617, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 98, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 8, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 13, - "Generic Type Abstractions": 102, - "Collection Iterators / Comprehensions": 17, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 20, - "Module Dependencies (Imports)": 76, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 1, - "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": 19, - "Fatal Aborts & Exceptions": 21, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 2, - "Immutable Data Declarations": 2, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 439, - "Event Listeners & Subscribers": 44, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2471, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 3, - "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)": 24, - "Vectorized Math & Tensor Operations": 13, - "Core Var Decl": 570, - "Design Camel Case": 272, - "Design Snake Case": 252, - "Design Pascal Case": 7, - "Design Upper Case": 23, - "Design Short Vars": 1, - "Design Long Vars": 17, - "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)": 2, - "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)": 59, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 7, - "Total Downstream (Absolute Dependency Blast Radius)": 2 - }, - "9. Extracted Dependencies": [ - "NVDAObjects", - "annotation", - "api", - "autoSettingsUtils.driverSetting", - "baseObject", - "bdDetect", - "brailleDisplayDrivers", - "brailleInput", - "brailleTables", - "brailleViewer", - "collections", - "config", - "config.configFlags", - "config.featureFlagEnums", - "contextlib", - "controlTypes", - "controlTypes.state", - "ctypes.wintypes", - "cursorManager", - "displayModel", - "driverHandler", - "easeOfAccess", - "editableText", - "enum", - "extensionPoints", - "globalCommands", - "gui", - "gui.guiHelper", - "hwIo", - "hwPortUtils", - "importlib", - "inputCore", - "itertools", - "keyboardHandler", - "locale", - "logHandler", - "louis", - "louisHelper", - "mathPres", - "pkgutil", - "queueHandler", - "re", - "scriptHandler", - "serial", - "speech.extensions", - "speech.speech", - "speech.types", - "textInfos", - "textUtils", - "threading", - "time", - "to", - "treeInterceptorHandler", - "typing", - "utils.security", - "winAPI.secureDesktop", - "winBindings.kernel32", - "winKernel", - "wx" - ] - }, - "cpp/NVDA/core.py": { - "1. Artifact Identity": { - "Filename": "core.py", - "Path": "cpp/NVDA/core.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "Enum, wx.App, wx.Timer", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 4713.99, - "Y": -44.51, - "Z": 5951.6 - }, - "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": 1198, - "Coding LOC": 826, - "Documentation LOC": 183, - "Structural Magnitude": 415.92, - "Control Flow Ratio": "39.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.38 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.73%", - "Error & Exception Exposure": "60.58%", - "Tech Debt Exposure": "10.0%", - "Testing Exposure": "80.0%", - "API Exposure": "2.16%", - "Concurrency Exposure": "26.64%", - "State Flux Exposure": "68.91%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.25%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "main", - "Structural Impact": 79.1, - "Lines of Code (LOC)": 462, - "Control Flow Branches": 55, - "Input Parameters": 0, - "Control Flow Ratio": "43.0%", - "Start Line": 672, - "End Line": 1133 - }, - { - "Function Name": "doStartupDialogs", - "Structural Impact": 21.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 16, - "Input Parameters": 0, - "Control Flow Ratio": "51.6%", - "Start Line": 125, - "End Line": 209 - }, - { - "Function Name": "restart", - "Structural Impact": 13.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 281, - "End Line": 308 - }, - { - "Function Name": "Notify", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 991, - "End Line": 1024 - }, - { - "Function Name": "_closeAllWindows", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "56.2%", - "Start Line": 496, - "End Line": 547 - }, - { - "Function Name": "computeRestartCLIArgs", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "58.3%", - "Start Line": 219, - "End Line": 238 - }, - { - "Function Name": "resetConfiguration", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 93, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "19.0%", - "Start Line": 311, - "End Line": 403 - }, - { - "Function Name": "requestPump", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1150, - "End Line": 1169 - }, - { - "Function Name": "callLater", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "42.9%", - "Start Line": 1176, - "End Line": 1191 - }, - { - "Function Name": "_showAddonsErrors", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 47, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "62.5%", - "Start Line": 76, - "End Line": 122 - }, - { - "Function Name": "triggerNVDAExit", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 470, - "End Line": 493 - }, - { - "Function Name": "_setUpWxApp", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 57, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 613, - "End Line": 669 - }, - { - "Function Name": "getWxLangOrNone", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "62.5%", - "Start Line": 422, - "End Line": 439 - }, - { - "Function Name": "onEndSession", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 653, - "End Line": 665 - }, - { - "Function Name": "processRequest", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 981, - "End Line": 989 - }, - { - "Function Name": "restartUnsafely", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 241, - "End Line": 278 - }, - { - "Function Name": "_terminate", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1136, - "End Line": 1143 - }, - { - "Function Name": "_doLoseFocus", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 601, - "End Line": 610 - }, - { - "Function Name": "__getattr__", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 39, - "End Line": 49 - }, - { - "Function Name": "_setInitialFocus", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "42.9%", - "Start Line": 406, - "End Line": 419 - }, - { - "Function Name": "onResult", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 198, - "End Line": 205 - }, - { - "Function Name": "queueRequest", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 972, - "End Line": 979 - }, - { - "Function Name": "_handleNVDAModuleCleanupBeforeGUIExit", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "12.5%", - "Start Line": 550, - "End Line": 574 - }, - { - "Function Name": "_doShutdown", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 463, - "End Line": 467 - }, - { - "Function Name": "onQueryEndSession", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 646, - "End Line": 649 - }, - { - "Function Name": "OnAssert", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 627, - "End Line": 629 - }, - { - "Function Name": "_startNewInstance", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 460 - }, - { - "Function Name": "_callLaterExec", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1194, - "End Line": 1197 - }, - { - "Function Name": "_initializeObjectCaches", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 598 - }, - { - "Function Name": "InitLocale", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 631, - "End Line": 640 - }, - { - "Function Name": "handleReplaceCLIArg", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 135 - }, - { - "Function Name": "__bool__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 69 - }, - { - "Function Name": "_doPostNvdaStartupAction", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1053, - "End Line": 1055 - }, - { - "Function Name": "isMainThread", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1146, - "End Line": 1147 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 141, - "Sequential Logic Declarations": 218, - "Function Parameters": 34, - "Function/Method Declarations": 34, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 48, - "Type/Safety Bypasses": 30, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 32, - "State Mutations / Variable Reassignments": 66, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 12, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 3, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 18, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 126, - "Authorship Metadata": 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, - "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": 2, - "Fatal Aborts & Exceptions": 11, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 1, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 114, - "Event Listeners & Subscribers": 8, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 771, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 4, - "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": 1, - "Core Var Decl": 88, - "Design Camel Case": 35, - "Design Snake Case": 44, - "Design Pascal Case": 1, - "Design Upper Case": 4, - "Design Short Vars": 0, - "Design Long Vars": 2, - "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)": 74, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 10, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "IAccessibleHandler", - "JABHandler", - "NVDAHelper", - "NVDAObjects", - "NVDAState", - "UIAHandler", - "_remoteClient", - "addonHandler", - "addonStore", - "api", - "appModuleHandler", - "argsParsing", - "audio", - "audioDucking", - "baseObject", - "bdDetect", - "braille", - "brailleInput", - "brailleTables", - "brailleViewer", - "buildVersion", - "characterProcessing", - "comtypes", - "config", - "configobj", - "dataclasses", - "displayModel", - "enum", - "eventHandler", - "extensionPoints", - "garbageHandler", - "globalPluginHandler", - "globalVars", - "gui", - "gui.installerGui", - "gui.message", - "gui.settingsDialogs", - "gui.startupDialogs", - "hwIo", - "inputCore", - "keyboardHandler", - "languageHandler", - "logHandler", - "mathPres", - "mouseHandler", - "nvwave", - "os", - "queueHandler", - "screenCurtain", - "shellapi", - "socket", - "speech", - "speechDictHandler", - "subprocess", - "sys", - "threading", - "time", - "tones", - "touchHandler", - "treeInterceptorHandler", - "typing", - "updateCheck", - "utils", - "utils.security", - "vision", - "watchdog", - "winAPI", - "winAPI.dpiAwareness", - "winAPI.messageWindow", - "winBindings.kernel32", - "winConsoleHandler", - "winUser", - "winVersion", - "wx" - ] - }, - "cpp/NVDA/espeak.py": { - "1. Artifact Identity": { - "Filename": "espeak.py", - "Path": "cpp/NVDA/espeak.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "SynthDriver", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3833.03, - "Y": 3.64, - "Z": 5597.15 - }, - "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": 497, - "Coding LOC": 269, - "Documentation LOC": 185, - "Structural Magnitude": 222.48, - "Control Flow Ratio": "41.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.042 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.75%", - "Error & Exception Exposure": "77.07%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "80.0%", - "API Exposure": "0.34%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.96%", - "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": "speak", - "Structural Impact": 44.8, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 23, - "Input Parameters": 2, - "Control Flow Ratio": "69.7%", - "Start Line": 323, - "End Line": 386 - }, - { - "Function Name": "_normalizeLangCommand", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "84.6%", - "Start Line": 252, - "End Line": 294 - }, - { - "Function Name": "_handleLangChangeCommand", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 296, - "End Line": 318 - }, - { - "Function Name": "_set_voice", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 464, - "End Line": 477 - }, - { - "Function Name": "_onIndexReached", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 479, - "End Line": 483 - }, - { - "Function Name": "_set_variant", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 491, - "End Line": 493 - }, - { - "Function Name": "_get_voice", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 454, - "End Line": 462 - }, - { - "Function Name": "_set_rateBoost", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 401, - "End Line": 406 - }, - { - "Function Name": "_set_rate", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "_getAvailableVoices", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 443, - "End Line": 452 - }, - { - "Function Name": "_get_rate", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 408, - "End Line": 412 - }, - { - "Function Name": "_getAvailableVariants", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 495, - "End Line": 496 - }, - { - "Function Name": "_processText", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 250 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 224 - }, - { - "Function Name": "_set_pitch", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 425, - "End Line": 427 - }, - { - "Function Name": "_set_inflection", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 433, - "End Line": 435 - }, - { - "Function Name": "pause", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 391, - "End Line": 392 - }, - { - "Function Name": "_set_volume", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 440, - "End Line": 441 - }, - { - "Function Name": "_get_pitch", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 423 - }, - { - "Function Name": "_get_inflection", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 431 - }, - { - "Function Name": "check", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 212 - }, - { - "Function Name": "_get_language", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 226, - "End Line": 227 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 389 - }, - { - "Function Name": "_get_rateBoost", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 399 - }, - { - "Function Name": "_get_volume", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 438 - }, - { - "Function Name": "terminate", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 486 - }, - { - "Function Name": "_get_variant", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 488, - "End Line": 489 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 51, - "Sequential Logic Declarations": 72, - "Function Parameters": 28, - "Function/Method Declarations": 27, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 13, - "Type/Safety Bypasses": 4, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 6, - "State Mutations / Variable Reassignments": 69, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 3, - "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": 1, - "Generic Type Abstractions": 7, - "Collection Iterators / Comprehensions": 3, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 9, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, - "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": 4, - "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": 104, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 256, - "Structural Space Indentations": 0, - "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": 1, - "Core Var Decl": 50, - "Design Camel Case": 22, - "Design Snake Case": 23, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 20, - "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)": 9, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".", - "collections", - "languageHandler", - "logHandler", - "os", - "speech.commands", - "speech.types", - "synthDriverHandler", - "typing" - ] - }, - "cpp/NVDA/ensureuv.ps1": { - "1. Artifact Identity": { - "Filename": "ensureuv.ps1", - "Path": "cpp/NVDA/ensureuv.ps1", - "Language": "Powershell", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ps1)" - }, - "2. Topological Coordinates": { - "X": 4209.54, - "Y": -92.37, - "Z": 6161.7 - }, - "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": 119, - "Coding LOC": 105, - "Documentation LOC": 1, - "Structural Magnitude": 70.0, - "Control Flow Ratio": "78.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.914 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "65.86%", - "Error & Exception Exposure": "82.98%", - "Tech Debt Exposure": "47.03%", - "Testing Exposure": "2.48%", - "API Exposure": "2.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", - "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": "Install-Uv", - "Structural Impact": 34.7, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 21, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 16, - "End Line": 86 - }, - { - "Function Name": "Invoke-Uv", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 14 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 29, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 31, - "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": 21, - "Global State Dependencies": 4, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "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": 4, - "Ad-hoc Print / Debug Statements": 12, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 5, - "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": 89, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "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": 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, - "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": 2, - "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": [] - }, - "cpp/NVDA/inProcess.cpp": { - "1. Artifact Identity": { - "Filename": "inProcess.cpp", - "Path": "cpp/NVDA/inProcess.cpp", - "Language": "Cpp", - "Architect": "2006-2010 NVDA contributers", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4840.7, - "Y": 3.08, - "Z": 5288.9 - }, - "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": 196, - "Coding LOC": 153, - "Documentation LOC": 27, - "Structural Magnitude": 185.46, - "Control Flow Ratio": "51.9%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.966 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "70.32%", - "Error & Exception Exposure": "97.17%", - "Tech Debt Exposure": "23.28%", - "Testing Exposure": "80.0%", - "API Exposure": "8.72%", - "Concurrency Exposure": "0.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": "unregisterWindowsHook", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "70.0%", - "Start Line": 96, - "End Line": 113 - }, - { - "Function Name": "inProcess_getMessageHook", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 116, - "End Line": 134 - }, - { - "Function Name": "execInThread", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 160, - "End Line": 195 - }, - { - "Function Name": "registerWindowsHook", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 84, - "End Line": 94 - }, - { - "Function Name": "inProcess_winEventCallback", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 150, - "End Line": 158 - }, - { - "Function Name": "inProcess_callWndProcHook", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 137, - "End Line": 147 - }, - { - "Function Name": "unregisterWinEventHook", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 72, - "End Line": 82 - }, - { - "Function Name": "inProcess_initialize", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 54 - }, - { - "Function Name": "registerWinEventHook", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 67, - "End Line": 70 - }, - { - "Function Name": "inProcess_terminate", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 65 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 26, - "Function Parameters": 15, - "Function/Method Declarations": 10, - "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": 9, - "State Mutations / Variable Reassignments": 98, - "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": 1, - "Module Dependencies (Imports)": 16, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, - "Pointer Arithmetic & Addressing": 23, - "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": 109, - "Structural Space Indentations": 0, - "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": 18, - "Design Camel Case": 3, - "Design Snake Case": 14, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 11, - "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)": 16, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "IA2Support.h", - "common/log.h", - "cstdio", - "gdiHooks.h", - "ia2LiveRegions.h", - "ime.h", - "inProcess.h", - "inputLangChange.h", - "list", - "map", - "nvdaHelperRemote.h", - "set", - "tsf.h", - "typedCharacter.h", - "windows.h", - "winword.h" - ] - }, - "cpp/NVDA/nvdaControllerInternal.cpp": { - "1. Artifact Identity": { - "Filename": "nvdaControllerInternal.cpp", - "Path": "cpp/NVDA/nvdaControllerInternal.cpp", - "Language": "Cpp", - "Architect": "2006-2025 NV Access Limited, rui Batista, Google LLC, Christopher Toth", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4051.09, - "Y": -5.81, - "Z": 5053.25 - }, - "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": 92, - "Coding LOC": 61, - "Documentation LOC": 13, - "Structural Magnitude": 30.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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.59%", - "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": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "nvdaControllerInternal_displayModelTextChangeNotify", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 41 - }, - { - "Function Name": "nvdaControllerInternal_drawFocusRectNotify", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 79, - "End Line": 81 - }, - { - "Function Name": "nvdaControllerInternal_inputCompositionUpdate", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 - }, - { - "Function Name": "nvdaControllerInternal_inputLangChangeNotify", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 25 - }, - { - "Function Name": "nvdaControllerInternal_logMessage", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "nvdaControllerInternal_inputCandidateListUpdate", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 51 - }, - { - "Function Name": "nvdaControllerInternal_inputConversionModeUpdate", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 61 - }, - { - "Function Name": "nvdaControllerInternal_vbufChangeNotify", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 64, - "End Line": 66 - }, - { - "Function Name": "nvdaControllerInternal_reportLiveRegion", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - }, - { - "Function Name": "nvdaControllerInternal_requestRegistration", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 20 - }, - { - "Function Name": "nvdaControllerInternal_typedCharacterNotify", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 30 - }, - { - "Function Name": "nvdaControllerInternal_IMEOpenStatusUpdate", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 56 - }, - { - "Function Name": "nvdaControllerInternal_installAddonPackageFromPath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 71 - }, - { - "Function Name": "nvdaControllerInternal_handleRemoteURL", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 76 - }, - { - "Function Name": "nvdaControllerInternal_openConfigDirectory", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 91 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 15, - "Function Parameters": 14, - "Function/Method Declarations": 15, - "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)": 1, - "Authorship Metadata": 1, - "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": 16, - "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": 70, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 15, - "Structural Space Indentations": 0, - "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": 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": 15, - "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": [ - "local/nvdaControllerInternal.h" - ] - }, - "cpp/NVDA/storage.cpp": { - "1. Artifact Identity": { - "Filename": "storage.cpp", - "Path": "cpp/NVDA/storage.cpp", - "Language": "Cpp", - "Architect": "2006-2022 NVDA contributors", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4073.32, - "Y": -11.18, - "Z": 5862.38 - }, - "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": 1247, - "Coding LOC": 1115, - "Documentation LOC": 62, - "Structural Magnitude": 2122.1, - "Control Flow Ratio": "71.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.427 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.39%", - "Error & Exception Exposure": "99.85%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "11.58%", - "Concurrency Exposure": "0.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": "49.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "VBufStorage_buffer_t::getLineOffsets", - "Structural Impact": 136.9, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 52, - "Input Parameters": 5, - "Control Flow Ratio": "94.5%", - "Start Line": 1066, - "End Line": 1207 - }, - { - "Function Name": "VBufStorage_buffer_t::findNodeByAttributes", - "Structural Impact": 105.1, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 37, - "Input Parameters": 6, - "Control Flow Ratio": "84.1%", - "Start Line": 973, - "End Line": 1064 - }, - { - "Function Name": "VBufStorage_fieldNode_t::nextNodeInTree", - "Structural Impact": 59.4, - "Lines of Code (LOC)": 68, - "Control Flow Branches": 27, - "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 57, - "End Line": 124 - }, - { - "Function Name": "VBufStorage_buffer_t::insertNode", - "Structural Impact": 57.5, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 26, - "Input Parameters": 3, - "Control Flow Ratio": "76.5%", - "Start Line": 445, - "End Line": 515 - }, - { - "Function Name": "VBufStorage_buffer_t::unlinkFieldNode", - "Structural Impact": 48.8, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 26, - "Input Parameters": 2, - "Control Flow Ratio": "89.7%", - "Start Line": 766, - "End Line": 806 - }, - { - "Function Name": "VBufStorage_buffer_t::replaceSubtrees", - "Structural Impact": 48.6, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "74.4%", - "Start Line": 642, - "End Line": 764 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getTextInRange", - "Structural Impact": 26.1, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 9, - "Input Parameters": 5, - "Control Flow Ratio": "81.8%", - "Start Line": 274, - "End Line": 306 - }, - { - "Function Name": "VBufStorage_buffer_t::addTextFieldNode", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 585, - "End Line": 621 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateAttributesForMarkupOpeningTag", - "Structural Impact": 21.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "90.0%", - "Start Line": 225, - "End Line": 258 - }, - { - "Function Name": "outputEscapedAttribute", - "Structural Impact": 21.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 130, - "End Line": 149 - }, - { - "Function Name": "VBufStorage_buffer_t::locateControlFieldNodeAtOffset", - "Structural Impact": 20.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "77.8%", - "Start Line": 887, - "End Line": 907 - }, - { - "Function Name": "VBufStorage_fieldNode_t::matchAttributes", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 151, - "End Line": 191 - }, - { - "Function Name": "VBufStorage_textFieldNode_t::getTextInRange", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 5, - "Control Flow Ratio": "83.3%", - "Start Line": 402, - "End Line": 423 - }, - { - "Function Name": "VBufStorage_buffer_t::locateTextFieldNodeAtOffset", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 865, - "End Line": 885 - }, - { - "Function Name": "VBufStorage_buffer_t::isFieldNodeAtOffset", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 843, - "End Line": 863 - }, - { - "Function Name": "VBufStorage_buffer_t::addControlFieldNode", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 561, - "End Line": 583 - }, - { - "Function Name": "VBufStorage_buffer_t::getTextInRange", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "57.1%", - "Start Line": 959, - "End Line": 971 - }, - { - "Function Name": "VBufStorage_fieldNode_t::locateTextFieldNodeAtOffset", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 207, - "End Line": 223 - }, - { - "Function Name": "VBufStorage_buffer_t::getSelectionOffsets", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 932, - "End Line": 940 - }, - { - "Function Name": "VBufStorage_buffer_t::addTextFieldNode", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "37.5%", - "Start Line": 623, - "End Line": 640 - }, - { - "Function Name": "VBufStorage_buffer_t::getIdentifierFromControlFieldNode", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 922, - "End Line": 930 - }, - { - "Function Name": "VBufStorage_buffer_t::removeFieldNode", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 808, - "End Line": 819 - }, - { - "Function Name": "VBufStorage_buffer_t::setSelectionOffsets", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 942, - "End Line": 951 - }, - { - "Function Name": "VBufStorage_buffer_t::addReferenceNodeToBuffer", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1231, - "End Line": 1240 - }, - { - "Function Name": "VBufStorage_buffer_t::isDescendantNode", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1213, - "End Line": 1225 - }, - { - "Function Name": "VBufStorage_buffer_t::addControlFieldNode", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 548, - "End Line": 559 - }, - { - "Function Name": "VBufStorage_buffer_t::getFieldNodeOffsets", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 832, - "End Line": 841 - }, - { - "Function Name": "VBufStorage_buffer_t::getControlFieldNodeWithIdentifier", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 909, - "End Line": 920 - }, - { - "Function Name": "VBufStorage_fieldNode_t::calculateOffsetInTree", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 193, - "End Line": 205 - }, - { - "Function Name": "VBufStorage_buffer_t::deleteSubtree", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 526, - "End Line": 537 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator<", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 39, - "End Line": 45 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getAttribute", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 327, - "End Line": 334 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator!=", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 47, - "End Line": 49 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator==", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 51, - "End Line": 53 - }, - { - "Function Name": "VBufStorage_buffer_t::isNodeInBuffer", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1227, - "End Line": 1229 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getAttributesString", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 336, - "End Line": 345 - }, - { - "Function Name": "VBufStorage_buffer_t::clearBuffer", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 821, - "End Line": 830 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateMarkupOpeningTag", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 260, - "End Line": 266 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::generateAttributesForMarkupOpeningTag", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 364 - }, - { - "Function Name": "VBufStorage_buffer_t::getTextLength", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 953, - "End Line": 957 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::VBufStorage_controlFieldNode_t", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 373, - "End Line": 375 - }, - { - "Function Name": "VBufStorage_buffer_t::hasContent", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1209, - "End Line": 1211 - }, - { - "Function Name": "VBufStorage_fieldNode_t::addAttribute", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 325 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::getIdentifier", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 377, - "End Line": 381 - }, - { - "Function Name": "VBufStorage_textFieldNode_t::locateTextFieldNodeAtOffset", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 391, - "End Line": 396 - }, - { - "Function Name": "VBufStorage_fieldNode_t::VBufStorage_fieldNode_t", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 313, - "End Line": 315 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::VBufStorage_controlFieldNodeIdentifier_t", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 37 - }, - { - "Function Name": "VBufStorage_buffer_t::forgetControlFieldNode", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 443 - }, - { - "Function Name": "VBufStorage_buffer_t::deleteNode", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 517, - "End Line": 524 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateMarkupClosingTag", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 272 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::disassociateFromBuffer", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 366, - "End Line": 371 + "Control Flow Ratio": "0.0%", + "Start Line": 366, + "End Line": 371 }, { "Function Name": "VBufStorage_fieldNode_t::disassociateFromBuffer", @@ -455786,9 +455786,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6580.83, + "X": -6579.33, "Y": 172.08, - "Z": -5076.53 + "Z": -5075.23 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -455943,9 +455943,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6957.0, + "X": -6955.49, "Y": 31.77, - "Z": -5531.47 + "Z": -5530.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -456121,9 +456121,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6471.82, + "X": -6470.31, "Y": 134.89, - "Z": -5520.21 + "Z": -5518.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457019,9 +457019,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5993.26, + "X": -5991.76, "Y": 121.13, - "Z": -5731.02 + "Z": -5729.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457187,9 +457187,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6180.16, + "X": -6178.65, "Y": 256.79, - "Z": -5045.49 + "Z": -5044.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457485,9 +457485,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6795.08, + "X": -6793.57, "Y": 143.19, - "Z": -5269.21 + "Z": -5267.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457843,9 +457843,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6463.51, + "X": -6462.0, "Y": -12.94, - "Z": -5896.02 + "Z": -5894.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -472843,7 +472843,7 @@ } }, "go/kubernetes": { - "Directory Group Magnitude": 4362.76, + "Directory Group Magnitude": 4354.76, "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -472853,14 +472853,14 @@ "Error & Exception Exposure": "86.68%", "Tech Debt Exposure": "37.33%", "Testing Exposure": "57.83%", - "API Exposure": "2.61%", + "API Exposure": "2.55%", "Concurrency Exposure": "39.22%", "State Flux Exposure": "91.45%", "Commented Logic Exposure": "4.41%", "Specification Exposure": "85.37%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.43%", + "Documentation Exposure": "37.23%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -472877,9 +472877,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6149.0, + "X": -6143.18, "Y": -66.18, - "Z": -6697.28 + "Z": -6690.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -473454,9 +473454,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5532.08, + "X": -5526.26, "Y": -114.19, - "Z": -6753.18 + "Z": -6746.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -473888,9 +473888,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5360.79, + "X": -5354.97, "Y": -282.71, - "Z": -7413.07 + "Z": -7406.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474173,9 +474173,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5987.82, + "X": -5982.0, "Y": -62.78, - "Z": -6527.86 + "Z": -6520.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474334,9 +474334,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5889.01, + "X": -5883.19, "Y": -181.22, - "Z": -6941.72 + "Z": -6934.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474812,9 +474812,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5825.0, + "X": -5819.18, "Y": -178.55, - "Z": -7596.92 + "Z": -7589.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -475270,9 +475270,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6345.43, - "Y": -39.71, - "Z": -7216.85 + "X": -6339.43, + "Y": -39.73, + "Z": -7209.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -475284,7 +475284,7 @@ "Total LOC": 676, "Coding LOC": 473, "Documentation LOC": 113, - "Structural Magnitude": 546.26, + "Structural Magnitude": 538.26, "Control Flow Ratio": "51.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -475297,14 +475297,14 @@ "Error & Exception Exposure": "93.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.08%", + "API Exposure": "2.65%", "Concurrency Exposure": "48.19%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.98%", + "Documentation Exposure": "52.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -475530,7 +475530,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 58, + "Exposed API / Public Exports": 50, "State Mutations / Variable Reassignments": 271, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 59, @@ -475669,7 +475669,7 @@ } }, "dockerfile/moby/builder/dockerfile": { - "Directory Group Magnitude": 4178.19, + "Directory Group Magnitude": 4177.19, "File Count": 18, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -475679,14 +475679,14 @@ "Error & Exception Exposure": "76.83%", "Tech Debt Exposure": "64.84%", "Testing Exposure": "36.91%", - "API Exposure": "1.03%", + "API Exposure": "1.02%", "Concurrency Exposure": "10.58%", "State Flux Exposure": "88.89%", "Commented Logic Exposure": "4.08%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.34%", + "Documentation Exposure": "23.28%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -476917,9 +476917,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 155.3, + "X": 155.29, "Y": -139.31, - "Z": -5122.54 + "Z": -5122.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -476931,7 +476931,7 @@ "Total LOC": 553, "Coding LOC": 436, "Documentation LOC": 52, - "Structural Magnitude": 492.82, + "Structural Magnitude": 491.82, "Control Flow Ratio": "49.5%", "Popularity Rank": 6, "Raw Churn Frequency": 0.0, @@ -476944,14 +476944,14 @@ "Error & Exception Exposure": "88.38%", "Tech Debt Exposure": "23.48%", "Testing Exposure": "80.0%", - "API Exposure": "0.79%", + "API Exposure": "0.7%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "7.5%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.93%", + "Documentation Exposure": "13.85%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -477177,7 +477177,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 12, + "Exposed API / Public Exports": 11, "State Mutations / Variable Reassignments": 240, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 19, @@ -484206,7 +484206,7 @@ } }, "zig/tigerbeetle": { - "Directory Group Magnitude": 3975.78, + "Directory Group Magnitude": 3965.78, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -484216,14 +484216,14 @@ "Error & Exception Exposure": "51.88%", "Tech Debt Exposure": "17.79%", "Testing Exposure": "23.6%", - "API Exposure": "2.77%", + "API Exposure": "2.5%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "39.3%", "Commented Logic Exposure": "1.04%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.15%", + "Documentation Exposure": "21.91%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -484627,8 +484627,8 @@ }, "2. Topological Coordinates": { "X": -6776.09, - "Y": 204.04, - "Z": 2859.76 + "Y": 204.03, + "Z": 2859.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -484640,7 +484640,7 @@ "Total LOC": 1007, "Coding LOC": 741, "Documentation LOC": 95, - "Structural Magnitude": 666.92, + "Structural Magnitude": 663.92, "Control Flow Ratio": "62.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -484653,14 +484653,14 @@ "Error & Exception Exposure": "44.46%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", - "API Exposure": "2.28%", + "API Exposure": "2.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "81.96%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.98%", + "Documentation Exposure": "24.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -484946,7 +484946,7 @@ "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 32, + "Exposed API / Public Exports": 29, "State Mutations / Variable Reassignments": 118, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 36, @@ -485822,9 +485822,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -7425.2, - "Y": 157.0, - "Z": 3524.03 + "X": -7424.98, + "Y": 157.01, + "Z": 3523.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -485836,7 +485836,7 @@ "Total LOC": 296, "Coding LOC": 221, "Documentation LOC": 46, - "Structural Magnitude": 40.22, + "Structural Magnitude": 39.22, "Control Flow Ratio": "60.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -485849,14 +485849,14 @@ "Error & Exception Exposure": "49.75%", "Tech Debt Exposure": "12.63%", "Testing Exposure": "2.33%", - "API Exposure": "3.6%", + "API Exposure": "3.35%", "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": "22.09%", + "Documentation Exposure": "19.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -485912,7 +485912,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 37, @@ -486652,9 +486652,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -7054.6, - "Y": 260.76, - "Z": 2954.18 + "X": -7054.19, + "Y": 260.59, + "Z": 2954.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -486666,7 +486666,7 @@ "Total LOC": 121, "Coding LOC": 95, "Documentation LOC": 14, - "Structural Magnitude": 67.5, + "Structural Magnitude": 61.5, "Control Flow Ratio": "66.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -486679,14 +486679,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "6.86%", + "API Exposure": "4.3%", "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": "93.35%", + "Documentation Exposure": "63.52%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -486772,7 +486772,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 14, @@ -505256,7 +505256,7 @@ } }, "lua/freebsd-src": { - "Directory Group Magnitude": 3759.8, + "Directory Group Magnitude": 3757.8, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -505266,14 +505266,14 @@ "Error & Exception Exposure": "85.7%", "Tech Debt Exposure": "2.86%", "Testing Exposure": "31.52%", - "API Exposure": "2.59%", + "API Exposure": "2.57%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "95.56%", "Commented Logic Exposure": "1.67%", "Specification Exposure": "56.25%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.0%", + "Documentation Exposure": "28.72%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -505290,9 +505290,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9464.81, + "X": 9464.85, "Y": -8.57, - "Z": 4071.91 + "Z": 4071.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505304,7 +505304,7 @@ "Total LOC": 261, "Coding LOC": 177, "Documentation LOC": 45, - "Structural Magnitude": 286.64, + "Structural Magnitude": 285.64, "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -505317,14 +505317,14 @@ "Error & Exception Exposure": "96.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.15%", + "API Exposure": "1.91%", "Concurrency Exposure": "0.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.67%", + "Documentation Exposure": "28.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -505500,7 +505500,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 131, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506444,7 +506444,7 @@ "2. Topological Coordinates": { "X": 10014.87, "Y": 2.23, - "Z": 3672.95 + "Z": 3672.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506456,7 +506456,7 @@ "Total LOC": 587, "Coding LOC": 412, "Documentation LOC": 91, - "Structural Magnitude": 631.14, + "Structural Magnitude": 630.14, "Control Flow Ratio": "48.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506469,14 +506469,14 @@ "Error & Exception Exposure": "97.76%", "Tech Debt Exposure": "18.72%", "Testing Exposure": "80.0%", - "API Exposure": "8.13%", + "API Exposure": "8.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.07%", + "Documentation Exposure": "97.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506862,7 +506862,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 67, + "Exposed API / Public Exports": 66, "State Mutations / Variable Reassignments": 272, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -509834,7 +509834,7 @@ } }, "c/doom": { - "Directory Group Magnitude": 3474.0, + "Directory Group Magnitude": 3453.0, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "84.6%", @@ -509845,14 +509845,14 @@ "Error & Exception Exposure": "60.76%", "Tech Debt Exposure": "14.87%", "Testing Exposure": "31.86%", - "API Exposure": "10.19%", + "API Exposure": "10.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "63.06%", "Commented Logic Exposure": "8.0%", "Specification Exposure": "76.92%", "Instability Exposure": "42.31%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "70.21%", + "Documentation Exposure": "69.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -509869,9 +509869,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5838.57, + "X": -5831.89, "Y": -150.43, - "Z": -5665.86 + "Z": -5658.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -509883,7 +509883,7 @@ "Total LOC": 1172, "Coding LOC": 788, "Documentation LOC": 175, - "Structural Magnitude": 879.16, + "Structural Magnitude": 876.16, "Control Flow Ratio": "72.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -509896,14 +509896,14 @@ "Error & Exception Exposure": "98.61%", "Tech Debt Exposure": "18.47%", "Testing Exposure": "80.0%", - "API Exposure": "12.71%", + "API Exposure": "12.62%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "96.25%", + "Documentation Exposure": "95.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -510049,7 +510049,7 @@ "Type/Safety Bypasses": 26, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 116, + "Exposed API / Public Exports": 113, "State Mutations / Variable Reassignments": 484, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -510188,9 +510188,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4954.06, + "X": -4947.41, "Y": -240.07, - "Z": -5698.46 + "Z": -5691.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510348,9 +510348,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5828.56, - "Y": 41.65, - "Z": -6530.91 + "X": -5821.26, + "Y": 41.27, + "Z": -6522.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510362,7 +510362,7 @@ "Total LOC": 184, "Coding LOC": 107, "Documentation LOC": 38, - "Structural Magnitude": 81.34, + "Structural Magnitude": 70.34, "Control Flow Ratio": "16.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -510375,14 +510375,14 @@ "Error & Exception Exposure": "77.35%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", - "API Exposure": "13.33%", + "API Exposure": "11.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "96.75%", "Commented Logic Exposure": "7.51%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "99.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -510518,7 +510518,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 38, + "Exposed API / Public Exports": 27, "State Mutations / Variable Reassignments": 16, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -510640,9 +510640,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6199.25, + "X": -6192.61, "Y": -82.15, - "Z": -5842.57 + "Z": -5835.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510833,9 +510833,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5257.88, + "X": -5251.24, "Y": 63.42, - "Z": -6607.08 + "Z": -6600.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510990,9 +510990,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5542.66, + "X": -5536.01, "Y": -102.3, - "Z": -5997.79 + "Z": -5990.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511319,9 +511319,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5745.19, + "X": -5738.55, "Y": -234.62, - "Z": -5439.28 + "Z": -5432.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511482,9 +511482,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5492.67, + "X": -5486.03, "Y": -27.79, - "Z": -6256.5 + "Z": -6249.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511729,9 +511729,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5115.53, + "X": -5108.89, "Y": -23.65, - "Z": -6120.39 + "Z": -6113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511891,9 +511891,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5292.39, - "Y": -202.88, - "Z": -5485.19 + "X": -5285.8, + "Y": -202.86, + "Z": -5478.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511905,7 +511905,7 @@ "Total LOC": 578, "Coding LOC": 323, "Documentation LOC": 116, - "Structural Magnitude": 421.46, + "Structural Magnitude": 418.46, "Control Flow Ratio": "64.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -511918,14 +511918,14 @@ "Error & Exception Exposure": "98.57%", "Tech Debt Exposure": "13.23%", "Testing Exposure": "80.0%", - "API Exposure": "13.52%", + "API Exposure": "13.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "7.36%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.71%", + "Documentation Exposure": "99.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -512091,7 +512091,7 @@ "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 19, - "Exposed API / Public Exports": 77, + "Exposed API / Public Exports": 74, "State Mutations / Variable Reassignments": 227, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, @@ -512213,9 +512213,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6117.45, - "Y": 1.59, - "Z": -6142.37 + "X": -6110.68, + "Y": 1.57, + "Z": -6135.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512227,7 +512227,7 @@ "Total LOC": 468, "Coding LOC": 256, "Documentation LOC": 99, - "Structural Magnitude": 371.22, + "Structural Magnitude": 367.22, "Control Flow Ratio": "67.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -512240,14 +512240,14 @@ "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "12.33%", + "API Exposure": "12.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.82%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.37%", + "Documentation Exposure": "95.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -512363,7 +512363,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 47, + "Exposed API / Public Exports": 43, "State Mutations / Variable Reassignments": 200, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -512475,9 +512475,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5336.83, + "X": -5330.19, "Y": -269.26, - "Z": -5121.53 + "Z": -5114.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -512632,9 +512632,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6194.35, + "X": -6187.71, "Y": 77.41, - "Z": -6368.8 + "Z": -6361.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -512663,1388 +512663,45 @@ "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": 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": 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": 0, - "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": 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": 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": [] - } - } - }, - "python/twisted": { - "Directory Group Magnitude": 3319.48, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "23.38%", - "Error & Exception Exposure": "69.47%", - "Tech Debt Exposure": "22.93%", - "Testing Exposure": "80.0%", - "API Exposure": "2.97%", - "Concurrency Exposure": "3.16%", - "State Flux Exposure": "84.37%", - "Commented Logic Exposure": "4.05%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.99%", - "Hardcoded Payload Artifacts": "6.14%" - }, - "Files": { - "python/twisted/defer.py": { - "1. Artifact Identity": { - "Filename": "defer.py", - "Path": "python/twisted/defer.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "Exception, TypeError, Enum", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 7272.24, - "Y": -60.79, - "Z": -4920.18 - }, - "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": 2565, - "Coding LOC": 1151, - "Documentation LOC": 956, - "Structural Magnitude": 881.12, - "Control Flow Ratio": "35.5%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.594 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.42%", - "Error & Exception Exposure": "79.34%", - "Tech Debt Exposure": "55.89%", - "Testing Exposure": "80.0%", - "API Exposure": "1.79%", - "Concurrency Exposure": "12.65%", - "State Flux Exposure": "93.55%", - "Commented Logic Exposure": "5.6%", - "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": "_runCallbacks", - "Structural Impact": 44.4, - "Lines of Code (LOC)": 153, - "Control Flow Branches": 25, - "Input Parameters": 1, - "Control Flow Ratio": "78.1%", - "Start Line": 1005, - "End Line": 1157 - }, - { - "Function Name": "_inlineCallbacks", - "Structural Impact": 42.0, - "Lines of Code (LOC)": 169, - "Control Flow Branches": 14, - "Input Parameters": 4, - "Control Flow Ratio": "46.7%", - "Start Line": 1805, - "End Line": 1973 - }, - { - "Function Name": "deferUntilLocked", - "Structural Impact": 24.1, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "64.7%", - "Start Line": 2475, - "End Line": 2541 - }, - { - "Function Name": "addCallbacks", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 66, - "Control Flow Branches": 6, - "Input Parameters": 7, - "Control Flow Ratio": "75.0%", - "Start Line": 480, - "End Line": 545 - }, - { - "Function Name": "_cbDeferred", - "Structural Impact": 21.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1554, - "End Line": 1578 - }, - { - "Function Name": "race", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "53.8%", - "Start Line": 1650, - "End Line": 1726 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "38.5%", - "Start Line": 183, - "End Line": 243 - }, - { - "Function Name": "_startRunCallbacks", - "Structural Impact": 13.3, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 974, - "End Line": 996 - }, - { - "Function Name": "__init__", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "75.0%", - "Start Line": 1484, - "End Line": 1552 - }, - { - "Function Name": "addTimeout", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 70, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "27.3%", - "Start Line": 768, - "End Line": 837 - }, - { - "Function Name": "cancel", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 946, - "End Line": 972 - }, - { - "Function Name": "__iter__", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1176, - "End Line": 1195 - }, - { - "Function Name": "put", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 2402, - "End Line": 2413 - }, - { - "Function Name": "asFuture", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "37.5%", - "Start Line": 1199, - "End Line": 1231 - }, - { - "Function Name": "_gotResultInlineCallbacks", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "66.7%", - "Start Line": 1777, - "End Line": 1801 - }, - { - "Function Name": "ensureDeferred", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1342, - "End Line": 1367 - }, - { - "Function Name": "inlineCallbacks", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2047, - "End Line": 2127 - }, - { - "Function Name": "succeeded", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1683, - "End Line": 1703 - }, - { - "Function Name": "get", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2415, - "End Line": 2432 - }, - { - "Function Name": "_cancelLock", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2495, - "End Line": 2512 - }, - { - "Function Name": "fromFuture", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1234, - "End Line": 1281 - }, - { - "Function Name": "fromCoroutine", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1284, - "End Line": 1331 - }, - { - "Function Name": "_parseDeferredListResult", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 1600, - "End Line": 1608 - }, - { - "Function Name": "errback", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 891, - "End Line": 928 - }, - { - "Function Name": "_tryLock", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 2516, - "End Line": 2537 - }, - { - "Function Name": "execute", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "40.0%", - "Start Line": 142, - "End Line": 157 - }, - { - "Function Name": "__del__", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 370, - "End Line": 388 - }, - { - "Function Name": "cancel", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1580, - "End Line": 1597 - }, - { - "Function Name": "__str__", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1159, - "End Line": 1172 - }, - { - "Function Name": "unwindGenerator", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2112, - "End Line": 2125 - }, - { - "Function Name": "failed", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1709, - "End Line": 1715 - }, - { - "Function Name": "addBoth", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 749, - "End Line": 764 - }, - { - "Function Name": "addCallback", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 619, - "End Line": 632 - }, - { - "Function Name": "addErrback", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 661, - "End Line": 674 - }, - { - "Function Name": "__init__", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 444, - "End Line": 474 - }, - { - "Function Name": "acquire", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2248, - "End Line": 2263 - }, - { - "Function Name": "acquire", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2320, - "End Line": 2335 - }, - { - "Function Name": "_getDebugTracebacks", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 358, - "End Line": 368 - }, - { - "Function Name": "convertCancelled", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 815, - "End Line": 823 - }, - { - "Function Name": "unpause", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 936, - "End Line": 944 - }, - { - "Function Name": "__init__", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 2461, - "End Line": 2473 - }, - { - "Function Name": "_cancelledToTimedOutError", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 279, - "End Line": 296 - }, - { - "Function Name": "__cmp__", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1400, - "End Line": 1411 - }, - { - "Function Name": "__init__", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2295, - "End Line": 2304 - }, - { - "Function Name": "run", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2167, - "End Line": 2195 - }, - { - "Function Name": "release", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2265, - "End Line": 2279 - }, - { - "Function Name": "release", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2337, - "End Line": 2352 - }, - { - "Function Name": "uncancel", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1269, - "End Line": 1276 - }, - { - "Function Name": "cancel", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1668, - "End Line": 1674 - }, - { - "Function Name": "cancelTimeout", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 825, - "End Line": 829 - }, - { - "Function Name": "adapt", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1253, - "End Line": 1258 - }, - { - "Function Name": "gatherResults", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1611, - "End Line": 1637 - }, - { - "Function Name": "chainDeferred", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 839, - "End Line": 864 - }, - { - "Function Name": "checkCancel", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1216, - "End Line": 1218 - }, - { - "Function Name": "maybeFail", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1220, - "End Line": 1222 - }, - { - "Function Name": "maybeSucceed", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1224, - "End Line": 1226 - }, - { - "Function Name": "callback", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 866, - "End Line": 889 - }, - { - "Function Name": "_handleCancelInlineCallbacks", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1992, - "End Line": 2014 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 569, - "End Line": 578 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 599, - "End Line": 608 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 686, - "End Line": 695 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 706 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 709, - "End Line": 717 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 720, - "End Line": 729 - }, - { - "Function Name": "__aexit__", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2203, - "End Line": 2212 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 566 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 581, - "End Line": 587 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 590, - "End Line": 596 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 611, - "End Line": 617 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 635, - "End Line": 641 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 644, - "End Line": 650 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 659 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 677, - "End Line": 683 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 732, - "End Line": 738 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 741, - "End Line": 747 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1425, - "End Line": 1431 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1434, - "End Line": 1440 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1442, - "End Line": 1449 - }, - { - "Function Name": "run", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2142, - "End Line": 2149 - }, - { - "Function Name": "run", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2152, - "End Line": 2159 - }, - { - "Function Name": "succeed", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 123 - }, - { - "Function Name": "_cancellableInlineCallbacks", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2017, - "End Line": 2037 - }, - { - "Function Name": "_addCancelCallbackToDeferred", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1976, - "End Line": 1989 - }, - { - "Function Name": "run", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2162, - "End Line": 2165 - }, - { - "Function Name": "_cancelAcquire", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2234, - "End Line": 2246 - }, - { - "Function Name": "_cancelAcquire", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2306, - "End Line": 2318 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2380, - "End Line": 2386 - }, - { - "Function Name": "_cancelGet", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2388, - "End Line": 2400 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 173 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 161, - "End Line": 164 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 180 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1380, - "End Line": 1383 - }, - { - "Function Name": "fail", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 139 - }, - { - "Function Name": "returnValue", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1746, - "End Line": 1759 - }, - { - "Function Name": "logError", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 99 - }, - { - "Function Name": "__init_subclass__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1333, - "End Line": 1336 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1645, - "End Line": 1647 - }, - { - "Function Name": "_releaseAndReturn", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2137, - "End Line": 2139 - }, - { - "Function Name": "setDebugging", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 262, - "End Line": 269 - }, - { - "Function Name": "__str__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1392, - "End Line": 1398 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1738, - "End Line": 1739 - }, - { - "Function Name": "pause", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 930, - "End Line": 934 - }, - { - "Function Name": "_continuation", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 998, - "End Line": 1003 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1385, - "End Line": 1390 - }, - { - "Function Name": "execute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2188, - "End Line": 2193 - }, - { - "Function Name": "__aenter__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2197, - "End Line": 2201 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1262, - "End Line": 1264 - }, - { - "Function Name": "timeout", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 250, - "End Line": 251 - }, - { - "Function Name": "passthru", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 254, - "End Line": 255 - }, - { - "Function Name": "_failthru", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 258, - "End Line": 259 - }, - { - "Function Name": "callbacks", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 477, - "End Line": 478 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2134, - "End Line": 2135 - }, - { - "Function Name": "acquire", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2215, - "End Line": 2216 - }, - { - "Function Name": "release", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2219, - "End Line": 2220 - }, - { - "Function Name": "getDebugging", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 276 - }, - { - "Function Name": "timeItOut", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 811 - } - ], + "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": 156, - "Sequential Logic Declarations": 283, - "Function Parameters": 119, - "Function/Method Declarations": 116, - "Class/Entity Declarations": 21, - "Defensive Programming Constructs": 53, - "Type/Safety Bypasses": 78, + "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": 93, - "State Mutations / Variable Reassignments": 146, - "Commented-out Code (Dead Logic)": 5, - "Structured Documentation Blocks": 77, + "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": 1, + "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": 35, - "Generic Type Abstractions": 220, - "Collection Iterators / Comprehensions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, - "Module Dependencies (Imports)": 22, + "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": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -514052,18 +512709,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, - "Fatal Aborts & Exceptions": 13, + "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": 508, - "Event Listeners & Subscribers": 41, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1035, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -514078,17 +512735,17 @@ "Local Inference & Tensor Math": 0, "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 10, - "Vectorized Math & Tensor Operations": 15, - "Core Var Decl": 133, - "Design Camel Case": 30, - "Design Snake Case": 75, - "Design Pascal Case": 5, - "Design Upper Case": 2, - "Design Short Vars": 6, - "Design Long Vars": 6, - "Duplicate Logic": 2, - "Orphaned Logic": 14, + "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, + "Design Upper Case": 0, + "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, @@ -514096,7 +512753,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -514112,56 +512769,381 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 25, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute 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": [] + } + } + }, + "python/fastapi/fastapi": { + "Directory Group Magnitude": 3292.3, + "File Count": 23, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.12%", + "Error & Exception Exposure": "39.91%", + "Tech Debt Exposure": "6.79%", + "Testing Exposure": "15.76%", + "API Exposure": "2.42%", + "Concurrency Exposure": "15.17%", + "State Flux Exposure": "15.13%", + "Commented Logic Exposure": "0.21%", + "Specification Exposure": "60.87%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/fastapi/fastapi/__init__.py": { + "1. Artifact Identity": { + "Filename": "__init__.py", + "Path": "python/fastapi/fastapi/__init__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 3127.42, + "Y": -258.21, + "Z": 2664.69 + }, + "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": 26, + "Coding LOC": 21, + "Documentation LOC": 1, + "Structural Magnitude": 15.42, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 60, + "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": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "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)": 20, + "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": 2, + "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": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "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": 0, + "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)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "abc", - "asyncio", - "attr", - "contextvars", - "enum", - "functools", - "incremental", - "inspect", - "sys", - "traceback", - "treq", - "twisted.internet", - "twisted.internet.defer", - "twisted.internet.interfaces", - "twisted.internet.task", - "twisted.logger", - "twisted.python", - "twisted.python.compat", - "twisted.python.deprecate", - "twisted.python.failure", - "types", - "typing", - "typing_extensions", - "warnings" + ".applications", + ".background", + ".datastructures", + ".exceptions", + ".param_functions", + ".requests", + ".responses", + ".routing", + ".websockets", + "starlette" ] }, - "python/twisted/http.py": { + "python/fastapi/fastapi/__main__.py": { "1. Artifact Identity": { - "Filename": "http.py", - "Path": "python/twisted/http.py", + "Filename": "__main__.py", + "Path": "python/fastapi/fastapi/__main__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2443.89, + "Y": -218.58, + "Z": 3754.92 + }, + "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": 4, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 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": 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)": 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": 0, + "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": 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": 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": [ + "fastapi.cli" + ] + }, + "python/fastapi/fastapi/applications.py": { + "1. Artifact Identity": { + "Filename": "applications.py", + "Path": "python/fastapi/fastapi/applications.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Exception, Interface, basic.LineReceiver", + "Parent Entity": "Starlette", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7587.57, - "Y": -58.65, - "Z": -4922.35 + "X": 2549.13, + "Y": -204.67, + "Z": 3293.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514170,1593 +513152,586 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 3481, - "Coding LOC": 1513, - "Documentation LOC": 1339, - "Structural Magnitude": 1395.06, - "Control Flow Ratio": "44.2%", - "Popularity Rank": 9, + "Total LOC": 4750, + "Coding LOC": 1843, + "Documentation LOC": 2240, + "Structural Magnitude": 493.96, + "Control Flow Ratio": "18.9%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.923 + "Raw Cognitive Density": 0.104 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "33.31%", - "Error & Exception Exposure": "75.23%", - "Tech Debt Exposure": "11.53%", + "Cognitive Load Exposure": "3.52%", + "Error & Exception Exposure": "62.44%", + "Tech Debt Exposure": "8.59%", "Testing Exposure": "80.0%", - "API Exposure": "3.29%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.82%", - "Commented Logic Exposure": "5.23%", + "API Exposure": "7.55%", + "Concurrency Exposure": "14.89%", + "State Flux Exposure": "17.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.19%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "addCookie", - "Structural Impact": 64.6, - "Lines of Code (LOC)": 115, - "Control Flow Branches": 16, - "Input Parameters": 11, - "Control Flow Ratio": "69.6%", - "Start Line": 1322, - "End Line": 1436 - }, - { - "Function Name": "write", - "Structural Impact": 36.5, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 18, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 1249, - "End Line": 1320 - }, - { - "Function Name": "lineReceived", - "Structural Impact": 32.7, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 2361, - "End Line": 2425 - }, - { - "Function Name": "requestReceived", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 10, - "Input Parameters": 4, - "Control Flow Ratio": "83.3%", - "Start Line": 1038, - "End Line": 1096 - }, - { - "Function Name": "_maybeChooseTransferDecoder", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "56.2%", - "Start Line": 2439, - "End Line": 2475 - }, - { - "Function Name": "parse_qs", - "Structural Impact": 21.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 366, - "End Line": 391 - }, - { - "Function Name": "stringToDatetime", - "Structural Impact": 21.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 455, - "End Line": 507 - }, - { - "Function Name": "_dataReceived_CHUNK_LENGTH", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 1999, - "End Line": 2050 - }, - { - "Function Name": "checkPersistence", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "63.6%", - "Start Line": 2626, - "End Line": 2667 - }, - { - "Function Name": "lineReceived", - "Structural Impact": 17.6, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 728, - "End Line": 767 - }, - { - "Function Name": "timegm", - "Structural Impact": 14.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "57.1%", - "Start Line": 435, - "End Line": 452 - }, - { - "Function Name": "writeHeaders", - "Structural Impact": 14.0, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 4, - "Input Parameters": 5, - "Control Flow Ratio": "80.0%", - "Start Line": 2743, - "End Line": 2777 - }, - { - "Function Name": "_parseRequestLine", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 245, - "End Line": 294 - }, - { - "Function Name": "setETag", - "Structural Impact": 13.7, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1518, - "End Line": 1549 - }, - { - "Function Name": "setHost", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "80.0%", - "Start Line": 1591, - "End Line": 1623 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 3242, - "End Line": 3289 - }, - { - "Function Name": "finish", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 1220, - "End Line": 1247 - }, - { - "Function Name": "headerReceived", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 2477, - "End Line": 2517 - }, - { - "Function Name": "setLastModified", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 1481, - "End Line": 1516 - }, - { - "Function Name": "_dataReceived_TRAILER", - "Structural Impact": 12.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2072, - "End Line": 2115 - }, - { - "Function Name": "combinedLogFormatter", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 2995, - "End Line": 3025 - }, - { - "Function Name": "__init__", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "50.0%", - "Start Line": 3350, - "End Line": 3389 - }, - { - "Function Name": "requestDone", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 2669, - "End Line": 2693 - }, - { - "Function Name": "getRequestHostname", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1564, - "End Line": 1579 - }, - { - "Function Name": "rawDataReceived", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2570, - "End Line": 2609 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1831, - "End Line": 1861 - }, - { - "Function Name": "registerProducer", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 2828, - "End Line": 2868 - }, - { - "Function Name": "_cleanup", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 958, - "End Line": 979 - }, - { - "Function Name": "parseCookies", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1009, - "End Line": 1028 - }, - { - "Function Name": "_escape", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2970, - "End Line": 2991 - }, - { - "Function Name": "_getMultiPartArgs", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 314, - "End Line": 335 - }, - { - "Function Name": "stopFactory", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 3455, - "End Line": 3463 - }, - { - "Function Name": "rawDataReceived", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 809, - "End Line": 818 - }, - { - "Function Name": "fromChunk", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 521, - "End Line": 541 - }, - { - "Function Name": "setResponseCode", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 1438, - "End Line": 1449 - }, - { - "Function Name": "_dataReceived_CRLF", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2052, - "End Line": 2070 - }, - { - "Function Name": "parseContentRange", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 544, - "End Line": 559 - }, - { - "Function Name": "_ensureBytes", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1380, - "End Line": 1396 - }, - { - "Function Name": "_authorize", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1677, - "End Line": 1693 - }, - { - "Function Name": "allHeadersReceived", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2611, - "End Line": 2624 - }, { "Function Name": "__init__", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 923, - "End Line": 956 - }, - { - "Function Name": "startFactory", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 3446, - "End Line": 3453 - }, - { - "Function Name": "pauseProducing", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2897, - "End Line": 2930 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1727, - "End Line": 1738 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2147, - "End Line": 2155 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2719, - "End Line": 2727 - }, - { - "Function Name": "urlparse", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 338, - "End Line": 363 - }, - { - "Function Name": "isSecure", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1656, - "End Line": 1675 - }, - { - "Function Name": "datetimeToString", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 394, - "End Line": 411 - }, - { - "Function Name": "noMoreData", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1863, - "End Line": 1880 - }, - { - "Function Name": "_dataReceived_BODY", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2117, - "End Line": 2134 - }, - { - "Function Name": "resumeProducing", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2932, - "End Line": 2949 - }, - { - "Function Name": "getClientIP", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1626, - "End Line": 1638 - }, - { - "Function Name": "unregisterProducer", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2870, - "End Line": 2883 - }, - { - "Function Name": "registerProducer", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1124, - "End Line": 1136 - }, - { - "Function Name": "_getContentFile", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 837, - "End Line": 843 - }, - { - "Function Name": "__eq__", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1747, - "End Line": 1765 - }, - { - "Function Name": "sendHeader", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 702, - "End Line": 708 - }, - { - "Function Name": "getHeader", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1147, - "End Line": 1162 - }, - { - "Function Name": "extractHeader", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 713, - "End Line": 726 - }, - { - "Function Name": "allContentReceived", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2519, - "End Line": 2545 - }, - { - "Function Name": "log", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3471, - "End Line": 3480 - }, - { - "Function Name": "_set_logFile", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3410, - "End Line": 3418 - }, - { - "Function Name": "datetimeToLogString", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 414, - "End Line": 432 - }, - { - "Function Name": "getUser", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1695, - "End Line": 1709 - }, - { - "Function Name": "getPassword", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1711, - "End Line": 1725 - }, - { - "Function Name": "isSecure", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2729, - "End Line": 2741 - }, - { - "Function Name": "notifyFinish", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1177, - "End Line": 1218 - }, - { - "Function Name": "getAllHeaders", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1551, - "End Line": 1562 - }, - { - "Function Name": "stopProducing", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2885, - "End Line": 2895 - }, - { - "Function Name": "handleResponseEnd", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 772, - "End Line": 781 - }, - { - "Function Name": "noMoreData", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2157, - "End Line": 2166 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2348, - "End Line": 2355 - }, - { - "Function Name": "timeoutConnection", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2695, - "End Line": 2702 - }, - { - "Function Name": "loseConnection", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1740, - "End Line": 1745 + "Structural Impact": 110.7, + "Lines of Code (LOC)": 960, + "Control Flow Branches": 12, + "Input Parameters": 39, + "Control Flow Ratio": "70.6%", + "Start Line": 61, + "End Line": 1020 }, { - "Function Name": "_get_logFile", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "setup", + "Structural Impact": 19.7, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 11, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 3404, - "End Line": 3407 - }, - { - "Function Name": "_protocolUpgradeForWebsockets", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2547, - "End Line": 2568 - }, - { - "Function Name": "setHeader", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1451, - "End Line": 1464 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1986, - "End Line": 1997 - }, - { - "Function Name": "buildProtocol", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3429, - "End Line": 3444 - }, - { - "Function Name": "redirect", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1466, - "End Line": 1479 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1826, - "End Line": 1829 - }, - { - "Function Name": "handleStatus", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 789, - "End Line": 789 + "Control Flow Ratio": "55.0%", + "Start Line": 1105, + "End Line": 1158 }, { - "Function Name": "gotLength", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Function Name": "get", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 997, - "End Line": 1007 + "Start Line": 1567, + "End Line": 1938 }, { - "Function Name": "getCookie", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "put", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1164, - "End Line": 1175 + "Start Line": 1940, + "End Line": 2316 }, { - "Function Name": "requestFactory", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "post", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3165, - "End Line": 3176 + "Start Line": 2318, + "End Line": 2694 }, { - "Function Name": "site", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "delete", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3188, - "End Line": 3199 + "Start Line": 2696, + "End Line": 3067 }, { - "Function Name": "timeOut", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "options", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3209, - "End Line": 3220 + "Start Line": 3069, + "End Line": 3440 }, { - "Function Name": "__repr__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "head", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1098, - "End Line": 1112 + "Start Line": 3442, + "End Line": 3813 }, { - "Function Name": "getClientAddress", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "patch", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1640, - "End Line": 1654 + "Start Line": 3815, + "End Line": 4191 }, { - "Function Name": "write", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "trace", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2779, - "End Line": 2788 + "Start Line": 4193, + "End Line": 4564 }, { - "Function Name": "writeSequence", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2790, - "End Line": 2799 + "Function Name": "include_router", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 204, + "Control Flow Branches": 1, + "Input Parameters": 11, + "Control Flow Ratio": "33.3%", + "Start Line": 1362, + "End Line": 1565 }, { - "Function Name": "getClientAddress", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, + "Function Name": "build_middleware_stack", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3050, - "End Line": 3064 - }, - { - "Function Name": "proxiedLogFormatter", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3093, - "End Line": 3101 - }, - { - "Function Name": "callLater", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3231, - "End Line": 3240 + "Control Flow Ratio": "66.7%", + "Start Line": 1022, + "End Line": 1070 }, { - "Function Name": "sendCommand", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, + "Function Name": "api_route", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 59, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 699, - "End Line": 700 + "Start Line": 1222, + "End Line": 1280 }, { - "Function Name": "handleContentChunk", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "add_api_route", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 56, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 25, "Control Flow Ratio": "0.0%", - "Start Line": 1030, - "End Line": 1036 + "Start Line": 1165, + "End Line": 1220 }, { - "Function Name": "forceAbortClient", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "openapi", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2704, - "End Line": 2717 - }, - { - "Function Name": "requestReceived", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 610 + "Control Flow Ratio": "66.7%", + "Start Line": 1108, + "End Line": 1118 }, { - "Function Name": "handleHeader", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "websocket", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 64, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 799, - "End Line": 799 + "Start Line": 1297, + "End Line": 1360 }, { - "Function Name": "noLongerQueued", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 984, - "End Line": 995 + "Function Name": "__call__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1160, + "End Line": 1163 }, { - "Function Name": "registerProducer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "vibe", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2193, - "End Line": 2193 - }, - { - "Function Name": "_openLogFile", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3465, - "End Line": 3469 - }, - { - "Function Name": "_parseContentType", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 305 - }, - { - "Function Name": "toChunk", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 518 - }, - { - "Function Name": "_sanitize", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1398, - "End Line": 1406 - }, - { - "Function Name": "getHost", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1581, - "End Line": 1589 - }, - { - "Function Name": "_dataReceived_FINISHED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2136, - "End Line": 2145 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2357, - "End Line": 2359 - }, - { - "Function Name": "_finishRequestBody", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2427, - "End Line": 2429 - }, - { - "Function Name": "loseConnection", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2817, - "End Line": 2826 + "Start Line": 4566, + "End Line": 4618 }, { - "Function Name": "_respondToBadRequestAndDisconnect", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, + "Function Name": "openapi", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2958, - "End Line": 2967 - }, - { - "Function Name": "factory", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3151, - "End Line": 3153 - }, - { - "Function Name": "writeSequence", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 666, - "End Line": 667 - }, - { - "Function Name": "__getattr__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 669, - "End Line": 670 + "Control Flow Ratio": "33.3%", + "Start Line": 1072, + "End Line": 1103 }, { - "Function Name": "connectionLost", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "middleware", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 45, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 769, - "End Line": 770 + "Start Line": 4658, + "End Line": 4702 }, { - "Function Name": "handleResponsePart", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "exception_handler", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 46, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 783, - "End Line": 784 - }, - { - "Function Name": "process", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1114, - "End Line": 1120 - }, - { - "Function Name": "__hash__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1767, - "End Line": 1773 + "Start Line": 4704, + "End Line": 4749 }, { - "Function Name": "_failChooseTransferDecoder", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, + "Function Name": "swagger_ui_html", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2431, - "End Line": 2437 + "Control Flow Ratio": "33.3%", + "Start Line": 1123, + "End Line": 1135 }, { - "Function Name": "getPeer", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "add_api_websocket_route", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 2801, - "End Line": 2807 + "Start Line": 1282, + "End Line": 1295 }, { - "Function Name": "getHost", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "decorator", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2809, - "End Line": 2815 + "Start Line": 1251, + "End Line": 1278 }, { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "on_event", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3040, - "End Line": 3041 - }, - { - "Function Name": "requestFactory", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3156, - "End Line": 3162 - }, - { - "Function Name": "site", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3179, - "End Line": 3185 + "Start Line": 4637, + "End Line": 4656 }, { - "Function Name": "_genericHTTPChannelProtocolFactory", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "websocket_route", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 3292, - "End Line": 3298 + "Start Line": 4620, + "End Line": 4627 }, { - "Function Name": "write", + "Function Name": "decorator", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3302, - "End Line": 3302 - }, - { - "Function Name": "unregisterProducer", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1138, - "End Line": 1143 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2341, - "End Line": 2346 - }, - { - "Function Name": "_send100Continue", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2951, - "End Line": 2956 - }, - { - "Function Name": "clientproto", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3068, - "End Line": 3073 - }, - { - "Function Name": "code", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3076, - "End Line": 3081 - }, - { - "Function Name": "sentLength", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3084, - "End Line": 3089 - }, - { - "Function Name": "factory", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3144, - "End Line": 3148 - }, - { - "Function Name": "timeOut", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3202, - "End Line": 3206 - }, - { - "Function Name": "callLater", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3223, - "End Line": 3228 + "Start Line": 1351, + "End Line": 1358 }, { - "Function Name": "_updateLogDateTime", + "Function Name": "redoc_html", "Structural Impact": 1.7, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3422, - "End Line": 3427 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 577 - }, - { - "Function Name": "gotLength", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 586, - "End Line": 586 - }, - { - "Function Name": "handleContentChunk", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 596, - "End Line": 596 - }, - { - "Function Name": "__eq__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 626, - "End Line": 626 - }, - { - "Function Name": "__ne__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 637, - "End Line": 637 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 664 - }, - { - "Function Name": "endHeaders", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 710, - "End Line": 711 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 786, - "End Line": 787 - }, - { - "Function Name": "handleEndHeaders", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 804, - "End Line": 804 - }, - { - "Function Name": "pauseProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2177, - "End Line": 2177 - }, - { - "Function Name": "resumeProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2185, - "End Line": 2185 + "Start Line": 1151, + "End Line": 1156 }, { - "Function Name": "unregisterProducer", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2201, - "End Line": 2201 + "Start Line": 4623, + "End Line": 4625 }, { - "Function Name": "stopProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2206, - "End Line": 2206 + "Control Flow Ratio": "0.0%", + "Start Line": 4698, + "End Line": 4700 }, { - "Function Name": "close", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3307, - "End Line": 3307 + "Start Line": 4745, + "End Line": 4747 }, { - "Function Name": "parseCookies", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "swagger_ui_redirect", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 605, - "End Line": 605 - }, + "Start Line": 1141, + "End Line": 1142 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 30, + "Sequential Logic Declarations": 129, + "Function Parameters": 32, + "Function/Method Declarations": 32, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 58, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 32, + "State Mutations / Variable Reassignments": 38, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 261, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 6, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 138, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 27, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 1, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 15, + "Event Publishers / Emitters": 2, + "Dependency Injection Constructs": 15, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "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": 3, + "Event Listeners & Subscribers": 3, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1811, + "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": 1, + "Core Var Decl": 340, + "Design Camel Case": 0, + "Design Snake Case": 305, + "Design Pascal Case": 35, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 44, + "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": 2, + "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)": 33, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + ".dependencies", + ".internal", + ".users", + "annotated_doc", + "collections.abc", + "enum", + "fastapi", + "fastapi.datastructures", + "fastapi.exception_handlers", + "fastapi.exceptions", + "fastapi.logger", + "fastapi.middleware.asyncexitstack", + "fastapi.openapi.docs", + "fastapi.openapi.utils", + "fastapi.params", + "fastapi.responses", + "fastapi.types", + "fastapi.utils", + "pydantic", + "starlette.applications", + "starlette.datastructures", + "starlette.exceptions", + "starlette.middleware", + "starlette.middleware.base", + "starlette.middleware.errors", + "starlette.middleware.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.routing", + "starlette.types", + "time", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/background.py": { + "1. Artifact Identity": { + "Filename": "background.py", + "Path": "python/fastapi/fastapi/background.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StarletteBackgroundTasks", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3743.55, + "Y": -183.6, + "Z": 3249.89 + }, + "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": 62, + "Coding LOC": 18, + "Documentation LOC": 28, + "Structural Magnitude": 5.66, + "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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "69.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", + "API Exposure": "5.3%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "__hash__", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "add_task", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 648, - "End Line": 648 + "Start Line": 40, + "End Line": 61 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 295, - "Sequential Logic Declarations": 372, - "Function Parameters": 156, - "Function/Method Declarations": 153, - "Class/Entity Declarations": 17, - "Defensive Programming Constructs": 52, - "Type/Safety Bypasses": 28, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 149, - "State Mutations / Variable Reassignments": 329, - "Commented-out Code (Dead Logic)": 4, - "Structured Documentation Blocks": 146, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 3, "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": 23, - "Generic Type Abstractions": 44, - "Collection Iterators / Comprehensions": 9, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 14, - "Module Dependencies (Imports)": 35, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, - "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 3, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -515767,26 +513742,26 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 14, - "Fatal Aborts & Exceptions": 33, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 4, - "Private / Encapsulated Scopes": 408, - "Event Listeners & Subscribers": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1410, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 4, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -515794,26 +513769,26 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 22, - "Core Var Decl": 292, - "Design Camel Case": 55, - "Design Snake Case": 199, - "Design Pascal Case": 13, - "Design Upper Case": 5, - "Design Short Vars": 20, - "Design Long Vars": 1, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "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": 129, + "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 8, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -515827,65 +513802,36 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 34, - "Direct Downstream (Dependency Blast Radius)": 9, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "base64", - "binascii", - "calendar", - "collections", - "email", - "email.message", - "incremental", - "io", - "math", - "os", - "re", - "tempfile", - "time", - "twisted.internet", - "twisted.internet._producer_helpers", - "twisted.internet.defer", - "twisted.internet.interfaces", - "twisted.logger", - "twisted.protocols", - "twisted.python", - "twisted.python.compat", - "twisted.python.components", - "twisted.python.deprecate", - "twisted.python.failure", - "twisted.web._abnf", - "twisted.web._http2", - "twisted.web._responses", - "twisted.web.http_headers", - "twisted.web.iweb", + "annotated_doc", + "collections.abc", + "fastapi", + "starlette.background", "typing", - "urllib.parse", - "warnings", - "zope.interface" + "typing_extensions" ] }, - "python/twisted/reflect.py": { + "python/fastapi/fastapi/cli.py": { "1. Artifact Identity": { - "Filename": "reflect.py", - "Path": "python/twisted/reflect.py", + "Filename": "cli.py", + "Path": "python/fastapi/fastapi/cli.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Exception, ValueError, InvalidName", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7867.13, - "Y": -135.82, - "Z": -4487.57 + "X": 2114.9, + "Y": -215.57, + "Z": 3529.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -515894,342 +513840,724 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 687, - "Coding LOC": 295, - "Documentation LOC": 249, - "Structural Magnitude": 264.9, - "Control Flow Ratio": "40.6%", + "Total LOC": 14, + "Coding LOC": 10, + "Documentation LOC": 0, + "Structural Magnitude": 3.5, + "Control Flow Ratio": "33.3%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.753 + "Raw Cognitive Density": 0.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.16%", - "Error & Exception Exposure": "45.82%", - "Tech Debt Exposure": "13.92%", - "Testing Exposure": "80.0%", - "API Exposure": "3.52%", + "Cognitive Load Exposure": "5.52%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "44.26%", - "Commented Logic Exposure": "5.37%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.94%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "objgrep", - "Structural Impact": 62.9, - "Lines of Code (LOC)": 117, - "Control Flow Branches": 18, - "Input Parameters": 8, - "Control Flow Ratio": "66.7%", - "Start Line": 534, - "End Line": 650 - }, - { - "Function Name": "addMethodNamesToDict", - "Structural Impact": 19.9, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 48, - "End Line": 87 - }, - { - "Function Name": "accumulateMethods", - "Structural Impact": 19.9, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 109, - "End Line": 149 - }, - { - "Function Name": "namedAny", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "81.8%", - "Start Line": 249, - "End Line": 310 - }, - { - "Function Name": "filenameToModuleName", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 313, - "End Line": 348 - }, - { - "Function Name": "accumulateClassDict", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 465, - "End Line": 499 - }, - { - "Function Name": "accumulateClassList", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 502, - "End Line": 511 - }, - { - "Function Name": "_importAndCheckStack", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 221, - "End Line": 246 - }, + "Function Name": "main", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 8, + "End Line": 13 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 4, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "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": 1, + "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": 1, + "Explicit Type Casts": 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, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, + "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": 0, + "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)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi_cli.cli" + ] + }, + "python/fastapi/fastapi/concurrency.py": { + "1. Artifact Identity": { + "Filename": "concurrency.py", + "Path": "python/fastapi/fastapi/concurrency.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2194.24, + "Y": -234.4, + "Z": 2647.47 + }, + "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": 42, + "Coding LOC": 31, + "Documentation LOC": 6, + "Structural Magnitude": 12.52, + "Control Flow Ratio": "10.0%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.3 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "14.19%", + "Error & Exception Exposure": "56.39%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.39%", + "Concurrency Exposure": "90.61%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.3%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "safe_str", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, + "Function Name": "contextmanager_in_threadpool", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 24, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 418, - "End Line": 435 - }, - { - "Function Name": "_determineClassName", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 365, - "End Line": 373 - }, + "Start Line": 18, + "End Line": 41 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 3, + "Sequential Logic Declarations": 27, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 4, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 9, + "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": 1, + "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": 8, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 17, + "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)": 3, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 4, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "anyio", + "anyio.to_thread", + "collections.abc", + "contextlib", + "starlette.concurrency", + "typing" + ] + }, + "python/fastapi/fastapi/datastructures.py": { + "1. Artifact Identity": { + "Filename": "datastructures.py", + "Path": "python/fastapi/fastapi/datastructures.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StarletteUploadFile", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3436.45, + "Y": -258.48, + "Z": 3249.77 + }, + "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": 187, + "Coding LOC": 84, + "Documentation LOC": 60, + "Structural Magnitude": 50.88, + "Control Flow Ratio": "3.1%", + "Popularity Rank": 8, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.772 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "26.08%", + "Error & Exception Exposure": "88.28%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.44%", + "API Exposure": "4.7%", + "Concurrency Exposure": "99.01%", + "State Flux Exposure": "12.74%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "58.1%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "_safeFormat", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, + "Function Name": "_validate", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "25.0%", - "Start Line": 376, - "End Line": 400 + "Start Line": 133, + "End Line": 136 }, { - "Function Name": "requireModule", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 17, + "Function Name": "__eq__", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 2, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 176, - "End Line": 192 - }, - { - "Function Name": "safe_repr", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 403, - "End Line": 415 - }, - { - "Function Name": "namedModule", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 152, - "End Line": 161 - }, - { - "Function Name": "_determineClass", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 358, - "End Line": 362 + "Start Line": 167, + "End Line": 168 }, { - "Function Name": "fullFuncName", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 451, - "End Line": 455 + "Function Name": "write", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 84 }, { - "Function Name": "prefixedMethodNames", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 18, + "Function Name": "seek", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 45 + "Start Line": 104, + "End Line": 122 }, { - "Function Name": "prefixedMethods", + "Function Name": "read", "Structural Impact": 2.6, "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 106 + "Start Line": 86, + "End Line": 102 }, { - "Function Name": "__init__", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, + "Function Name": "__get_pydantic_core_schema__", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 443, - "End Line": 445 + "Start Line": 145, + "End Line": 150 }, { - "Function Name": "namedObject", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "__get_pydantic_json_schema__", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 170 + "Start Line": 139, + "End Line": 142 }, { - "Function Name": "__call__", + "Function Name": "close", "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 447, - "End Line": 448 + "Start Line": 124, + "End Line": 130 }, { - "Function Name": "isSame", + "Function Name": "__init__", "Structural Impact": 1.8, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 514, - "End Line": 515 + "Start Line": 161, + "End Line": 162 }, { - "Function Name": "isLike", + "Function Name": "Default", "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 518, - "End Line": 519 + "Start Line": 174, + "End Line": 181 }, { - "Function Name": "isOfType", - "Structural Impact": 1.8, + "Function Name": "__bool__", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 527 - }, + "Start Line": 164, + "End Line": 165 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 63, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 12, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 12, + "State Mutations / Variable Reassignments": 1, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 10, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 9, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 3, + "Generic Type Abstractions": 16, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 12, + "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": 2, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 13, + "Event Listeners & Subscribers": 2, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 67, + "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": 2, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "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, + "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)": 7, + "Direct Downstream (Dependency Blast Radius)": 8, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "._compat.v2", + "annotated_doc", + "collections.abc", + "fastapi", + "pydantic", + "starlette.datastructures", + "typing" + ] + }, + "python/fastapi/fastapi/encoders.py": { + "1. Artifact Identity": { + "Filename": "encoders.py", + "Path": "python/fastapi/fastapi/encoders.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2282.54, + "Y": -216.84, + "Z": 2898.79 + }, + "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": 348, + "Coding LOC": 257, + "Documentation LOC": 67, + "Structural Magnitude": 152.24, + "Control Flow Ratio": "34.5%", + "Popularity Rank": 4, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.218 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.08%", + "Error & Exception Exposure": "74.75%", + "Tech Debt Exposure": "17.84%", + "Testing Exposure": "2.53%", + "API Exposure": "3.67%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "23.96%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.91%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "findInstances", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 531 + "Function Name": "jsonable_encoder", + "Structural Impact": 122.5, + "Lines of Code (LOC)": 236, + "Control Flow Branches": 34, + "Input Parameters": 9, + "Control Flow Ratio": "58.6%", + "Start Line": 112, + "End Line": 347 }, { - "Function Name": "qual", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "decimal_encoder", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 351, - "End Line": 355 + "Control Flow Ratio": "50.0%", + "Start Line": 43, + "End Line": 65 }, { - "Function Name": "getClass", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "generate_encoders_by_class_tuples", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 462 + "Control Flow Ratio": "33.3%", + "Start Line": 98, + "End Line": 106 }, { - "Function Name": "modgrep", + "Function Name": "isoformat", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 522, - "End Line": 523 + "Start Line": 37, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 67, - "Sequential Logic Declarations": 98, - "Function Parameters": 28, - "Function/Method Declarations": 28, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 30, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 72, + "Function Parameters": 8, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 21, + "Type/Safety Bypasses": 23, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 28, - "State Mutations / Variable Reassignments": 16, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 24, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, "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": 7, + "Generic Type Abstractions": 13, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, - "Module Dependencies (Imports)": 14, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 21, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -516240,27 +514568,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, - "Explicit Type Casts": 6, - "Fatal Aborts & Exceptions": 7, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 2, "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": 54, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 246, + "Structural Space Indentations": 225, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 0, + "Regex Execution": 0, + "Time Date Logic": 2, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -516269,12 +514597,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 52, - "Design Camel Case": 26, - "Design Snake Case": 25, - "Design Pascal Case": 1, + "Core Var Decl": 58, + "Design Camel Case": 0, + "Design Snake Case": 58, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -516301,45 +514629,51 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 21, + "Direct Downstream (Dependency Blast Radius)": 4, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "a", + "._compat", + "annotated_doc", "collections", - "io", - "os", - "path", - "pickle", + "collections.abc", + "dataclasses", + "datetime", + "decimal", + "enum", + "fastapi.exceptions", + "fastapi.types", + "ipaddress", + "pathlib", + "pydantic", + "pydantic.color", + "pydantic.networks", + "pydantic.types", + "pydantic_core", "re", - "sys", - "traceback", - "twisted.python.compat", - "twisted.python.deprecate", "types", - "weakref" + "typing", + "uuid" ] }, - "python/twisted/transport.py": { + "python/fastapi/fastapi/exception_handlers.py": { "1. Artifact Identity": { - "Filename": "transport.py", - "Path": "python/twisted/transport.py", + "Filename": "exception_handlers.py", + "Path": "python/fastapi/fastapi/exception_handlers.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Tuple[_DigestMod, bytes, bytes, int], protocol.Protocol, SSHTransportBase", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7598.2, - "Y": -69.43, - "Z": -5460.1 + "X": 2223.78, + "Y": -224.44, + "Z": 3568.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -516348,855 +514682,1058 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2264, - "Coding LOC": 1015, - "Documentation LOC": 886, - "Structural Magnitude": 778.4, - "Control Flow Ratio": "41.5%", - "Popularity Rank": 2, + "Total LOC": 35, + "Coding LOC": 28, + "Documentation LOC": 0, + "Structural Magnitude": 15.46, + "Control Flow Ratio": "4.2%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.598 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.63%", - "Error & Exception Exposure": "77.49%", - "Tech Debt Exposure": "10.38%", - "Testing Exposure": "80.0%", - "API Exposure": "3.28%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.84%", + "Cognitive Load Exposure": "17.36%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "7.05%", + "Concurrency Exposure": "90.61%", + "State Flux Exposure": "0.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": "24.56%" + "Documentation Exposure": "50.0%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 28.6, - "Lines of Code (LOC)": 121, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 864, - "End Line": 984 - }, - { - "Function Name": "getPacket", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "52.4%", - "Start Line": 662, - "End Line": 722 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 16.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 7, + "Function Name": "http_exception_handler", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 737, - "End Line": 780 - }, - { - "Function Name": "dispatchMessage", - "Structural Impact": 15.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "85.7%", - "Start Line": 782, - "End Line": 812 - }, - { - "Function Name": "_generateECSharedSecret", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 1394, - "End Line": 1428 + "Control Flow Ratio": "25.0%", + "Start Line": 11, + "End Line": 17 }, { - "Function Name": "isEncrypted", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, + "Function Name": "request_validation_exception_handler", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1252, - "End Line": 1269 + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 26 }, { - "Function Name": "isVerified", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, + "Function Name": "websocket_request_validation_exception_handler", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1271, - "End Line": 1288 - }, - { - "Function Name": "sendPacket", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 623, - "End Line": 660 - }, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 34 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 23, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 4, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 3, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 8, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 4, + "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": 1, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, + "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": 5, + "Design Camel Case": 0, + "Design Snake Case": 5, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "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)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi.encoders", + "fastapi.exceptions", + "fastapi.utils", + "fastapi.websockets", + "starlette.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.status" + ] + }, + "python/fastapi/fastapi/exceptions.py": { + "1. Artifact Identity": { + "Filename": "exceptions.py", + "Path": "python/fastapi/fastapi/exceptions.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "TypedDict, total=False, StarletteHTTPException, StarletteWebSocketException", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3338.85, + "Y": -269.7, + "Z": 2890.29 + }, + "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": 257, + "Coding LOC": 111, + "Documentation LOC": 92, + "Structural Magnitude": 69.82, + "Control Flow Ratio": "18.0%", + "Popularity Rank": 33, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.561 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "15.96%", + "Error & Exception Exposure": "86.63%", + "Tech Debt Exposure": "92.09%", + "Testing Exposure": "2.49%", + "API Exposure": "3.86%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "98.35%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "23.37%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 19, + "Function Name": "_format_endpoint_context", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1478, - "End Line": 1496 - }, - { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1805, - "End Line": 1850 - }, - { - "Function Name": "ssh_KEX_DH_GEX_REQUEST_OLD", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1596, - "End Line": 1631 + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 193, + "End Line": 202 }, { - "Function Name": "_ssh_KEX_ECDH_REPLY", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 66, + "Function Name": "__str__", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1852, - "End Line": 1917 - }, - { - "Function Name": "_encodeECPublicKey", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1367, - "End Line": 1392 - }, - { - "Function Name": "_generateECPrivateKey", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1342, - "End Line": 1365 + "Control Flow Ratio": "60.0%", + "Start Line": 204, + "End Line": 209 }, { - "Function Name": "ssh_SERVICE_ACCEPT", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 2109, - "End Line": 2128 + "Function Name": "__init__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 175, + "End Line": 188 }, { - "Function Name": "sendKexInit", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 547, - "End Line": 595 + "Function Name": "__init__", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 83 }, { - "Function Name": "ssh_KEX_DH_GEX_GROUP", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1957, - "End Line": 1980 + "Function Name": "__init__", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 154 }, { - "Function Name": "_continue_KEX_ECDH_REPLY", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1875, - "End Line": 1896 + "Control Flow Ratio": "0.0%", + "Start Line": 213, + "End Line": 221 }, { - "Function Name": "sendDebug", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1075, - "End Line": 1089 + "Control Flow Ratio": "0.0%", + "Start Line": 235, + "End Line": 243 }, { - "Function Name": "_keySetup", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 1207, - "End Line": 1230 + "Control Flow Ratio": "0.0%", + "Start Line": 225, + "End Line": 231 }, { - "Function Name": "_continueGEX_REPLY", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 40, + "Function Name": "errors", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 190, + "End Line": 191 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 41, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 11, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 9, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 13, + "State Mutations / Variable Reassignments": 18, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, + "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": 12, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 6, + "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": 19, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 92, + "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": 13, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 6, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 2, + "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, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 33, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "annotated_doc", + "collections.abc", + "fastapi", + "pydantic", + "starlette.exceptions", + "typing" + ] + }, + "python/fastapi/fastapi/logger.py": { + "1. Artifact Identity": { + "Filename": "logger.py", + "Path": "python/fastapi/fastapi/logger.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2695.8, + "Y": -235.8, + "Z": 2501.53 + }, + "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": 4, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, + "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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 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": 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)": 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": 0, + "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": 0, + "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)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "logging" + ] + }, + "python/fastapi/fastapi/param_functions.py": { + "1. Artifact Identity": { + "Filename": "param_functions.py", + "Path": "python/fastapi/fastapi/param_functions.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3161.72, + "Y": -189.11, + "Z": 3463.71 + }, + "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": 2461, + "Coding LOC": 1379, + "Documentation LOC": 944, + "Structural Magnitude": 235.88, + "Control Flow Ratio": "16.3%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.005 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "2.42%", + "Error & Exception Exposure": "62.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.79%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Body", + "Structural Impact": 27.7, + "Lines of Code (LOC)": 328, "Control Flow Branches": 1, - "Input Parameters": 5, + "Input Parameters": 31, "Control Flow Ratio": "33.3%", - "Start Line": 2042, - "End Line": 2081 + "Start Line": 1323, + "End Line": 1650 }, { - "Function Name": "setKeys", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 21, + "Function Name": "Path", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 342, "Control Flow Branches": 1, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 145, - "End Line": 165 - }, - { - "Function Name": "_finishEphemeralDH", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1157, - "End Line": 1185 - }, - { - "Function Name": "_newKeys", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1232, - "End Line": 1250 - }, - { - "Function Name": "_allowedKeyExchangeMessageType", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 597, - "End Line": 621 - }, - { - "Function Name": "_getHostKeys", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1453, - "End Line": 1476 + "Start Line": 13, + "End Line": 354 }, { - "Function Name": "_continueKEXDH_REPLY", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 30, + "Function Name": "Query", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 342, "Control Flow Branches": 1, - "Input Parameters": 5, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 1982, - "End Line": 2011 - }, - { - "Function Name": "ssh_SERVICE_REQUEST", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1730, - "End Line": 1751 - }, - { - "Function Name": "ssh_NEWKEYS", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 2091, - "End Line": 2107 - }, - { - "Function Name": "sendExtInfo", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1128, - "End Line": 1141 - }, - { - "Function Name": "_getMAC", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 187, - "End Line": 221 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 523, - "End Line": 535 - }, - { - "Function Name": "verify", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 266, - "End Line": 286 - }, - { - "Function Name": "_getSupportedCiphers", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 289, - "End Line": 319 - }, - { - "Function Name": "_getCipher", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 167, - "End Line": 185 + "Start Line": 357, + "End Line": 698 }, { - "Function Name": "_ssh_KEXDH_REPLY", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 37, + "Function Name": "Header", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 315, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 30, "Control Flow Ratio": "33.3%", - "Start Line": 1919, - "End Line": 1955 + "Start Line": 701, + "End Line": 1015 }, { - "Function Name": "receiveDebug", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, + "Function Name": "Form", + "Structural Impact": 26.8, + "Lines of Code (LOC)": 313, "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1327, - "End Line": 1340 + "Input Parameters": 30, + "Control Flow Ratio": "33.3%", + "Start Line": 1653, + "End Line": 1965 }, { - "Function Name": "makeMAC", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 18, + "Function Name": "File", + "Structural Impact": 26.8, + "Lines of Code (LOC)": 313, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 247, - "End Line": 264 + "Input Parameters": 30, + "Control Flow Ratio": "33.3%", + "Start Line": 1968, + "End Line": 2280 }, { - "Function Name": "ssh_KEX_DH_GEX_REPLY", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 28, + "Function Name": "Cookie", + "Structural Impact": 26.1, + "Lines of Code (LOC)": 303, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 2013, - "End Line": 2040 + "Start Line": 1018, + "End Line": 1320 }, { - "Function Name": "sendDisconnect", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 1, + "Function Name": "Depends", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1110, - "End Line": 1126 + "Control Flow Ratio": "0.0%", + "Start Line": 2283, + "End Line": 2369 }, { - "Function Name": "_keySetup", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, + "Function Name": "Security", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1701, - "End Line": 1715 + "Control Flow Ratio": "0.0%", + "Start Line": 2372, + "End Line": 2460 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 7, + "Sequential Logic Declarations": 36, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 54, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 9, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 217, + "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": 39, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 9, + "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": 2, + "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": 58, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1352, + "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": 201, + "Design Camel Case": 0, + "Design Snake Case": 201, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 28, + "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)": 11, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + ".db", + ".security", + "annotated_doc", + "collections.abc", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", + "fastapi.openapi.models", + "pydantic", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/params.py": { + "1. Artifact Identity": { + "Filename": "params.py", + "Path": "python/fastapi/fastapi/params.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "Enum, FieldInfo, Param", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2849.54, + "Y": -211.02, + "Z": 2625.67 + }, + "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": 755, + "Coding LOC": 718, + "Documentation LOC": 0, + "Structural Magnitude": 288.56, + "Control Flow Ratio": "37.3%", + "Popularity Rank": 3, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.095 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.78%", + "Error & Exception Exposure": "81.94%", + "Tech Debt Exposure": "26.16%", + "Testing Exposure": "80.0%", + "API Exposure": "0.77%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "21.66%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "28.93%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "__init__", + "Structural Impact": 75.3, + "Lines of Code (LOC)": 106, + "Control Flow Branches": 11, + "Input Parameters": 33, + "Control Flow Ratio": "91.7%", + "Start Line": 470, + "End Line": 575 }, { - "Function Name": "ssh_KEX_DH_GEX_REQUEST", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1633, - "End Line": 1657 + "Function Name": "__init__", + "Structural Impact": 73.0, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 11, + "Input Parameters": 31, + "Control Flow Ratio": "91.7%", + "Start Line": 29, + "End Line": 131 }, { - "Function Name": "ssh_EXT_INFO", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 18, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 1041, - "End Line": 1058 + "Start Line": 306, + "End Line": 384 }, { - "Function Name": "_keySetup", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 3, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 2083, - "End Line": 2089 + "Start Line": 582, + "End Line": 660 }, { - "Function Name": "setService", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 1060, - "End Line": 1073 + "Start Line": 664, + "End Line": 742 }, { - "Function Name": "ssh_NEWKEYS", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, + "Function Name": "__init__", + "Structural Impact": 15.3, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 31, "Control Flow Ratio": "33.3%", - "Start Line": 1717, - "End Line": 1728 - }, - { - "Function Name": "_ssh_KEX_ECDH_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1498, - "End Line": 1553 - }, - { - "Function Name": "_ssh_KEXDH_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1555, - "End Line": 1594 - }, - { - "Function Name": "ssh_KEX_DH_GEX_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1659, - "End Line": 1699 - }, - { - "Function Name": "_getKey", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1187, - "End Line": 1205 + "Start Line": 140, + "End Line": 218 }, { "Function Name": "__init__", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 143 - }, - { - "Function Name": "receiveError", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1299, - "End Line": 1315 - }, - { - "Function Name": "verifyHostKey", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2142, - "End Line": 2155 - }, - { - "Function Name": "ssh_DISCONNECT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 986, - "End Line": 1001 - }, - { - "Function Name": "ssh_DEBUG", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1025, - "End Line": 1039 - }, - { - "Function Name": "encrypt", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 223, - "End Line": 233 - }, - { - "Function Name": "decrypt", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 235, - "End Line": 245 - }, - { - "Function Name": "_unsupportedVersionReceived", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 724, - "End Line": 735 - }, - { - "Function Name": "ssh_UNIMPLEMENTED", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1012, - "End Line": 1023 - }, - { - "Function Name": "update", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2170, - "End Line": 2180 - }, - { - "Function Name": "sendIgnore", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1091, - "End Line": 1100 - }, - { - "Function Name": "receiveUnimplemented", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1325 - }, - { - "Function Name": "requestService", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2130, - "End Line": 2138 - }, - { - "Function Name": "_startEphemeralDH", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1143, - "End Line": 1155 - }, - { - "Function Name": "_mpFromBytes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 62 - }, - { - "Function Name": "kexAlg", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 844, - "End Line": 848 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 537, - "End Line": 545 - }, - { - "Function Name": "getPeer", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 814, - "End Line": 823 - }, - { - "Function Name": "getHost", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 825, - "End Line": 834 - }, - { - "Function Name": "ssh_IGNORE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1003, - "End Line": 1003 - }, - { - "Function Name": "sendUnimplemented", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1108 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1797, - "End Line": 1803 - }, - { - "Function Name": "encryptor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2201, - "End Line": 2207 - }, - { - "Function Name": "decryptor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2209, - "End Line": 2215 + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 1, + "Input Parameters": 31, + "Control Flow Ratio": "50.0%", + "Start Line": 224, + "End Line": 300 }, { - "Function Name": "kexAlg", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 837, - "End Line": 841 + "Function Name": "__init__", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 1, + "Input Parameters": 31, + "Control Flow Ratio": "50.0%", + "Start Line": 390, + "End Line": 466 }, { - "Function Name": "loseConnection", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1290, - "End Line": 1295 + "Start Line": 133, + "End Line": 134 }, { - "Function Name": "connectionSecure", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2157, - "End Line": 2162 + "Start Line": 577, + "End Line": 578 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 144, - "Sequential Logic Declarations": 203, - "Function Parameters": 80, - "Function/Method Declarations": 77, - "Class/Entity Declarations": 8, - "Defensive Programming Constructs": 14, - "Type/Safety Bypasses": 10, + "Control Flow Branches": 28, + "Sequential Logic Declarations": 47, + "Function Parameters": 10, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 11, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 58, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 74, - "State Mutations / Variable Reassignments": 224, + "Exposed API / Public Exports": 11, + "State Mutations / Variable Reassignments": 20, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 84, + "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": 2, - "Generic Type Abstractions": 21, - "Collection Iterators / Comprehensions": 8, + "Generic Type Abstractions": 35, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 25, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "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": 1, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 2, "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": 6, - "Fatal Aborts & Exceptions": 10, + "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": 178, + "Private / Encapsulated Scopes": 96, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 943, + "Structural Space Indentations": 692, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -517212,30 +515749,30 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 5, - "Core Var Decl": 246, - "Design Camel Case": 80, - "Design Snake Case": 118, - "Design Pascal Case": 3, - "Design Upper Case": 32, - "Design Short Vars": 26, - "Design Long Vars": 15, - "Duplicate Logic": 0, + "Vectorized Math & Tensor Operations": 2, + "Core Var Decl": 459, + "Design Camel Case": 0, + "Design Snake Case": 247, + "Design Pascal Case": 212, + "Design Upper Case": 0, + "Design Short Vars": 32, + "Design Long Vars": 2, + "Duplicate Logic": 4, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 3, + "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": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 1, + "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, "Sec Tainted Injection": 0, @@ -517245,68 +515782,30 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 26, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "binascii", - "cryptography.exceptions", - "cryptography.hazmat.backends", - "cryptography.hazmat.decrepit.ciphers.algorithms", - "cryptography.hazmat.primitives", - "cryptography.hazmat.primitives.asymmetric", - "cryptography.hazmat.primitives.ciphers", - "cryptography.hazmat.primitives.ciphers.algorithms", - "hashlib", - "hmac", - "is", - "struct", - "twisted", - "twisted.conch.ssh", - "twisted.conch.ssh.common", - "twisted.conch.ssh.factory", - "twisted.conch.ssh.service", - "twisted.internet", - "twisted.logger", - "twisted.python", - "twisted.python.compat", - "twisted.python.failure", - "types", + "._compat", + ".datastructures", + "collections.abc", + "dataclasses", + "enum", + "fastapi.exceptions", + "fastapi.openapi.models", + "pydantic", + "pydantic.fields", "typing", - "zlib" + "typing_extensions", + "warnings" ] - } - } - }, - "python/fastapi/fastapi": { - "Directory Group Magnitude": 3317.3, - "File Count": 23, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "6.12%", - "Error & Exception Exposure": "39.91%", - "Tech Debt Exposure": "6.79%", - "Testing Exposure": "15.76%", - "API Exposure": "2.75%", - "Concurrency Exposure": "15.17%", - "State Flux Exposure": "15.13%", - "Commented Logic Exposure": "0.21%", - "Specification Exposure": "60.87%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.22%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/fastapi/fastapi/__init__.py": { + }, + "python/fastapi/fastapi/requests.py": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "python/fastapi/fastapi/__init__.py", + "Filename": "requests.py", + "Path": "python/fastapi/fastapi/requests.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -517316,9 +515815,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3127.51, - "Y": -258.21, - "Z": 2664.67 + "X": 3424.66, + "Y": -174.92, + "Z": 3740.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517327,12 +515826,12 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 21, - "Documentation LOC": 1, - "Structural Magnitude": 15.42, + "Total LOC": 3, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 5, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -517357,18 +515856,18 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 60, + "Sequential Logic Declarations": 6, "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, + "I/O and Network Boundaries": 2, "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, @@ -517379,14 +515878,14 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 20, + "Module Dependencies (Imports)": 2, "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": 2, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -517400,7 +515899,7 @@ "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": 0, @@ -517421,9 +515920,9 @@ "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": 0, @@ -517453,40 +515952,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 5, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - ".applications", - ".background", - ".datastructures", - ".exceptions", - ".param_functions", - ".requests", - ".responses", - ".routing", - ".websockets", - "starlette" + "starlette.requests" ] }, - "python/fastapi/fastapi/__main__.py": { + "python/fastapi/fastapi/responses.py": { "1. Artifact Identity": { - "Filename": "__main__.py", - "Path": "python/fastapi/fastapi/__main__.py", + "Filename": "responses.py", + "Path": "python/fastapi/fastapi/responses.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2443.9, - "Y": -218.58, - "Z": 3755.04 + "X": 2269.7, + "Y": -250.69, + "Z": 2507.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517495,64 +515986,85 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 86, + "Coding LOC": 47, + "Documentation LOC": 22, + "Structural Magnitude": 8.84, + "Control Flow Ratio": "17.9%", + "Popularity Rank": 26, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.99%", + "Error & Exception Exposure": "60.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "7.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "26.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "render", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 85 + }, + { + "Function Name": "render", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 53 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 10, + "Sequential Logic Declarations": 46, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "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, + "UI / View Layer Components": 2, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, + "Server-Side Rendering Contexts": 4, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -517572,7 +516084,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 26, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -517588,10 +516100,10 @@ "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": 0, + "Vectorized Math & Tensor Operations": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 8, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -517621,32 +516133,38 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 7, + "Direct Downstream (Dependency Blast Radius)": 26, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi.cli" + "fastapi.exceptions", + "fastapi.sse", + "orjson", + "starlette.responses", + "typing", + "typing_extensions", + "ujson" ] }, - "python/fastapi/fastapi/applications.py": { + "python/fastapi/fastapi/routing.py": { "1. Artifact Identity": { - "Filename": "applications.py", - "Path": "python/fastapi/fastapi/applications.py", + "Filename": "routing.py", + "Path": "python/fastapi/fastapi/routing.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Starlette", + "Parent Entity": "AbstractAsyncContextManager[_T], routing.WebSocketRoute, routing.Route", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2549.01, - "Y": -204.68, - "Z": 3294.06 + "X": 2823.59, + "Y": -207.95, + "Z": 3200.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517655,26 +516173,26 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4750, - "Coding LOC": 1843, - "Documentation LOC": 2240, - "Structural Magnitude": 499.96, - "Control Flow Ratio": "18.9%", - "Popularity Rank": 1, + "Total LOC": 4957, + "Coding LOC": 2505, + "Documentation LOC": 1869, + "Structural Magnitude": 1725.8, + "Control Flow Ratio": "45.3%", + "Popularity Rank": 4, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.104 + "Raw Cognitive Density": 0.503 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.52%", - "Error & Exception Exposure": "62.44%", - "Tech Debt Exposure": "8.59%", + "Cognitive Load Exposure": "13.57%", + "Error & Exception Exposure": "71.33%", + "Tech Debt Exposure": "11.4%", "Testing Exposure": "80.0%", - "API Exposure": "8.02%", - "Concurrency Exposure": "14.89%", - "State Flux Exposure": "17.15%", - "Commented Logic Exposure": "0.0%", + "API Exposure": "2.83%", + "Concurrency Exposure": "53.75%", + "State Flux Exposure": "74.67%", + "Commented Logic Exposure": "4.91%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -517682,285 +516200,585 @@ "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ + { + "Function Name": "get_request_handler", + "Structural Impact": 282.8, + "Lines of Code (LOC)": 379, + "Control Flow Branches": 63, + "Input Parameters": 16, + "Control Flow Ratio": "55.8%", + "Start Line": 351, + "End Line": 729 + }, { "Function Name": "__init__", - "Structural Impact": 110.7, - "Lines of Code (LOC)": 960, + "Structural Impact": 191.3, + "Lines of Code (LOC)": 165, + "Control Flow Branches": 33, + "Input Parameters": 28, + "Control Flow Ratio": "84.6%", + "Start Line": 812, + "End Line": 976 + }, + { + "Function Name": "include_router", + "Structural Impact": 123.5, + "Lines of Code (LOC)": 252, + "Control Flow Branches": 31, + "Input Parameters": 11, + "Control Flow Ratio": "81.6%", + "Start Line": 1578, + "End Line": 1829 + }, + { + "Function Name": "app", + "Structural Impact": 100.7, + "Lines of Code (LOC)": 346, + "Control Flow Branches": 58, + "Input Parameters": 1, + "Control Flow Ratio": "56.3%", + "Start Line": 382, + "End Line": 727 + }, + { + "Function Name": "__init__", + "Structural Impact": 94.7, + "Lines of Code (LOC)": 284, + "Control Flow Branches": 17, + "Input Parameters": 19, + "Control Flow Ratio": "73.9%", + "Start Line": 1032, + "End Line": 1315 + }, + { + "Function Name": "add_api_route", + "Structural Impact": 47.2, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 7, + "Input Parameters": 28, + "Control Flow Ratio": "70.0%", + "Start Line": 1336, + "End Line": 1417 + }, + { + "Function Name": "serialize_response", + "Structural Impact": 33.2, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 8, + "Input Parameters": 11, + "Control Flow Ratio": "66.7%", + "Start Line": 277, + "End Line": 317 + }, + { + "Function Name": "app", + "Structural Impact": 27.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 12, - "Input Parameters": 39, + "Input Parameters": 3, + "Control Flow Ratio": "63.2%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "app", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 3, "Control Flow Ratio": "70.6%", - "Start Line": 61, - "End Line": 1020 + "Start Line": 113, + "End Line": 131 }, { - "Function Name": "setup", - "Structural Impact": 19.7, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 11, + "Function Name": "request_response", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 14, "Input Parameters": 1, - "Control Flow Ratio": "55.0%", - "Start Line": 1105, - "End Line": 1158 + "Control Flow Ratio": "60.9%", + "Start Line": 97, + "End Line": 136 }, { "Function Name": "get", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1567, - "End Line": 1938 + "Start Line": 1831, + "End Line": 2206 }, { "Function Name": "put", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1940, - "End Line": 2316 + "Start Line": 2208, + "End Line": 2588 }, { "Function Name": "post", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2318, - "End Line": 2694 + "Start Line": 2590, + "End Line": 2970 }, { "Function Name": "delete", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2696, - "End Line": 3067 + "Start Line": 2972, + "End Line": 3347 }, { "Function Name": "options", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3069, - "End Line": 3440 + "Start Line": 3349, + "End Line": 3724 }, { "Function Name": "head", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3442, - "End Line": 3813 + "Start Line": 3726, + "End Line": 4106 }, { "Function Name": "patch", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3815, - "End Line": 4191 + "Start Line": 4108, + "End Line": 4488 }, { "Function Name": "trace", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 4193, - "End Line": 4564 + "Start Line": 4490, + "End Line": 4870 }, { - "Function Name": "include_router", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 204, - "Control Flow Branches": 1, - "Input Parameters": 11, - "Control Flow Ratio": "33.3%", - "Start Line": 1362, - "End Line": 1565 + "Function Name": "__init__", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "80.0%", + "Start Line": 770, + "End Line": 802 }, { - "Function Name": "build_middleware_stack", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 49, + "Function Name": "_merge_lifespan_context", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 209, + "End Line": 223 + }, + { + "Function Name": "_serialize_sse_item", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 500, + "End Line": 527 + }, + { + "Function Name": "merged_lifespan", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 213, + "End Line": 221 + }, + { + "Function Name": "get_websocket_app", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 35, "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "36.4%", + "Start Line": 732, + "End Line": 766 + }, + { + "Function Name": "_extract_endpoint_context", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 5, "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 254, + "End Line": 274 + }, + { + "Function Name": "_build_response_args", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1022, - "End Line": 1070 + "Start Line": 333, + "End Line": 348 }, { - "Function Name": "api_route", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 0, - "Input Parameters": 24, - "Control Flow Ratio": "0.0%", - "Start Line": 1222, - "End Line": 1280 + "Function Name": "matches", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 804, + "End Line": 808 }, { - "Function Name": "add_api_route", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 56, + "Function Name": "matches", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 998, + "End Line": 1002 + }, + { + "Function Name": "app", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 737, + "End Line": 764 + }, + { + "Function Name": "_serialize_data", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 471, + "End Line": 494 + }, + { + "Function Name": "api_route", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 61, "Control Flow Branches": 0, "Input Parameters": 25, "Control Flow Ratio": "0.0%", - "Start Line": 1165, - "End Line": 1220 + "Start Line": 1419, + "End Line": 1479 }, { - "Function Name": "openapi", - "Structural Impact": 7.6, + "Function Name": "add_event_handler", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 4905, + "End Line": 4922 + }, + { + "Function Name": "_keepalive_inserter", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 565, + "End Line": 578 + }, + { + "Function Name": "app", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 149, + "End Line": 160 + }, + { + "Function Name": "run_endpoint_function", + "Structural Impact": 6.5, "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 320, + "End Line": 330 + }, + { + "Function Name": "_startup", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1108, - "End Line": 1118 + "Control Flow Ratio": "60.0%", + "Start Line": 4873, + "End Line": 4886 + }, + { + "Function Name": "_shutdown", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 4889, + "End Line": 4902 + }, + { + "Function Name": "app", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 152, + "End Line": 157 + }, + { + "Function Name": "add_api_websocket_route", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "50.0%", + "Start Line": 1481, + "End Line": 1500 }, { "Function Name": "websocket", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 64, + "Structural Impact": 5.5, + "Lines of Code (LOC)": 66, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 1297, - "End Line": 1360 + "Start Line": 1502, + "End Line": 1567 }, { - "Function Name": "__call__", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 4, + "Function Name": "websocket_session", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 141, + "End Line": 162 + }, + { + "Function Name": "_sse_with_checkpoints", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1160, - "End Line": 1163 + "Start Line": 597, + "End Line": 605 }, { - "Function Name": "vibe", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 53, + "Function Name": "route", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 4566, - "End Line": 4618 + "Start Line": 1317, + "End Line": 1334 }, { - "Function Name": "openapi", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 32, + "Function Name": "_producer", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 556, + "End Line": 559 + }, + { + "Function Name": "_async_stream_raw", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1072, - "End Line": 1103 + "Start Line": 658, + "End Line": 665 }, { - "Function Name": "middleware", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 45, + "Function Name": "on_event", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4658, - "End Line": 4702 + "Start Line": 4932, + "End Line": 4956 }, { - "Function Name": "exception_handler", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 46, + "Function Name": "decorator", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4704, - "End Line": 4749 + "Start Line": 1449, + "End Line": 1477 }, { - "Function Name": "swagger_ui_html", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, + "Function Name": "__aexit__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 188 + }, + { + "Function Name": "get_route_handler", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 978, + "End Line": 996 + }, + { + "Function Name": "websocket_route", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1569, + "End Line": 1576 + }, + { + "Function Name": "_async_stream_jsonl", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "33.3%", - "Start Line": 1123, - "End Line": 1135 + "Start Line": 629, + "End Line": 634 }, { - "Function Name": "add_api_websocket_route", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 14, + "Function Name": "_wrap_gen_lifespan_context", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1282, - "End Line": 1295 + "Start Line": 192, + "End Line": 206 + }, + { + "Function Name": "_sync_stream_jsonl", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 641, + "End Line": 643 }, { "Function Name": "decorator", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 28, + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1251, - "End Line": 1278 + "Start Line": 1324, + "End Line": 1332 }, { - "Function Name": "on_event", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 20, + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4637, - "End Line": 4656 + "Start Line": 176, + "End Line": 177 }, { - "Function Name": "websocket_route", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4620, - "End Line": 4627 + "Start Line": 237, + "End Line": 238 }, { - "Function Name": "decorator", + "Function Name": "__aexit__", "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1351, - "End Line": 1358 + "Start Line": 243, + "End Line": 244 }, { - "Function Name": "redoc_html", + "Function Name": "__call__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 247 + }, + { + "Function Name": "decorator", "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1151, - "End Line": 1156 + "Start Line": 1561, + "End Line": 1565 }, { "Function Name": "decorator", @@ -517969,8 +516787,8 @@ "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4623, - "End Line": 4625 + "Start Line": 1572, + "End Line": 1574 }, { "Function Name": "decorator", @@ -517979,81 +516797,336 @@ "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4698, - "End Line": 4700 + "Start Line": 4952, + "End Line": 4954 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "__aenter__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4745, - "End Line": 4747 + "Start Line": 179, + "End Line": 180 }, { - "Function Name": "swagger_ui_redirect", + "Function Name": "wrapper", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1141, - "End Line": 1142 + "Start Line": 203, + "End Line": 204 + }, + { + "Function Name": "__aenter__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 241 + }, + { + "Function Name": "_serialize_item", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 625 + }, + { + "Function Name": "_sse_producer_cm", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 535, + "End Line": 536 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 129, - "Function Parameters": 32, - "Function/Method Declarations": 32, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 58, + "Control Flow Branches": 218, + "Sequential Logic Declarations": 263, + "Function Parameters": 65, + "Function/Method Declarations": 65, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 54, + "Type/Safety Bypasses": 106, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 38, - "State Mutations / Variable Reassignments": 38, + "Exposed API / Public Exports": 43, + "State Mutations / Variable Reassignments": 218, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 237, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 68, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 196, + "Collection Iterators / Comprehensions": 3, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 36, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 4, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 15, + "Event Publishers / Emitters": 13, + "Dependency Injection Constructs": 17, + "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": 8, + "Fatal Aborts & Exceptions": 9, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 92, + "Event Listeners & Subscribers": 13, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2434, + "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)": 26, + "Vectorized Math & Tensor Operations": 3, + "Core Var Decl": 604, + "Design Camel Case": 0, + "Design Snake Case": 521, + "Design Pascal Case": 82, + "Design Upper Case": 0, + "Design Short Vars": 2, + "Design Long Vars": 57, + "Duplicate Logic": 2, + "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": 3, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 1, + "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)": 35, + "Direct Downstream (Dependency Blast Radius)": 4, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "annotated_doc", + "anyio", + "anyio.abc", + "collections.abc", + "contextlib", + "email.message", + "enum", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", + "fastapi.dependencies.models", + "fastapi.dependencies.utils", + "fastapi.encoders", + "fastapi.exceptions", + "fastapi.sse", + "fastapi.types", + "fastapi.utils", + "functools", + "inspect", + "json", + "pydantic", + "starlette", + "starlette._exception_handler", + "starlette._utils", + "starlette.concurrency", + "starlette.datastructures", + "starlette.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.routing", + "starlette.types", + "starlette.websockets", + "types", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/sse.py": { + "1. Artifact Identity": { + "Filename": "sse.py", + "Path": "python/fastapi/fastapi/sse.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StreamingResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2718.27, + "Y": -206.74, + "Z": 3637.84 + }, + "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": 223, + "Coding LOC": 107, + "Documentation LOC": 77, + "Structural Magnitude": 64.84, + "Control Flow Ratio": "41.7%", + "Popularity Rank": 3, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.533 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "14.77%", + "Error & Exception Exposure": "77.52%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.51%", + "API Exposure": "2.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.57%", + "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": "format_sse_event", + "Structural Impact": 23.0, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "77.8%", + "Start Line": 146, + "End Line": 214 + }, + { + "Function Name": "_check_data_exclusive", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 136, + "End Line": 143 + }, + { + "Function Name": "_check_id_no_null", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 36, + "End Line": 39 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 15, + "Sequential Logic Declarations": 21, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 4, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 21, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 261, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 6, + "Structured Documentation Blocks": 14, + "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": 138, - "Collection Iterators / Comprehensions": 2, + "Generic Type Abstractions": 5, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 27, + "Metaprogramming & Reflection": 0, + "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": 15, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 15, + "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": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 3, + "Private / Encapsulated Scopes": 5, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1811, + "Structural Space Indentations": 94, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518070,13 +517143,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 340, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 305, - "Design Pascal Case": 35, - "Design Upper Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 1, "Design Short Vars": 0, - "Design Long Vars": 44, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -518085,7 +517158,7 @@ "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 2, + "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -518102,64 +517175,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 33, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 3, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - ".dependencies", - ".internal", - ".users", "annotated_doc", - "collections.abc", - "enum", - "fastapi", - "fastapi.datastructures", - "fastapi.exception_handlers", - "fastapi.exceptions", - "fastapi.logger", - "fastapi.middleware.asyncexitstack", - "fastapi.openapi.docs", - "fastapi.openapi.utils", - "fastapi.params", - "fastapi.responses", - "fastapi.types", - "fastapi.utils", "pydantic", - "starlette.applications", - "starlette.datastructures", - "starlette.exceptions", - "starlette.middleware", - "starlette.middleware.base", - "starlette.middleware.errors", - "starlette.middleware.exceptions", - "starlette.requests", "starlette.responses", - "starlette.routing", - "starlette.types", - "time", - "typing", - "typing_extensions" + "typing" ] }, - "python/fastapi/fastapi/background.py": { + "python/fastapi/fastapi/staticfiles.py": { "1. Artifact Identity": { - "Filename": "background.py", - "Path": "python/fastapi/fastapi/background.py", + "Filename": "staticfiles.py", + "Path": "python/fastapi/fastapi/staticfiles.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "StarletteBackgroundTasks", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3743.68, - "Y": -183.6, - "Z": 3249.95 + "X": 2002.24, + "Y": -261.44, + "Z": 3018.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518168,12 +517211,12 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 62, - "Coding LOC": 18, - "Documentation LOC": 28, - "Structural Magnitude": 5.66, + "Total LOC": 2, + "Coding LOC": 1, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -518181,57 +517224,46 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "69.12%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "5.3%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "add_task", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 61 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "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": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 3, + "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": 2, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518256,7 +517288,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, @@ -518273,12 +517305,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": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -518305,36 +517337,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "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": [ - "annotated_doc", - "collections.abc", - "fastapi", - "starlette.background", - "typing", - "typing_extensions" + "starlette.staticfiles" ] }, - "python/fastapi/fastapi/cli.py": { + "python/fastapi/fastapi/templating.py": { "1. Artifact Identity": { - "Filename": "cli.py", - "Path": "python/fastapi/fastapi/cli.py", + "Filename": "templating.py", + "Path": "python/fastapi/fastapi/templating.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2114.89, - "Y": -215.57, - "Z": 3529.45 + "X": 3414.82, + "Y": -180.13, + "Z": 2449.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518343,56 +517370,45 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 10, + "Total LOC": 2, + "Coding LOC": 1, "Documentation LOC": 0, - "Structural Magnitude": 3.5, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 2, + "Structural Magnitude": 10.52, + "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.04 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.52%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.33%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "main", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 8, - "End Line": 13 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 4, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -518402,7 +517418,7 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -518419,9 +517435,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "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, @@ -518431,7 +517447,7 @@ "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, @@ -518448,9 +517464,9 @@ "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, @@ -518481,30 +517497,30 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi_cli.cli" + "starlette.templating" ] }, - "python/fastapi/fastapi/concurrency.py": { + "python/fastapi/fastapi/testclient.py": { "1. Artifact Identity": { - "Filename": "concurrency.py", - "Path": "python/fastapi/fastapi/concurrency.py", + "Filename": "testclient.py", + "Path": "python/fastapi/fastapi/testclient.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2193.64, - "Y": -234.42, - "Z": 2647.15 + "X": 2799.83, + "Y": -228.99, + "Z": 4153.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518513,70 +517529,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 31, - "Documentation LOC": 6, - "Structural Magnitude": 13.52, - "Control Flow Ratio": "10.0%", - "Popularity Rank": 2, + "Total LOC": 2, + "Coding LOC": 1, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 185, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.19%", - "Error & Exception Exposure": "56.39%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "1.12%", - "Concurrency Exposure": "90.61%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.23%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "contextmanager_in_threadpool", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 18, - "End Line": 41 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 27, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "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": 4, + "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": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518590,18 +517595,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "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": 8, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518616,14 +517621,14 @@ "Local Inference & Tensor Math": 0, "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 3, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 5, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "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, @@ -518650,37 +517655,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 185, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "anyio", - "anyio.to_thread", - "collections.abc", - "contextlib", - "starlette.concurrency", - "typing" + "starlette.testclient" ] }, - "python/fastapi/fastapi/datastructures.py": { + "python/fastapi/fastapi/types.py": { "1. Artifact Identity": { - "Filename": "datastructures.py", - "Path": "python/fastapi/fastapi/datastructures.py", + "Filename": "types.py", + "Path": "python/fastapi/fastapi/types.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "StarletteUploadFile", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3436.58, - "Y": -258.48, - "Z": 3249.86 + "X": 3083.51, + "Y": -263.69, + "Z": 3769.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518689,170 +517688,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 187, - "Coding LOC": 84, - "Documentation LOC": 60, - "Structural Magnitude": 50.88, - "Control Flow Ratio": "3.1%", - "Popularity Rank": 8, + "Total LOC": 13, + "Coding LOC": 10, + "Documentation LOC": 0, + "Structural Magnitude": 15.2, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 25, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.772 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.08%", - "Error & Exception Exposure": "88.28%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "4.7%", - "Concurrency Exposure": "99.01%", - "State Flux Exposure": "12.74%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.1%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_validate", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 133, - "End Line": 136 - }, - { - "Function Name": "__eq__", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 167, - "End Line": 168 - }, - { - "Function Name": "write", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 84 - }, - { - "Function Name": "seek", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 122 - }, - { - "Function Name": "read", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 102 - }, - { - "Function Name": "__get_pydantic_core_schema__", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 150 - }, - { - "Function Name": "__get_pydantic_json_schema__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 139, - "End Line": 142 - }, - { - "Function Name": "close", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 130 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 161, - "End Line": 162 - }, - { - "Function Name": "Default", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 174, - "End Line": 181 - }, - { - "Function Name": "__bool__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 165 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 63, - "Function Parameters": 11, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 12, - "State Mutations / Variable Reassignments": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 10, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 9, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, - "Generic Type Abstractions": 16, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 5, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 12, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518866,18 +517754,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 1, + "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": 2, - "Private / Encapsulated Scopes": 13, - "Event Listeners & Subscribers": 2, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 67, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518893,11 +517781,11 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 2, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 1, + "Design Pascal Case": 4, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -518926,25 +517814,24 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 8, + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 25, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 9 }, "9. Extracted Dependencies": [ - "._compat.v2", - "annotated_doc", "collections.abc", - "fastapi", + "enum", "pydantic", - "starlette.datastructures", + "pydantic.main", + "types", "typing" ] }, - "python/fastapi/fastapi/encoders.py": { + "python/fastapi/fastapi/utils.py": { "1. Artifact Identity": { - "Filename": "encoders.py", - "Path": "python/fastapi/fastapi/encoders.py", + "Filename": "utils.py", + "Path": "python/fastapi/fastapi/utils.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -518954,9 +517841,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2282.51, - "Y": -216.84, - "Z": 2898.84 + "X": 2573.57, + "Y": -255.48, + "Z": 2455.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518965,103 +517852,133 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 348, - "Coding LOC": 257, - "Documentation LOC": 67, - "Structural Magnitude": 152.24, - "Control Flow Ratio": "34.5%", - "Popularity Rank": 4, + "Total LOC": 137, + "Coding LOC": 109, + "Documentation LOC": 6, + "Structural Magnitude": 57.48, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.218 + "Raw Cognitive Density": 0.183 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.08%", - "Error & Exception Exposure": "74.75%", - "Tech Debt Exposure": "17.84%", - "Testing Exposure": "2.53%", - "API Exposure": "3.67%", + "Cognitive Load Exposure": "8.54%", + "Error & Exception Exposure": "62.11%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "5.37%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "23.96%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.91%", + "Documentation Exposure": "48.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "jsonable_encoder", - "Structural Impact": 122.5, - "Lines of Code (LOC)": 236, - "Control Flow Branches": 34, - "Input Parameters": 9, - "Control Flow Ratio": "58.6%", - "Start Line": 112, - "End Line": 347 + "Function Name": "deep_dict_update", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "88.9%", + "Start Line": 103, + "End Line": 118 }, { - "Function Name": "decimal_encoder", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 23, + "Function Name": "create_model_field", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 20, "Control Flow Branches": 3, - "Input Parameters": 1, + "Input Parameters": 6, "Control Flow Ratio": "50.0%", - "Start Line": 43, - "End Line": 65 + "Start Line": 58, + "End Line": 77 }, { - "Function Name": "generate_encoders_by_class_tuples", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "is_body_allowed_for_status_code", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 3, "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 26, + "End Line": 40 + }, + { + "Function Name": "get_value_or_default", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 121, + "End Line": 136 + }, + { + "Function Name": "generate_operation_id_for_path", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 3, "Control Flow Ratio": "33.3%", - "Start Line": 98, - "End Line": 106 + "Start Line": 80, + "End Line": 92 }, { - "Function Name": "isoformat", + "Function Name": "generate_unique_id", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 100 + }, + { + "Function Name": "get_path_param_names", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 38 + "Start Line": 43, + "End Line": 44 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 72, - "Function Parameters": 8, - "Function/Method Declarations": 4, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 40, + "Function Parameters": 7, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 21, - "Type/Safety Bypasses": 23, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 9, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 7, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, + "Structured Documentation Blocks": 1, "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": 13, - "Collection Iterators / Comprehensions": 0, + "Generic Type Abstractions": 11, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 21, + "Module Dependencies (Imports)": 10, "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": 0, @@ -519072,26 +517989,26 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, + "Explicit Type Casts": 3, "Fatal Aborts & Exceptions": 2, "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": 2, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 225, + "Structural Space Indentations": 85, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 2, + "Regex Execution": 3, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -519100,10 +518017,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 58, + "Core Var Decl": 17, "Design Camel Case": 0, - "Design Snake Case": 58, - "Design Pascal Case": 0, + "Design Snake Case": 14, + "Design Pascal Case": 3, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -519132,51 +518049,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 2, + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "._compat", - "annotated_doc", - "collections", - "collections.abc", - "dataclasses", - "datetime", - "decimal", - "enum", + ".routing", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", "fastapi.exceptions", - "fastapi.types", - "ipaddress", - "pathlib", - "pydantic", - "pydantic.color", - "pydantic.networks", - "pydantic.types", - "pydantic_core", + "pydantic.fields", "re", - "types", "typing", - "uuid" + "warnings" ] }, - "python/fastapi/fastapi/exception_handlers.py": { + "python/fastapi/fastapi/websockets.py": { "1. Artifact Identity": { - "Filename": "exception_handlers.py", - "Path": "python/fastapi/fastapi/exception_handlers.py", + "Filename": "websockets.py", + "Path": "python/fastapi/fastapi/websockets.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2222.29, - "Y": -224.49, - "Z": 3569.25 + "X": 3533.76, + "Y": -238.75, + "Z": 3133.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519185,95 +518091,64 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 28, + "Total LOC": 4, + "Coding LOC": 3, "Documentation LOC": 0, - "Structural Magnitude": 18.46, - "Control Flow Ratio": "4.2%", - "Popularity Rank": 1, + "Structural Magnitude": 11.56, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 4, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.36 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.36%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", - "API Exposure": "9.9%", - "Concurrency Exposure": "90.61%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "84.74%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "http_exception_handler", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 11, - "End Line": 17 - }, - { - "Function Name": "request_validation_exception_handler", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 26 - }, - { - "Function Name": "websocket_request_validation_exception_handler", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 34 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 23, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 9, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 6, + "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": 4, + "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": 3, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 8, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 4, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -519288,12 +518163,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -519310,9 +518185,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -519342,39 +518217,56 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 8, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 4, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi.encoders", - "fastapi.exceptions", - "fastapi.utils", - "fastapi.websockets", - "starlette.exceptions", - "starlette.requests", - "starlette.responses", - "starlette.status" + "starlette.websockets" ] - }, - "python/fastapi/fastapi/exceptions.py": { + } + } + }, + "python/twisted": { + "Directory Group Magnitude": 3283.48, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "23.38%", + "Error & Exception Exposure": "69.47%", + "Tech Debt Exposure": "22.93%", + "Testing Exposure": "80.0%", + "API Exposure": "2.69%", + "Concurrency Exposure": "3.16%", + "State Flux Exposure": "84.37%", + "Commented Logic Exposure": "4.05%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "18.92%", + "Hardcoded Payload Artifacts": "6.14%" + }, + "Files": { + "python/twisted/defer.py": { "1. Artifact Identity": { - "Filename": "exceptions.py", - "Path": "python/fastapi/fastapi/exceptions.py", + "Filename": "defer.py", + "Path": "python/twisted/defer.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "TypedDict, total=False, StarletteHTTPException, StarletteWebSocketException", + "Parent Entity": "Exception, TypeError, Enum", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3338.97, - "Y": -269.69, - "Z": 2890.31 + "X": -7863.31, + "Y": -60.8, + "Z": 4268.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519383,102 +518275,892 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 257, - "Coding LOC": 111, - "Documentation LOC": 92, - "Structural Magnitude": 69.82, - "Control Flow Ratio": "18.0%", - "Popularity Rank": 33, + "Total LOC": 2565, + "Coding LOC": 1151, + "Documentation LOC": 956, + "Structural Magnitude": 881.12, + "Control Flow Ratio": "35.5%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.561 + "Raw Cognitive Density": 0.594 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.96%", - "Error & Exception Exposure": "86.63%", - "Tech Debt Exposure": "92.09%", - "Testing Exposure": "2.49%", - "API Exposure": "3.86%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.35%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "17.42%", + "Error & Exception Exposure": "79.34%", + "Tech Debt Exposure": "55.89%", + "Testing Exposure": "80.0%", + "API Exposure": "1.79%", + "Concurrency Exposure": "12.65%", + "State Flux Exposure": "93.55%", + "Commented Logic Exposure": "5.6%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.37%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_format_endpoint_context", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, + "Function Name": "_runCallbacks", + "Structural Impact": 44.4, + "Lines of Code (LOC)": 153, + "Control Flow Branches": 25, + "Input Parameters": 1, + "Control Flow Ratio": "78.1%", + "Start Line": 1005, + "End Line": 1157 + }, + { + "Function Name": "_inlineCallbacks", + "Structural Impact": 42.0, + "Lines of Code (LOC)": 169, + "Control Flow Branches": 14, + "Input Parameters": 4, + "Control Flow Ratio": "46.7%", + "Start Line": 1805, + "End Line": 1973 + }, + { + "Function Name": "deferUntilLocked", + "Structural Impact": 24.1, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "64.7%", + "Start Line": 2475, + "End Line": 2541 + }, + { + "Function Name": "addCallbacks", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 6, + "Input Parameters": 7, + "Control Flow Ratio": "75.0%", + "Start Line": 480, + "End Line": 545 + }, + { + "Function Name": "_cbDeferred", + "Structural Impact": 21.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1554, + "End Line": 1578 + }, + { + "Function Name": "race", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "53.8%", + "Start Line": 1650, + "End Line": 1726 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "38.5%", + "Start Line": 183, + "End Line": 243 + }, + { + "Function Name": "_startRunCallbacks", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 974, + "End Line": 996 + }, + { + "Function Name": "__init__", + "Structural Impact": 13.2, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "75.0%", + "Start Line": 1484, + "End Line": 1552 + }, + { + "Function Name": "addTimeout", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 70, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "27.3%", + "Start Line": 768, + "End Line": 837 + }, + { + "Function Name": "cancel", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 193, - "End Line": 202 + "Control Flow Ratio": "83.3%", + "Start Line": 946, + "End Line": 972 + }, + { + "Function Name": "__iter__", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1176, + "End Line": 1195 + }, + { + "Function Name": "put", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 2402, + "End Line": 2413 + }, + { + "Function Name": "asFuture", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "37.5%", + "Start Line": 1199, + "End Line": 1231 + }, + { + "Function Name": "_gotResultInlineCallbacks", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "66.7%", + "Start Line": 1777, + "End Line": 1801 + }, + { + "Function Name": "ensureDeferred", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1342, + "End Line": 1367 + }, + { + "Function Name": "inlineCallbacks", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2047, + "End Line": 2127 + }, + { + "Function Name": "succeeded", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1683, + "End Line": 1703 + }, + { + "Function Name": "get", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2415, + "End Line": 2432 + }, + { + "Function Name": "_cancelLock", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2495, + "End Line": 2512 + }, + { + "Function Name": "fromFuture", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1234, + "End Line": 1281 + }, + { + "Function Name": "fromCoroutine", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1284, + "End Line": 1331 + }, + { + "Function Name": "_parseDeferredListResult", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 1600, + "End Line": 1608 + }, + { + "Function Name": "errback", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 891, + "End Line": 928 + }, + { + "Function Name": "_tryLock", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 2516, + "End Line": 2537 + }, + { + "Function Name": "execute", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "40.0%", + "Start Line": 142, + "End Line": 157 + }, + { + "Function Name": "__del__", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 370, + "End Line": 388 + }, + { + "Function Name": "cancel", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1580, + "End Line": 1597 }, { "Function Name": "__str__", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 6, + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "60.0%", - "Start Line": 204, - "End Line": 209 + "Start Line": 1159, + "End Line": 1172 + }, + { + "Function Name": "unwindGenerator", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2112, + "End Line": 2125 + }, + { + "Function Name": "failed", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1709, + "End Line": 1715 + }, + { + "Function Name": "addBoth", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 749, + "End Line": 764 + }, + { + "Function Name": "addCallback", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 619, + "End Line": 632 + }, + { + "Function Name": "addErrback", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 661, + "End Line": 674 }, { "Function Name": "__init__", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 444, + "End Line": 474 + }, + { + "Function Name": "acquire", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2248, + "End Line": 2263 + }, + { + "Function Name": "acquire", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2320, + "End Line": 2335 + }, + { + "Function Name": "_getDebugTracebacks", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 358, + "End Line": 368 + }, + { + "Function Name": "convertCancelled", "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 815, + "End Line": 823 + }, + { + "Function Name": "unpause", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 936, + "End Line": 944 + }, + { + "Function Name": "__init__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 175, - "End Line": 188 + "Control Flow Ratio": "25.0%", + "Start Line": 2461, + "End Line": 2473 + }, + { + "Function Name": "_cancelledToTimedOutError", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 279, + "End Line": 296 + }, + { + "Function Name": "__cmp__", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1400, + "End Line": 1411 }, { "Function Name": "__init__", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 39, + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2295, + "End Line": 2304 + }, + { + "Function Name": "run", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 83 + "Start Line": 2167, + "End Line": 2195 }, { - "Function Name": "__init__", - "Structural Impact": 3.4, + "Function Name": "release", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2265, + "End Line": 2279 + }, + { + "Function Name": "release", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2337, + "End Line": 2352 + }, + { + "Function Name": "uncancel", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1269, + "End Line": 1276 + }, + { + "Function Name": "cancel", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1668, + "End Line": 1674 + }, + { + "Function Name": "cancelTimeout", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 825, + "End Line": 829 + }, + { + "Function Name": "adapt", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1253, + "End Line": 1258 + }, + { + "Function Name": "gatherResults", + "Structural Impact": 3.1, "Lines of Code (LOC)": 27, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 154 + "Start Line": 1611, + "End Line": 1637 }, { - "Function Name": "__init__", + "Function Name": "chainDeferred", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 839, + "End Line": 864 + }, + { + "Function Name": "checkCancel", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1216, + "End Line": 1218 + }, + { + "Function Name": "maybeFail", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1220, + "End Line": 1222 + }, + { + "Function Name": "maybeSucceed", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1224, + "End Line": 1226 + }, + { + "Function Name": "callback", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 866, + "End Line": 889 + }, + { + "Function Name": "_handleCancelInlineCallbacks", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1992, + "End Line": 2014 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 569, + "End Line": 578 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 599, + "End Line": 608 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 686, + "End Line": 695 + }, + { + "Function Name": "addBoth", "Structural Impact": 2.7, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 213, - "End Line": 221 + "Start Line": 698, + "End Line": 706 }, { - "Function Name": "__init__", + "Function Name": "addBoth", "Structural Impact": 2.7, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 235, - "End Line": 243 + "Start Line": 709, + "End Line": 717 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 720, + "End Line": 729 + }, + { + "Function Name": "__aexit__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2203, + "End Line": 2212 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 566 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 581, + "End Line": 587 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 590, + "End Line": 596 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 611, + "End Line": 617 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 635, + "End Line": 641 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 644, + "End Line": 650 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 659 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 677, + "End Line": 683 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 732, + "End Line": 738 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 741, + "End Line": 747 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1425, + "End Line": 1431 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1434, + "End Line": 1440 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1442, + "End Line": 1449 + }, + { + "Function Name": "run", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2142, + "End Line": 2149 + }, + { + "Function Name": "run", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2152, + "End Line": 2159 + }, + { + "Function Name": "succeed", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 123 + }, + { + "Function Name": "_cancellableInlineCallbacks", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2017, + "End Line": 2037 + }, + { + "Function Name": "_addCancelCallbackToDeferred", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1976, + "End Line": 1989 + }, + { + "Function Name": "run", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2162, + "End Line": 2165 + }, + { + "Function Name": "_cancelAcquire", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2234, + "End Line": 2246 + }, + { + "Function Name": "_cancelAcquire", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2306, + "End Line": 2318 }, { "Function Name": "__init__", @@ -519487,216 +519169,332 @@ "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 225, - "End Line": 231 + "Start Line": 2380, + "End Line": 2386 }, { - "Function Name": "errors", - "Structural Impact": 1.5, + "Function Name": "_cancelGet", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2388, + "End Line": 2400 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 173 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 161, + "End Line": 164 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 180 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1380, + "End Line": 1383 + }, + { + "Function Name": "fail", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 139 + }, + { + "Function Name": "returnValue", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1746, + "End Line": 1759 + }, + { + "Function Name": "logError", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 99 + }, + { + "Function Name": "__init_subclass__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1333, + "End Line": 1336 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1645, + "End Line": 1647 + }, + { + "Function Name": "_releaseAndReturn", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2137, + "End Line": 2139 + }, + { + "Function Name": "setDebugging", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 262, + "End Line": 269 + }, + { + "Function Name": "__str__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1392, + "End Line": 1398 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.8, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1738, + "End Line": 1739 + }, + { + "Function Name": "pause", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 190, - "End Line": 191 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 41, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 11, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 9, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 13, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, - "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": 12, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 6, - "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": 19, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, - "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": 13, - "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 6, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 2, - "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, - "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)": 6, - "Direct Downstream (Dependency Blast Radius)": 33, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "annotated_doc", - "collections.abc", - "fastapi", - "pydantic", - "starlette.exceptions", - "typing" - ] - }, - "python/fastapi/fastapi/logger.py": { - "1. Artifact Identity": { - "Filename": "logger.py", - "Path": "python/fastapi/fastapi/logger.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2695.84, - "Y": -235.81, - "Z": 2501.51 - }, - "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": 4, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "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.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], + "Start Line": 930, + "End Line": 934 + }, + { + "Function Name": "_continuation", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 998, + "End Line": 1003 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1385, + "End Line": 1390 + }, + { + "Function Name": "execute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2188, + "End Line": 2193 + }, + { + "Function Name": "__aenter__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2197, + "End Line": 2201 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1262, + "End Line": 1264 + }, + { + "Function Name": "timeout", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 250, + "End Line": 251 + }, + { + "Function Name": "passthru", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 254, + "End Line": 255 + }, + { + "Function Name": "_failthru", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 258, + "End Line": 259 + }, + { + "Function Name": "callbacks", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 477, + "End Line": 478 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2134, + "End Line": 2135 + }, + { + "Function Name": "acquire", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2215, + "End Line": 2216 + }, + { + "Function Name": "release", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2219, + "End Line": 2220 + }, + { + "Function Name": "getDebugging", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 276 + }, + { + "Function Name": "timeItOut", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 811 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 156, + "Sequential Logic Declarations": 283, + "Function Parameters": 119, + "Function/Method Declarations": 116, + "Class/Entity Declarations": 21, + "Defensive Programming Constructs": 53, + "Type/Safety Bypasses": 78, "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, + "Exposed API / Public Exports": 93, + "State Mutations / Variable Reassignments": 146, + "Commented-out Code (Dead Logic)": 5, + "Structured Documentation Blocks": 77, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 1, "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, + "Decorators and Annotations": 35, + "Generic Type Abstractions": 220, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 22, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -519704,18 +519502,18 @@ "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": 6, + "Fatal Aborts & Exceptions": 13, "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, + "Private / Encapsulated Scopes": 508, + "Event Listeners & Subscribers": 41, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 1035, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -519730,17 +519528,17 @@ "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": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 10, + "Vectorized Math & Tensor Operations": 15, + "Core Var Decl": 133, + "Design Camel Case": 30, + "Design Snake Case": 75, + "Design Pascal Case": 5, + "Design Upper Case": 2, + "Design Short Vars": 6, + "Design Long Vars": 6, + "Duplicate Logic": 2, + "Orphaned Logic": 14, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -519748,7 +519546,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)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -519764,31 +519562,56 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 25, "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "logging" + "__future__", + "abc", + "asyncio", + "attr", + "contextvars", + "enum", + "functools", + "incremental", + "inspect", + "sys", + "traceback", + "treq", + "twisted.internet", + "twisted.internet.defer", + "twisted.internet.interfaces", + "twisted.internet.task", + "twisted.logger", + "twisted.python", + "twisted.python.compat", + "twisted.python.deprecate", + "twisted.python.failure", + "types", + "typing", + "typing_extensions", + "warnings" ] }, - "python/fastapi/fastapi/param_functions.py": { + "python/twisted/http.py": { "1. Artifact Identity": { - "Filename": "param_functions.py", - "Path": "python/fastapi/fastapi/param_functions.py", + "Filename": "http.py", + "Path": "python/twisted/http.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", + "Parent Entity": "Exception, Interface, basic.LineReceiver", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3161.82, - "Y": -189.11, - "Z": 3463.83 + "X": -7548.14, + "Y": -58.65, + "Z": 4266.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519797,26 +519620,26 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2461, - "Coding LOC": 1379, - "Documentation LOC": 944, - "Structural Magnitude": 235.88, - "Control Flow Ratio": "16.3%", - "Popularity Rank": 2, + "Total LOC": 3481, + "Coding LOC": 1513, + "Documentation LOC": 1339, + "Structural Magnitude": 1376.06, + "Control Flow Ratio": "44.2%", + "Popularity Rank": 9, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.005 + "Raw Cognitive Density": 0.923 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "2.42%", - "Error & Exception Exposure": "62.85%", - "Tech Debt Exposure": "0.0%", + "Cognitive Load Exposure": "33.31%", + "Error & Exception Exposure": "75.23%", + "Tech Debt Exposure": "11.53%", "Testing Exposure": "80.0%", - "API Exposure": "0.79%", + "API Exposure": "2.89%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "99.82%", + "Commented Logic Exposure": "5.23%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -519825,1621 +519648,1622 @@ }, "5. Function Analysis": [ { - "Function Name": "Body", - "Structural Impact": 27.7, - "Lines of Code (LOC)": 328, - "Control Flow Branches": 1, - "Input Parameters": 31, - "Control Flow Ratio": "33.3%", - "Start Line": 1323, - "End Line": 1650 + "Function Name": "addCookie", + "Structural Impact": 64.6, + "Lines of Code (LOC)": 115, + "Control Flow Branches": 16, + "Input Parameters": 11, + "Control Flow Ratio": "69.6%", + "Start Line": 1322, + "End Line": 1436 }, { - "Function Name": "Path", + "Function Name": "write", + "Structural Impact": 36.5, + "Lines of Code (LOC)": 72, + "Control Flow Branches": 18, + "Input Parameters": 2, + "Control Flow Ratio": "81.8%", + "Start Line": 1249, + "End Line": 1320 + }, + { + "Function Name": "lineReceived", + "Structural Impact": 32.7, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 2361, + "End Line": 2425 + }, + { + "Function Name": "requestReceived", "Structural Impact": 27.5, - "Lines of Code (LOC)": 342, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 10, + "Input Parameters": 4, + "Control Flow Ratio": "83.3%", + "Start Line": 1038, + "End Line": 1096 + }, + { + "Function Name": "_maybeChooseTransferDecoder", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "56.2%", + "Start Line": 2439, + "End Line": 2475 + }, + { + "Function Name": "parse_qs", + "Structural Impact": 21.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 366, + "End Line": 391 + }, + { + "Function Name": "stringToDatetime", + "Structural Impact": 21.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 455, + "End Line": 507 + }, + { + "Function Name": "_dataReceived_CHUNK_LENGTH", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 1999, + "End Line": 2050 + }, + { + "Function Name": "checkPersistence", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "63.6%", + "Start Line": 2626, + "End Line": 2667 + }, + { + "Function Name": "lineReceived", + "Structural Impact": 17.6, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 728, + "End Line": 767 + }, + { + "Function Name": "timegm", + "Structural Impact": 14.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "57.1%", + "Start Line": 435, + "End Line": 452 + }, + { + "Function Name": "writeHeaders", + "Structural Impact": 14.0, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 4, + "Input Parameters": 5, + "Control Flow Ratio": "80.0%", + "Start Line": 2743, + "End Line": 2777 + }, + { + "Function Name": "_parseRequestLine", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 245, + "End Line": 294 + }, + { + "Function Name": "setETag", + "Structural Impact": 13.7, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1518, + "End Line": 1549 + }, + { + "Function Name": "setHost", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 4, + "Control Flow Ratio": "80.0%", + "Start Line": 1591, + "End Line": 1623 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 3242, + "End Line": 3289 + }, + { + "Function Name": "finish", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 1220, + "End Line": 1247 + }, + { + "Function Name": "headerReceived", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 2477, + "End Line": 2517 + }, + { + "Function Name": "setLastModified", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 1481, + "End Line": 1516 + }, + { + "Function Name": "_dataReceived_TRAILER", + "Structural Impact": 12.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2072, + "End Line": 2115 + }, + { + "Function Name": "combinedLogFormatter", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 2995, + "End Line": 3025 + }, + { + "Function Name": "__init__", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "50.0%", + "Start Line": 3350, + "End Line": 3389 + }, + { + "Function Name": "requestDone", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 2669, + "End Line": 2693 + }, + { + "Function Name": "getRequestHostname", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1564, + "End Line": 1579 + }, + { + "Function Name": "rawDataReceived", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2570, + "End Line": 2609 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 1831, + "End Line": 1861 + }, + { + "Function Name": "registerProducer", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 2828, + "End Line": 2868 + }, + { + "Function Name": "_cleanup", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 958, + "End Line": 979 + }, + { + "Function Name": "parseCookies", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1009, + "End Line": 1028 + }, + { + "Function Name": "_escape", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2970, + "End Line": 2991 + }, + { + "Function Name": "_getMultiPartArgs", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 314, + "End Line": 335 + }, + { + "Function Name": "stopFactory", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 3455, + "End Line": 3463 + }, + { + "Function Name": "rawDataReceived", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 809, + "End Line": 818 + }, + { + "Function Name": "fromChunk", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 521, + "End Line": 541 + }, + { + "Function Name": "setResponseCode", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 1438, + "End Line": 1449 + }, + { + "Function Name": "_dataReceived_CRLF", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 2052, + "End Line": 2070 + }, + { + "Function Name": "parseContentRange", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 544, + "End Line": 559 + }, + { + "Function Name": "_ensureBytes", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 1380, + "End Line": 1396 + }, + { + "Function Name": "_authorize", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1677, + "End Line": 1693 + }, + { + "Function Name": "allHeadersReceived", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2611, + "End Line": 2624 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 34, "Control Flow Branches": 1, - "Input Parameters": 29, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 923, + "End Line": 956 + }, + { + "Function Name": "startFactory", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 3446, + "End Line": 3453 + }, + { + "Function Name": "pauseProducing", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2897, + "End Line": 2930 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1727, + "End Line": 1738 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2147, + "End Line": 2155 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2719, + "End Line": 2727 + }, + { + "Function Name": "urlparse", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 338, + "End Line": 363 + }, + { + "Function Name": "isSecure", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 13, - "End Line": 354 + "Start Line": 1656, + "End Line": 1675 }, { - "Function Name": "Query", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 342, - "Control Flow Branches": 1, - "Input Parameters": 29, + "Function Name": "datetimeToString", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 394, + "End Line": 411 + }, + { + "Function Name": "noMoreData", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1863, + "End Line": 1880 + }, + { + "Function Name": "_dataReceived_BODY", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 357, - "End Line": 698 + "Start Line": 2117, + "End Line": 2134 }, { - "Function Name": "Header", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 315, + "Function Name": "resumeProducing", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2932, + "End Line": 2949 + }, + { + "Function Name": "getClientIP", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1626, + "End Line": 1638 + }, + { + "Function Name": "unregisterProducer", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2870, + "End Line": 2883 + }, + { + "Function Name": "registerProducer", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 30, - "Control Flow Ratio": "33.3%", - "Start Line": 701, - "End Line": 1015 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1124, + "End Line": 1136 }, { - "Function Name": "Form", - "Structural Impact": 26.8, - "Lines of Code (LOC)": 313, + "Function Name": "_getContentFile", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 837, + "End Line": 843 + }, + { + "Function Name": "__eq__", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 19, "Control Flow Branches": 1, - "Input Parameters": 30, - "Control Flow Ratio": "33.3%", - "Start Line": 1653, - "End Line": 1965 + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1747, + "End Line": 1765 }, { - "Function Name": "File", - "Structural Impact": 26.8, - "Lines of Code (LOC)": 313, + "Function Name": "sendHeader", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, - "Input Parameters": 30, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 702, + "End Line": 708 + }, + { + "Function Name": "getHeader", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1147, + "End Line": 1162 + }, + { + "Function Name": "extractHeader", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 713, + "End Line": 726 + }, + { + "Function Name": "allContentReceived", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1968, - "End Line": 2280 + "Start Line": 2519, + "End Line": 2545 }, { - "Function Name": "Cookie", - "Structural Impact": 26.1, - "Lines of Code (LOC)": 303, + "Function Name": "log", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 29, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3471, + "End Line": 3480 + }, + { + "Function Name": "_set_logFile", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3410, + "End Line": 3418 + }, + { + "Function Name": "datetimeToLogString", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1018, - "End Line": 1320 + "Start Line": 414, + "End Line": 432 }, { - "Function Name": "Depends", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2283, - "End Line": 2369 + "Function Name": "getUser", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1695, + "End Line": 1709 }, { - "Function Name": "Security", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 89, + "Function Name": "getPassword", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1711, + "End Line": 1725 + }, + { + "Function Name": "isSecure", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2729, + "End Line": 2741 + }, + { + "Function Name": "notifyFinish", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 42, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2372, - "End Line": 2460 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 36, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 54, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 217, - "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": 39, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, - "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": 2, - "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": 58, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1352, - "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": 201, - "Design Camel Case": 0, - "Design Snake Case": 201, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 28, - "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)": 11, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".db", - ".security", - "annotated_doc", - "collections.abc", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.openapi.models", - "pydantic", - "typing", - "typing_extensions" - ] - }, - "python/fastapi/fastapi/params.py": { - "1. Artifact Identity": { - "Filename": "params.py", - "Path": "python/fastapi/fastapi/params.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "Enum, FieldInfo, Param", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2849.6, - "Y": -211.02, - "Z": 2625.65 - }, - "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": 755, - "Coding LOC": 718, - "Documentation LOC": 0, - "Structural Magnitude": 288.56, - "Control Flow Ratio": "37.3%", - "Popularity Rank": 3, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.095 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.78%", - "Error & Exception Exposure": "81.94%", - "Tech Debt Exposure": "26.16%", - "Testing Exposure": "80.0%", - "API Exposure": "0.77%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "21.66%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.93%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__init__", - "Structural Impact": 75.3, - "Lines of Code (LOC)": 106, - "Control Flow Branches": 11, - "Input Parameters": 33, - "Control Flow Ratio": "91.7%", - "Start Line": 470, - "End Line": 575 + "Start Line": 1177, + "End Line": 1218 }, { - "Function Name": "__init__", - "Structural Impact": 73.0, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 11, - "Input Parameters": 31, - "Control Flow Ratio": "91.7%", - "Start Line": 29, - "End Line": 131 + "Function Name": "getAllHeaders", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1551, + "End Line": 1562 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "stopProducing", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 306, - "End Line": 384 + "Start Line": 2885, + "End Line": 2895 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "handleResponseEnd", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 582, - "End Line": 660 + "Start Line": 772, + "End Line": 781 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "noMoreData", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 664, - "End Line": 742 + "Start Line": 2157, + "End Line": 2166 }, { - "Function Name": "__init__", - "Structural Impact": 15.3, - "Lines of Code (LOC)": 79, + "Function Name": "connectionMade", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 31, - "Control Flow Ratio": "33.3%", - "Start Line": 140, - "End Line": 218 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2348, + "End Line": 2355 }, { - "Function Name": "__init__", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, + "Function Name": "timeoutConnection", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 31, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 224, - "End Line": 300 + "Start Line": 2695, + "End Line": 2702 }, { - "Function Name": "__init__", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, + "Function Name": "loseConnection", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, - "Input Parameters": 31, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 390, - "End Line": 466 + "Start Line": 1740, + "End Line": 1745 + }, + { + "Function Name": "_get_logFile", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 3404, + "End Line": 3407 + }, + { + "Function Name": "_protocolUpgradeForWebsockets", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2547, + "End Line": 2568 + }, + { + "Function Name": "setHeader", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1451, + "End Line": 1464 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1986, + "End Line": 1997 + }, + { + "Function Name": "buildProtocol", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3429, + "End Line": 3444 + }, + { + "Function Name": "redirect", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1466, + "End Line": 1479 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1826, + "End Line": 1829 + }, + { + "Function Name": "handleStatus", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 789, + "End Line": 789 + }, + { + "Function Name": "gotLength", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 997, + "End Line": 1007 + }, + { + "Function Name": "getCookie", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1164, + "End Line": 1175 + }, + { + "Function Name": "requestFactory", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3165, + "End Line": 3176 + }, + { + "Function Name": "site", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3188, + "End Line": 3199 + }, + { + "Function Name": "timeOut", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3209, + "End Line": 3220 }, { "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 134 + "Start Line": 1098, + "End Line": 1112 }, { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "getClientAddress", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 578 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 47, - "Function Parameters": 10, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 11, - "Defensive Programming Constructs": 6, - "Type/Safety Bypasses": 58, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 11, - "State Mutations / Variable Reassignments": 20, - "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": 2, - "Generic Type Abstractions": 35, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, - "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": 2, - "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": 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": 96, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 692, - "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": 2, - "Core Var Decl": 459, - "Design Camel Case": 0, - "Design Snake Case": 247, - "Design Pascal Case": 212, - "Design Upper Case": 0, - "Design Short Vars": 32, - "Design Long Vars": 2, - "Duplicate Logic": 4, - "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)": 12, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "._compat", - ".datastructures", - "collections.abc", - "dataclasses", - "enum", - "fastapi.exceptions", - "fastapi.openapi.models", - "pydantic", - "pydantic.fields", - "typing", - "typing_extensions", - "warnings" - ] - }, - "python/fastapi/fastapi/requests.py": { - "1. Artifact Identity": { - "Filename": "requests.py", - "Path": "python/fastapi/fastapi/requests.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3424.77, - "Y": -174.92, - "Z": 3741.03 - }, - "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": 3, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 5, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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": 6, - "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": 2, - "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)": 2, - "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": 0, - "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": 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": 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)": 5, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "starlette.requests" - ] - }, - "python/fastapi/fastapi/responses.py": { - "1. Artifact Identity": { - "Filename": "responses.py", - "Path": "python/fastapi/fastapi/responses.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2269.7, - "Y": -250.69, - "Z": 2507.74 - }, - "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": 86, - "Coding LOC": 47, - "Documentation LOC": 22, - "Structural Magnitude": 8.84, - "Control Flow Ratio": "17.9%", - "Popularity Rank": 26, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.99%", - "Error & Exception Exposure": "60.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "7.21%", - "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": "26.17%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 1640, + "End Line": 1654 + }, { - "Function Name": "render", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "write", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 85 + "Start Line": 2779, + "End Line": 2788 }, { - "Function Name": "render", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, + "Function Name": "writeSequence", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 53 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 46, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 6, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 2, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 2, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 4, - "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": 26, - "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": 2, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 8, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 7, - "Direct Downstream (Dependency Blast Radius)": 26, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "fastapi.exceptions", - "fastapi.sse", - "orjson", - "starlette.responses", - "typing", - "typing_extensions", - "ujson" - ] - }, - "python/fastapi/fastapi/routing.py": { - "1. Artifact Identity": { - "Filename": "routing.py", - "Path": "python/fastapi/fastapi/routing.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "AbstractAsyncContextManager[_T], routing.WebSocketRoute, routing.Route", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2823.64, - "Y": -207.95, - "Z": 3200.6 - }, - "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": 4957, - "Coding LOC": 2505, - "Documentation LOC": 1869, - "Structural Magnitude": 1734.8, - "Control Flow Ratio": "45.3%", - "Popularity Rank": 4, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.503 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.57%", - "Error & Exception Exposure": "71.33%", - "Tech Debt Exposure": "11.4%", - "Testing Exposure": "80.0%", - "API Exposure": "3.37%", - "Concurrency Exposure": "53.75%", - "State Flux Exposure": "74.67%", - "Commented Logic Exposure": "4.91%", - "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": "get_request_handler", - "Structural Impact": 282.8, - "Lines of Code (LOC)": 379, - "Control Flow Branches": 63, - "Input Parameters": 16, - "Control Flow Ratio": "55.8%", - "Start Line": 351, - "End Line": 729 + "Start Line": 2790, + "End Line": 2799 }, { - "Function Name": "__init__", - "Structural Impact": 191.3, - "Lines of Code (LOC)": 165, - "Control Flow Branches": 33, - "Input Parameters": 28, - "Control Flow Ratio": "84.6%", - "Start Line": 812, - "End Line": 976 + "Function Name": "getClientAddress", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3050, + "End Line": 3064 }, { - "Function Name": "include_router", - "Structural Impact": 123.5, - "Lines of Code (LOC)": 252, - "Control Flow Branches": 31, - "Input Parameters": 11, - "Control Flow Ratio": "81.6%", - "Start Line": 1578, - "End Line": 1829 + "Function Name": "proxiedLogFormatter", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3093, + "End Line": 3101 }, { - "Function Name": "app", - "Structural Impact": 100.7, - "Lines of Code (LOC)": 346, - "Control Flow Branches": 58, - "Input Parameters": 1, - "Control Flow Ratio": "56.3%", - "Start Line": 382, - "End Line": 727 + "Function Name": "callLater", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3231, + "End Line": 3240 }, { - "Function Name": "__init__", - "Structural Impact": 94.7, - "Lines of Code (LOC)": 284, - "Control Flow Branches": 17, - "Input Parameters": 19, - "Control Flow Ratio": "73.9%", - "Start Line": 1032, - "End Line": 1315 + "Function Name": "sendCommand", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 699, + "End Line": 700 }, { - "Function Name": "add_api_route", - "Structural Impact": 47.2, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 7, - "Input Parameters": 28, - "Control Flow Ratio": "70.0%", - "Start Line": 1336, - "End Line": 1417 + "Function Name": "handleContentChunk", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1030, + "End Line": 1036 }, { - "Function Name": "serialize_response", - "Structural Impact": 33.2, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 8, - "Input Parameters": 11, - "Control Flow Ratio": "66.7%", - "Start Line": 277, - "End Line": 317 + "Function Name": "forceAbortClient", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2704, + "End Line": 2717 }, { - "Function Name": "app", - "Structural Impact": 27.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 12, + "Function Name": "requestReceived", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "63.2%", - "Start Line": 110, - "End Line": 134 + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 610 }, { - "Function Name": "app", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Function Name": "handleHeader", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 113, - "End Line": 131 + "Control Flow Ratio": "0.0%", + "Start Line": 799, + "End Line": 799 }, { - "Function Name": "request_response", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 14, + "Function Name": "noLongerQueued", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 97, - "End Line": 136 + "Control Flow Ratio": "0.0%", + "Start Line": 984, + "End Line": 995 }, { - "Function Name": "get", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "registerProducer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1831, - "End Line": 2206 + "Start Line": 2193, + "End Line": 2193 }, { - "Function Name": "put", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_openLogFile", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2208, - "End Line": 2588 + "Start Line": 3465, + "End Line": 3469 }, { - "Function Name": "post", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_parseContentType", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2590, - "End Line": 2970 + "Start Line": 297, + "End Line": 305 }, { - "Function Name": "delete", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "toChunk", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2972, - "End Line": 3347 + "Start Line": 510, + "End Line": 518 }, { - "Function Name": "options", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "_sanitize", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3349, - "End Line": 3724 + "Start Line": 1398, + "End Line": 1406 }, { - "Function Name": "head", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "getHost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3726, - "End Line": 4106 + "Start Line": 1581, + "End Line": 1589 }, { - "Function Name": "patch", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_dataReceived_FINISHED", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4108, - "End Line": 4488 + "Start Line": 2136, + "End Line": 2145 }, { - "Function Name": "trace", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "dataReceived", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4490, - "End Line": 4870 - }, - { - "Function Name": "__init__", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "80.0%", - "Start Line": 770, - "End Line": 802 + "Start Line": 2357, + "End Line": 2359 }, { - "Function Name": "_merge_lifespan_context", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, + "Function Name": "_finishRequestBody", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 209, - "End Line": 223 + "Control Flow Ratio": "0.0%", + "Start Line": 2427, + "End Line": 2429 }, { - "Function Name": "_serialize_sse_item", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, + "Function Name": "loseConnection", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 500, - "End Line": 527 + "Control Flow Ratio": "0.0%", + "Start Line": 2817, + "End Line": 2826 }, { - "Function Name": "merged_lifespan", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 7, + "Function Name": "_respondToBadRequestAndDisconnect", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 213, - "End Line": 221 + "Control Flow Ratio": "0.0%", + "Start Line": 2958, + "End Line": 2967 }, { - "Function Name": "get_websocket_app", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "36.4%", - "Start Line": 732, - "End Line": 766 + "Function Name": "factory", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3151, + "End Line": 3153 }, { - "Function Name": "_extract_endpoint_context", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 254, - "End Line": 274 + "Function Name": "writeSequence", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 666, + "End Line": 667 }, { - "Function Name": "_build_response_args", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, + "Function Name": "__getattr__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 333, - "End Line": 348 + "Control Flow Ratio": "0.0%", + "Start Line": 669, + "End Line": 670 }, { - "Function Name": "matches", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, + "Function Name": "connectionLost", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 804, - "End Line": 808 + "Control Flow Ratio": "0.0%", + "Start Line": 769, + "End Line": 770 }, { - "Function Name": "matches", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, + "Function Name": "handleResponsePart", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 998, - "End Line": 1002 + "Control Flow Ratio": "0.0%", + "Start Line": 783, + "End Line": 784 }, { - "Function Name": "app", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, + "Function Name": "process", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 737, - "End Line": 764 + "Control Flow Ratio": "0.0%", + "Start Line": 1114, + "End Line": 1120 }, { - "Function Name": "_serialize_data", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, + "Function Name": "__hash__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 471, - "End Line": 494 + "Control Flow Ratio": "0.0%", + "Start Line": 1767, + "End Line": 1773 }, { - "Function Name": "api_route", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 61, + "Function Name": "_failChooseTransferDecoder", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 25, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1419, - "End Line": 1479 - }, - { - "Function Name": "add_event_handler", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 4905, - "End Line": 4922 + "Start Line": 2431, + "End Line": 2437 }, { - "Function Name": "_keepalive_inserter", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 565, - "End Line": 578 + "Function Name": "getPeer", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2801, + "End Line": 2807 }, { - "Function Name": "app", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 149, - "End Line": 160 + "Function Name": "getHost", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2809, + "End Line": 2815 }, { - "Function Name": "run_endpoint_function", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 320, - "End Line": 330 + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3040, + "End Line": 3041 }, { - "Function Name": "_startup", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "requestFactory", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4873, - "End Line": 4886 + "Control Flow Ratio": "0.0%", + "Start Line": 3156, + "End Line": 3162 }, { - "Function Name": "_shutdown", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "site", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4889, - "End Line": 4902 - }, - { - "Function Name": "app", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 152, - "End Line": 157 + "Control Flow Ratio": "0.0%", + "Start Line": 3179, + "End Line": 3185 }, { - "Function Name": "add_api_websocket_route", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "50.0%", - "Start Line": 1481, - "End Line": 1500 + "Function Name": "_genericHTTPChannelProtocolFactory", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3292, + "End Line": 3298 }, { - "Function Name": "websocket", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 66, + "Function Name": "write", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1502, - "End Line": 1567 + "Start Line": 3302, + "End Line": 3302 }, { - "Function Name": "websocket_session", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Function Name": "unregisterProducer", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 141, - "End Line": 162 + "Control Flow Ratio": "0.0%", + "Start Line": 1138, + "End Line": 1143 }, { - "Function Name": "_sse_with_checkpoints", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "__init__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 597, - "End Line": 605 + "Control Flow Ratio": "0.0%", + "Start Line": 2341, + "End Line": 2346 }, { - "Function Name": "route", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 18, + "Function Name": "_send100Continue", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1334 + "Start Line": 2951, + "End Line": 2956 }, { - "Function Name": "_producer", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 556, - "End Line": 559 + "Function Name": "clientproto", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3068, + "End Line": 3073 }, { - "Function Name": "_async_stream_raw", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, + "Function Name": "code", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 658, - "End Line": 665 + "Control Flow Ratio": "0.0%", + "Start Line": 3076, + "End Line": 3081 }, { - "Function Name": "on_event", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, + "Function Name": "sentLength", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4932, - "End Line": 4956 + "Start Line": 3084, + "End Line": 3089 }, { - "Function Name": "decorator", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 29, + "Function Name": "factory", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1449, - "End Line": 1477 + "Start Line": 3144, + "End Line": 3148 }, { - "Function Name": "__aexit__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, + "Function Name": "timeOut", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 188 + "Start Line": 3202, + "End Line": 3206 }, { - "Function Name": "get_route_handler", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, + "Function Name": "callLater", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 978, - "End Line": 996 + "Start Line": 3223, + "End Line": 3228 }, { - "Function Name": "websocket_route", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, + "Function Name": "_updateLogDateTime", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1569, - "End Line": 1576 + "Start Line": 3422, + "End Line": 3427 }, { - "Function Name": "_async_stream_jsonl", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 629, - "End Line": 634 + "Function Name": "connectionLost", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 577 }, { - "Function Name": "_wrap_gen_lifespan_context", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "gotLength", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 192, - "End Line": 206 + "Start Line": 586, + "End Line": 586 }, { - "Function Name": "_sync_stream_jsonl", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 641, - "End Line": 643 + "Function Name": "handleContentChunk", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 596, + "End Line": 596 }, { - "Function Name": "decorator", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Function Name": "__eq__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1324, - "End Line": 1332 + "Start Line": 626, + "End Line": 626 }, { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "__ne__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 177 + "Start Line": 637, + "End Line": 637 }, { "Function Name": "__init__", - "Structural Impact": 1.8, + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 237, - "End Line": 238 + "Start Line": 663, + "End Line": 664 }, { - "Function Name": "__aexit__", - "Structural Impact": 1.8, + "Function Name": "endHeaders", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 243, - "End Line": 244 + "Start Line": 710, + "End Line": 711 }, { - "Function Name": "__call__", - "Structural Impact": 1.8, + "Function Name": "connectionMade", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 247 + "Start Line": 786, + "End Line": 787 }, { - "Function Name": "decorator", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "handleEndHeaders", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1561, - "End Line": 1565 + "Start Line": 804, + "End Line": 804 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "pauseProducing", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1572, - "End Line": 1574 + "Start Line": 2177, + "End Line": 2177 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "resumeProducing", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4952, - "End Line": 4954 + "Start Line": 2185, + "End Line": 2185 }, { - "Function Name": "__aenter__", + "Function Name": "unregisterProducer", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 180 + "Start Line": 2201, + "End Line": 2201 }, { - "Function Name": "wrapper", + "Function Name": "stopProducing", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 204 + "Start Line": 2206, + "End Line": 2206 }, { - "Function Name": "__aenter__", + "Function Name": "close", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 241 + "Start Line": 3307, + "End Line": 3307 }, { - "Function Name": "_serialize_item", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "parseCookies", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 625 + "Start Line": 605, + "End Line": 605 }, { - "Function Name": "_sse_producer_cm", + "Function Name": "__hash__", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 535, - "End Line": 536 + "Start Line": 648, + "End Line": 648 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 218, - "Sequential Logic Declarations": 263, - "Function Parameters": 65, - "Function/Method Declarations": 65, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 54, - "Type/Safety Bypasses": 106, + "Control Flow Branches": 295, + "Sequential Logic Declarations": 372, + "Function Parameters": 156, + "Function/Method Declarations": 153, + "Class/Entity Declarations": 17, + "Defensive Programming Constructs": 52, + "Type/Safety Bypasses": 28, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 52, - "State Mutations / Variable Reassignments": 218, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 237, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 68, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 130, + "State Mutations / Variable Reassignments": 329, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 146, + "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": 4, - "Generic Type Abstractions": 196, - "Collection Iterators / Comprehensions": 3, + "Decorators and Annotations": 23, + "Generic Type Abstractions": 44, + "Collection Iterators / Comprehensions": 9, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, - "Module Dependencies (Imports)": 36, + "Metaprogramming & Reflection": 14, + "Module Dependencies (Imports)": 35, "Authorship Metadata": 0, "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 3, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 15, - "Event Publishers / Emitters": 13, - "Dependency Injection Constructs": 17, + "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": 8, - "Fatal Aborts & Exceptions": 9, + "Explicit Type Casts": 14, + "Fatal Aborts & Exceptions": 33, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 92, - "Event Listeners & Subscribers": 13, + "Resource Deallocation & Cleanup": 4, + "Private / Encapsulated Scopes": 408, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2434, + "Structural Space Indentations": 1410, "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, + "Regex Execution": 1, + "Time Date Logic": 4, "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)": 26, - "Vectorized Math & Tensor Operations": 3, - "Core Var Decl": 604, - "Design Camel Case": 0, - "Design Snake Case": 521, - "Design Pascal Case": 82, - "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 57, - "Duplicate Logic": 2, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 22, + "Core Var Decl": 292, + "Design Camel Case": 55, + "Design Snake Case": 199, + "Design Pascal Case": 13, + "Design Upper Case": 5, + "Design Short Vars": 20, + "Design Long Vars": 1, + "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, + "High-Entropy / Obfuscated Logic": 129, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 3, - "Dynamic Code Execution (Eval/Exec)": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 8, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -521453,66 +521277,65 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 35, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 34, + "Direct Downstream (Dependency Blast Radius)": 9, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "annotated_doc", - "anyio", - "anyio.abc", - "collections.abc", - "contextlib", + "__future__", + "base64", + "binascii", + "calendar", + "collections", + "email", "email.message", - "enum", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.dependencies.models", - "fastapi.dependencies.utils", - "fastapi.encoders", - "fastapi.exceptions", - "fastapi.sse", - "fastapi.types", - "fastapi.utils", - "functools", - "inspect", - "json", - "pydantic", - "starlette", - "starlette._exception_handler", - "starlette._utils", - "starlette.concurrency", - "starlette.datastructures", - "starlette.exceptions", - "starlette.requests", - "starlette.responses", - "starlette.routing", - "starlette.types", - "starlette.websockets", - "types", + "incremental", + "io", + "math", + "os", + "re", + "tempfile", + "time", + "twisted.internet", + "twisted.internet._producer_helpers", + "twisted.internet.defer", + "twisted.internet.interfaces", + "twisted.logger", + "twisted.protocols", + "twisted.python", + "twisted.python.compat", + "twisted.python.components", + "twisted.python.deprecate", + "twisted.python.failure", + "twisted.web._abnf", + "twisted.web._http2", + "twisted.web._responses", + "twisted.web.http_headers", + "twisted.web.iweb", "typing", - "typing_extensions" + "urllib.parse", + "warnings", + "zope.interface" ] }, - "python/fastapi/fastapi/sse.py": { + "python/twisted/reflect.py": { "1. Artifact Identity": { - "Filename": "sse.py", - "Path": "python/fastapi/fastapi/sse.py", + "Filename": "reflect.py", + "Path": "python/twisted/reflect.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "StreamingResponse, BaseModel", + "Parent Entity": "Exception, ValueError, InvalidName", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2718.26, - "Y": -206.74, - "Z": 3638.12 + "X": -7268.7, + "Y": -135.81, + "Z": 4700.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -521521,967 +521344,343 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 223, - "Coding LOC": 107, - "Documentation LOC": 77, - "Structural Magnitude": 65.84, - "Control Flow Ratio": "41.7%", - "Popularity Rank": 3, + "Total LOC": 687, + "Coding LOC": 295, + "Documentation LOC": 249, + "Structural Magnitude": 264.9, + "Control Flow Ratio": "40.6%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.533 + "Raw Cognitive Density": 0.753 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.77%", - "Error & Exception Exposure": "77.52%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.51%", - "API Exposure": "3.31%", + "Cognitive Load Exposure": "25.16%", + "Error & Exception Exposure": "45.82%", + "Tech Debt Exposure": "13.92%", + "Testing Exposure": "80.0%", + "API Exposure": "3.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.57%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "44.26%", + "Commented Logic Exposure": "5.37%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "39.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "format_sse_event", - "Structural Impact": 23.0, - "Lines of Code (LOC)": 69, + "Function Name": "objgrep", + "Structural Impact": 62.9, + "Lines of Code (LOC)": 117, + "Control Flow Branches": 18, + "Input Parameters": 8, + "Control Flow Ratio": "66.7%", + "Start Line": 534, + "End Line": 650 + }, + { + "Function Name": "addMethodNamesToDict", + "Structural Impact": 19.9, + "Lines of Code (LOC)": 40, "Control Flow Branches": 7, - "Input Parameters": 5, + "Input Parameters": 4, "Control Flow Ratio": "77.8%", - "Start Line": 146, - "End Line": 214 + "Start Line": 48, + "End Line": 87 }, { - "Function Name": "_check_data_exclusive", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 6, + "Function Name": "accumulateMethods", + "Structural Impact": 19.9, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "77.8%", + "Start Line": 109, + "End Line": 149 + }, + { + "Function Name": "namedAny", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 136, - "End Line": 143 + "Control Flow Ratio": "81.8%", + "Start Line": 249, + "End Line": 310 }, { - "Function Name": "_check_id_no_null", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, + "Function Name": "filenameToModuleName", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 36, - "End Line": 39 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 21, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 4, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 21, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 14, - "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": 5, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, - "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": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 5, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 94, - "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": 1, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "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, - "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)": 4, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "annotated_doc", - "pydantic", - "starlette.responses", - "typing" - ] - }, - "python/fastapi/fastapi/staticfiles.py": { - "1. Artifact Identity": { - "Filename": "staticfiles.py", - "Path": "python/fastapi/fastapi/staticfiles.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2002.21, - "Y": -261.45, - "Z": 3018.53 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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": [ - "starlette.staticfiles" - ] - }, - "python/fastapi/fastapi/templating.py": { - "1. Artifact Identity": { - "Filename": "templating.py", - "Path": "python/fastapi/fastapi/templating.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3414.93, - "Y": -180.12, - "Z": 2449.04 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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": [ - "starlette.templating" - ] - }, - "python/fastapi/fastapi/testclient.py": { - "1. Artifact Identity": { - "Filename": "testclient.py", - "Path": "python/fastapi/fastapi/testclient.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2799.88, - "Y": -228.99, - "Z": 4153.78 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 185, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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)": 185, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "starlette.testclient" - ] - }, - "python/fastapi/fastapi/types.py": { - "1. Artifact Identity": { - "Filename": "types.py", - "Path": "python/fastapi/fastapi/types.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3083.58, - "Y": -263.69, - "Z": 3769.22 - }, - "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": 13, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 15.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 25, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "64.57%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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": 14, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, - "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, - "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": 5, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 6, - "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": 0, - "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": 4, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 4, - "Design Upper Case": 0, - "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, - "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)": 6, - "Direct Downstream (Dependency Blast Radius)": 25, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 9 - }, - "9. Extracted Dependencies": [ - "collections.abc", - "enum", - "pydantic", - "pydantic.main", - "types", - "typing" - ] - }, - "python/fastapi/fastapi/utils.py": { - "1. Artifact Identity": { - "Filename": "utils.py", - "Path": "python/fastapi/fastapi/utils.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2573.21, - "Y": -255.49, - "Z": 2454.89 - }, - "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": 137, - "Coding LOC": 109, - "Documentation LOC": 6, - "Structural Magnitude": 62.48, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 3, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.183 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.54%", - "Error & Exception Exposure": "62.11%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "7.81%", - "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": "81.61%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Control Flow Ratio": "66.7%", + "Start Line": 313, + "End Line": 348 + }, { - "Function Name": "deep_dict_update", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "88.9%", - "Start Line": 103, - "End Line": 118 + "Function Name": "accumulateClassDict", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 465, + "End Line": 499 }, { - "Function Name": "create_model_field", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 20, + "Function Name": "accumulateClassList", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 10, "Control Flow Branches": 3, - "Input Parameters": 6, - "Control Flow Ratio": "50.0%", - "Start Line": 58, - "End Line": 77 + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 502, + "End Line": 511 }, { - "Function Name": "is_body_allowed_for_status_code", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 15, + "Function Name": "_importAndCheckStack", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 26, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 26, - "End Line": 40 + "Control Flow Ratio": "60.0%", + "Start Line": 221, + "End Line": 246 }, { - "Function Name": "get_value_or_default", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 16, + "Function Name": "safe_str", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 418, + "End Line": 435 + }, + { + "Function Name": "_determineClassName", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 121, - "End Line": 136 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 365, + "End Line": 373 }, { - "Function Name": "generate_operation_id_for_path", + "Function Name": "_safeFormat", "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 376, + "End Line": 400 + }, + { + "Function Name": "requireModule", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 176, + "End Line": 192 + }, + { + "Function Name": "safe_repr", + "Structural Impact": 3.5, "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 3, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 403, + "End Line": 415 + }, + { + "Function Name": "namedModule", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 80, - "End Line": 92 + "Start Line": 152, + "End Line": 161 }, { - "Function Name": "generate_unique_id", + "Function Name": "_determineClass", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 358, + "End Line": 362 + }, + { + "Function Name": "fullFuncName", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 451, + "End Line": 455 + }, + { + "Function Name": "prefixedMethodNames", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 45 + }, + { + "Function Name": "prefixedMethods", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 106 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 443, + "End Line": 445 + }, + { + "Function Name": "namedObject", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 170 + }, + { + "Function Name": "__call__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 447, + "End Line": 448 + }, + { + "Function Name": "isSame", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 514, + "End Line": 515 + }, + { + "Function Name": "isLike", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 518, + "End Line": 519 + }, + { + "Function Name": "isOfType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 527 + }, + { + "Function Name": "findInstances", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 531 + }, + { + "Function Name": "qual", "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 100 + "Start Line": 351, + "End Line": 355 }, { - "Function Name": "get_path_param_names", + "Function Name": "getClass", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 462 + }, + { + "Function Name": "modgrep", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 44 + "Start Line": 522, + "End Line": 523 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 40, - "Function Parameters": 7, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 7, + "Control Flow Branches": 67, + "Sequential Logic Declarations": 98, + "Function Parameters": 28, + "Function/Method Declarations": 28, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 30, + "Type/Safety Bypasses": 12, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 12, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "I/O and Network Boundaries": 11, + "Exposed API / Public Exports": 28, + "State Mutations / Variable Reassignments": 16, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 24, "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": 11, - "Collection Iterators / Comprehensions": 1, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Metaprogramming & Reflection": 13, + "Module Dependencies (Imports)": 14, "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, @@ -522491,26 +521690,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 2, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 6, + "Fatal Aborts & Exceptions": 7, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 4, + "Private / Encapsulated Scopes": 54, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 85, + "Structural Space Indentations": 246, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 3, + "Regex Execution": 1, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -522520,12 +521719,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 0, - "Design Snake Case": 14, - "Design Pascal Case": 3, + "Core Var Decl": 52, + "Design Camel Case": 26, + "Design Snake Case": 25, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -522552,40 +521751,45 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 14, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "._compat", - ".routing", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.exceptions", - "pydantic.fields", + "__future__", + "a", + "collections", + "io", + "os", + "path", + "pickle", "re", - "typing", - "warnings" + "sys", + "traceback", + "twisted.python.compat", + "twisted.python.deprecate", + "types", + "weakref" ] }, - "python/fastapi/fastapi/websockets.py": { + "python/twisted/transport.py": { "1. Artifact Identity": { - "Filename": "websockets.py", - "Path": "python/fastapi/fastapi/websockets.py", + "Filename": "transport.py", + "Path": "python/twisted/transport.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", + "Parent Entity": "Tuple[_DigestMod, bytes, bytes, int], protocol.Protocol, SSHTransportBase", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3533.89, - "Y": -238.75, - "Z": 3133.15 + "X": -7537.55, + "Y": -69.45, + "Z": 3729.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -522594,65 +521798,836 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 3, - "Documentation LOC": 0, - "Structural Magnitude": 11.56, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 4, + "Total LOC": 2264, + "Coding LOC": 1015, + "Documentation LOC": 886, + "Structural Magnitude": 761.4, + "Control Flow Ratio": "41.5%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.598 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "17.63%", + "Error & Exception Exposure": "77.49%", + "Tech Debt Exposure": "10.38%", + "Testing Exposure": "80.0%", + "API Exposure": "2.55%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.84%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "24.56%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 28.6, + "Lines of Code (LOC)": 121, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 864, + "End Line": 984 + }, + { + "Function Name": "getPacket", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "52.4%", + "Start Line": 662, + "End Line": 722 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 16.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "63.6%", + "Start Line": 737, + "End Line": 780 + }, + { + "Function Name": "dispatchMessage", + "Structural Impact": 15.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "85.7%", + "Start Line": 782, + "End Line": 812 + }, + { + "Function Name": "_generateECSharedSecret", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 1394, + "End Line": 1428 + }, + { + "Function Name": "isEncrypted", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1252, + "End Line": 1269 + }, + { + "Function Name": "isVerified", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1271, + "End Line": 1288 + }, + { + "Function Name": "sendPacket", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 623, + "End Line": 660 + }, + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1478, + "End Line": 1496 + }, + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1805, + "End Line": 1850 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REQUEST_OLD", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1596, + "End Line": 1631 + }, + { + "Function Name": "_ssh_KEX_ECDH_REPLY", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1852, + "End Line": 1917 + }, + { + "Function Name": "_encodeECPublicKey", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1367, + "End Line": 1392 + }, + { + "Function Name": "_generateECPrivateKey", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1342, + "End Line": 1365 + }, + { + "Function Name": "ssh_SERVICE_ACCEPT", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 2109, + "End Line": 2128 + }, + { + "Function Name": "sendKexInit", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 547, + "End Line": 595 + }, + { + "Function Name": "ssh_KEX_DH_GEX_GROUP", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1957, + "End Line": 1980 + }, + { + "Function Name": "_continue_KEX_ECDH_REPLY", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1875, + "End Line": 1896 + }, + { + "Function Name": "sendDebug", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1075, + "End Line": 1089 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 1207, + "End Line": 1230 + }, + { + "Function Name": "_continueGEX_REPLY", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 2042, + "End Line": 2081 + }, + { + "Function Name": "setKeys", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 145, + "End Line": 165 + }, + { + "Function Name": "_finishEphemeralDH", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 1157, + "End Line": 1185 + }, + { + "Function Name": "_newKeys", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1232, + "End Line": 1250 + }, + { + "Function Name": "_allowedKeyExchangeMessageType", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 597, + "End Line": 621 + }, + { + "Function Name": "_getHostKeys", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1453, + "End Line": 1476 + }, + { + "Function Name": "_continueKEXDH_REPLY", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1982, + "End Line": 2011 + }, + { + "Function Name": "ssh_SERVICE_REQUEST", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1730, + "End Line": 1751 + }, + { + "Function Name": "ssh_NEWKEYS", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 2091, + "End Line": 2107 + }, + { + "Function Name": "sendExtInfo", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1128, + "End Line": 1141 + }, + { + "Function Name": "_getMAC", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 187, + "End Line": 221 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 523, + "End Line": 535 + }, + { + "Function Name": "verify", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 266, + "End Line": 286 + }, + { + "Function Name": "_getSupportedCiphers", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 289, + "End Line": 319 + }, + { + "Function Name": "_getCipher", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 167, + "End Line": 185 + }, + { + "Function Name": "_ssh_KEXDH_REPLY", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1919, + "End Line": 1955 + }, + { + "Function Name": "receiveDebug", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1327, + "End Line": 1340 + }, + { + "Function Name": "makeMAC", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 247, + "End Line": 264 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REPLY", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2013, + "End Line": 2040 + }, + { + "Function Name": "sendDisconnect", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1110, + "End Line": 1126 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1701, + "End Line": 1715 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REQUEST", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1633, + "End Line": 1657 + }, + { + "Function Name": "ssh_EXT_INFO", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1041, + "End Line": 1058 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 2083, + "End Line": 2089 + }, + { + "Function Name": "setService", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1060, + "End Line": 1073 + }, + { + "Function Name": "ssh_NEWKEYS", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1717, + "End Line": 1728 + }, + { + "Function Name": "_ssh_KEX_ECDH_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1498, + "End Line": 1553 + }, + { + "Function Name": "_ssh_KEXDH_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1555, + "End Line": 1594 + }, + { + "Function Name": "ssh_KEX_DH_GEX_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1659, + "End Line": 1699 + }, + { + "Function Name": "_getKey", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1187, + "End Line": 1205 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 143 + }, + { + "Function Name": "receiveError", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1299, + "End Line": 1315 + }, + { + "Function Name": "verifyHostKey", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 2142, + "End Line": 2155 + }, + { + "Function Name": "ssh_DISCONNECT", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 986, + "End Line": 1001 + }, + { + "Function Name": "ssh_DEBUG", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1025, + "End Line": 1039 + }, + { + "Function Name": "encrypt", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 223, + "End Line": 233 + }, + { + "Function Name": "decrypt", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 235, + "End Line": 245 + }, + { + "Function Name": "_unsupportedVersionReceived", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 724, + "End Line": 735 + }, + { + "Function Name": "ssh_UNIMPLEMENTED", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1012, + "End Line": 1023 + }, + { + "Function Name": "update", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2170, + "End Line": 2180 + }, + { + "Function Name": "sendIgnore", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1091, + "End Line": 1100 + }, + { + "Function Name": "receiveUnimplemented", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1317, + "End Line": 1325 + }, + { + "Function Name": "requestService", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2130, + "End Line": 2138 + }, + { + "Function Name": "_startEphemeralDH", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1143, + "End Line": 1155 + }, + { + "Function Name": "_mpFromBytes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 62 + }, + { + "Function Name": "kexAlg", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 844, + "End Line": 848 + }, + { + "Function Name": "connectionMade", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 537, + "End Line": 545 + }, + { + "Function Name": "getPeer", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 814, + "End Line": 823 + }, + { + "Function Name": "getHost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 825, + "End Line": 834 + }, + { + "Function Name": "ssh_IGNORE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1003, + "End Line": 1003 + }, + { + "Function Name": "sendUnimplemented", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1108 + }, + { + "Function Name": "connectionMade", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1797, + "End Line": 1803 + }, + { + "Function Name": "encryptor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2201, + "End Line": 2207 + }, + { + "Function Name": "decryptor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2209, + "End Line": 2215 + }, + { + "Function Name": "kexAlg", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 837, + "End Line": 841 + }, + { + "Function Name": "loseConnection", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1290, + "End Line": 1295 + }, + { + "Function Name": "connectionSecure", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2157, + "End Line": 2162 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 144, + "Sequential Logic Declarations": 203, + "Function Parameters": 80, + "Function/Method Declarations": 77, + "Class/Entity Declarations": 8, + "Defensive Programming Constructs": 14, + "Type/Safety Bypasses": 10, "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": 57, + "State Mutations / Variable Reassignments": 224, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 84, "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, + "Closures and Anonymous Functions": 3, + "Global State Dependencies": 1, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 21, + "Collection Iterators / Comprehensions": 8, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 25, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -522660,18 +522635,18 @@ "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": 6, + "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, + "Private / Encapsulated Scopes": 178, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 943, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -522687,30 +522662,30 @@ "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": 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, + "Vectorized Math & Tensor Operations": 5, + "Core Var Decl": 246, + "Design Camel Case": 80, + "Design Snake Case": 118, + "Design Pascal Case": 3, + "Design Upper Case": 32, + "Design Short Vars": 26, + "Design Long Vars": 15, "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, + "High-Entropy / Obfuscated Logic": 3, "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, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, + "Embedded Credentials & Keys": 1, "Sec Extension Mismatch": 0, "Sec Entropy": 0, "Sec Tainted Injection": 0, @@ -522720,19 +522695,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 0, + "Direct Upstream (Fragility)": 26, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "starlette.websockets" + "__future__", + "binascii", + "cryptography.exceptions", + "cryptography.hazmat.backends", + "cryptography.hazmat.decrepit.ciphers.algorithms", + "cryptography.hazmat.primitives", + "cryptography.hazmat.primitives.asymmetric", + "cryptography.hazmat.primitives.ciphers", + "cryptography.hazmat.primitives.ciphers.algorithms", + "hashlib", + "hmac", + "is", + "struct", + "twisted", + "twisted.conch.ssh", + "twisted.conch.ssh.common", + "twisted.conch.ssh.factory", + "twisted.conch.ssh.service", + "twisted.internet", + "twisted.logger", + "twisted.python", + "twisted.python.compat", + "twisted.python.failure", + "types", + "typing", + "zlib" ] } } }, "zig/zls/mach": { - "Directory Group Magnitude": 3155.88, + "Directory Group Magnitude": 3149.88, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -522742,14 +522742,14 @@ "Error & Exception Exposure": "32.92%", "Tech Debt Exposure": "36.48%", "Testing Exposure": "41.24%", - "API Exposure": "5.9%", + "API Exposure": "5.83%", "Concurrency Exposure": "1.67%", "State Flux Exposure": "15.97%", "Commented Logic Exposure": "3.69%", "Specification Exposure": "87.5%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.03%", + "Documentation Exposure": "44.6%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -524284,9 +524284,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -8968.67, + "X": -8968.6, "Y": 237.91, - "Z": -1610.37 + "Z": -1610.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -524298,7 +524298,7 @@ "Total LOC": 1021, "Coding LOC": 720, "Documentation LOC": 174, - "Structural Magnitude": 655.3, + "Structural Magnitude": 650.3, "Control Flow Ratio": "59.6%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -524311,14 +524311,14 @@ "Error & Exception Exposure": "63.97%", "Tech Debt Exposure": "28.14%", "Testing Exposure": "80.0%", - "API Exposure": "4.41%", + "API Exposure": "4.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "12.1%", "Commented Logic Exposure": "5.61%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.6%", + "Documentation Exposure": "83.14%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -524884,7 +524884,7 @@ "Type/Safety Bypasses": 33, "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 69, + "Exposed API / Public Exports": 64, "State Mutations / Variable Reassignments": 70, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 136, @@ -524997,9 +524997,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -8180.52, - "Y": 256.01, - "Z": -2000.84 + "X": -8180.6, + "Y": 256.0, + "Z": -2000.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -525011,7 +525011,7 @@ "Total LOC": 224, "Coding LOC": 115, "Documentation LOC": 84, - "Structural Magnitude": 124.4, + "Structural Magnitude": 123.4, "Control Flow Ratio": "54.1%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -525024,7 +525024,7 @@ "Error & Exception Exposure": "26.11%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.7%", - "API Exposure": "5.34%", + "API Exposure": "5.07%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -525247,7 +525247,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 57, @@ -538955,9 +538955,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4889.55, + "X": -4883.64, "Y": 4.45, - "Z": -7341.52 + "Z": -7332.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539213,9 +539213,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4564.75, + "X": -4558.84, "Y": 56.66, - "Z": -7317.31 + "Z": -7308.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539661,9 +539661,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5278.31, + "X": -5272.4, "Y": -8.05, - "Z": -7352.75 + "Z": -7343.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539839,9 +539839,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4322.86, + "X": -4316.95, "Y": 121.9, - "Z": -6676.13 + "Z": -6667.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540067,9 +540067,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4380.42, + "X": -4374.51, "Y": 48.05, - "Z": -7529.42 + "Z": -7520.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540275,9 +540275,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5112.31, + "X": -5106.4, "Y": -0.05, - "Z": -7028.19 + "Z": -7019.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540493,9 +540493,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4860.34, + "X": -4854.43, "Y": 100.67, - "Z": -6801.74 + "Z": -6792.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540741,9 +540741,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4469.68, + "X": -4463.77, "Y": 187.15, - "Z": -6213.14 + "Z": -6204.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540929,9 +540929,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4072.93, + "X": -4067.02, "Y": 196.82, - "Z": -6678.31 + "Z": -6669.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541147,9 +541147,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5191.47, + "X": -5185.56, "Y": 53.47, - "Z": -6713.02 + "Z": -6704.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541405,9 +541405,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4671.56, + "X": -4665.65, "Y": 123.45, - "Z": -6895.8 + "Z": -6886.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541963,9 +541963,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4823.1, + "X": -4817.19, "Y": 93.56, - "Z": -6398.42 + "Z": -6389.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542161,9 +542161,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4192.02, + "X": -4186.11, "Y": 86.28, - "Z": -7181.89 + "Z": -7172.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564389,7 +564389,7 @@ } }, "embedded_python/meow_turtle": { - "Directory Group Magnitude": 2283.92, + "Directory Group Magnitude": 2265.92, "File Count": 14, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -564399,14 +564399,14 @@ "Error & Exception Exposure": "69.44%", "Tech Debt Exposure": "26.75%", "Testing Exposure": "30.26%", - "API Exposure": "5.33%", + "API Exposure": "4.79%", "Concurrency Exposure": "10.84%", "State Flux Exposure": "79.28%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "7.14%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.06%", + "Documentation Exposure": "16.61%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -564423,9 +564423,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7901.5, + "X": -7901.93, "Y": -39.7, - "Z": -4142.36 + "Z": -4142.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564437,7 +564437,7 @@ "Total LOC": 169, "Coding LOC": 82, "Documentation LOC": 65, - "Structural Magnitude": 67.34, + "Structural Magnitude": 64.34, "Control Flow Ratio": "37.0%", "Popularity Rank": 5, "Raw Churn Frequency": 0.0, @@ -564450,14 +564450,14 @@ "Error & Exception Exposure": "54.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", - "API Exposure": "6.68%", + "API Exposure": "5.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "50.98%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.06%", + "Documentation Exposure": "18.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -564573,7 +564573,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 13, + "Exposed API / Public Exports": 10, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 13, @@ -564937,9 +564937,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7997.31, - "Y": 75.93, - "Z": -4550.98 + "X": -7997.48, + "Y": 75.91, + "Z": -4550.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564951,7 +564951,7 @@ "Total LOC": 253, "Coding LOC": 132, "Documentation LOC": 82, - "Structural Magnitude": 103.04, + "Structural Magnitude": 101.04, "Control Flow Ratio": "49.2%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -564964,14 +564964,14 @@ "Error & Exception Exposure": "59.17%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "6.24%", + "API Exposure": "5.26%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "86.32%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.59%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -565057,7 +565057,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 14, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 8, @@ -565412,9 +565412,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -9009.07, - "Y": 33.15, - "Z": -4425.36 + "X": -9008.77, + "Y": 33.16, + "Z": -4425.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565426,7 +565426,7 @@ "Total LOC": 238, "Coding LOC": 143, "Documentation LOC": 65, - "Structural Magnitude": 140.46, + "Structural Magnitude": 136.46, "Control Flow Ratio": "42.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -565439,14 +565439,14 @@ "Error & Exception Exposure": "88.11%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", - "API Exposure": "6.74%", + "API Exposure": "4.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -565522,7 +565522,7 @@ "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 58, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 8, @@ -566087,9 +566087,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8432.09, - "Y": 26.08, - "Z": -4860.77 + "X": -8432.1, + "Y": 26.06, + "Z": -4860.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566101,7 +566101,7 @@ "Total LOC": 535, "Coding LOC": 314, "Documentation LOC": 142, - "Structural Magnitude": 306.78, + "Structural Magnitude": 302.78, "Control Flow Ratio": "72.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -566114,14 +566114,14 @@ "Error & Exception Exposure": "63.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "4.14%", + "API Exposure": "3.11%", "Concurrency Exposure": "67.13%", "State Flux Exposure": "76.26%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.35%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -566237,7 +566237,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 15, + "Exposed API / Public Exports": 11, "State Mutations / Variable Reassignments": 28, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 12, @@ -566726,9 +566726,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8730.48, - "Y": 58.12, - "Z": -4928.16 + "X": -8730.42, + "Y": 58.11, + "Z": -4928.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566740,7 +566740,7 @@ "Total LOC": 121, "Coding LOC": 57, "Documentation LOC": 49, - "Structural Magnitude": 81.94, + "Structural Magnitude": 80.94, "Control Flow Ratio": "57.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -566753,14 +566753,14 @@ "Error & Exception Exposure": "94.54%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.74%", - "API Exposure": "5.51%", + "API Exposure": "4.86%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.22%", + "Documentation Exposure": "13.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -566826,7 +566826,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 32, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 7, @@ -567520,9 +567520,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8729.64, + "X": -8729.58, "Y": -68.26, - "Z": -4108.82 + "Z": -4108.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567534,7 +567534,7 @@ "Total LOC": 509, "Coding LOC": 294, "Documentation LOC": 142, - "Structural Magnitude": 345.08, + "Structural Magnitude": 343.08, "Control Flow Ratio": "58.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -567547,14 +567547,14 @@ "Error & Exception Exposure": "92.62%", "Tech Debt Exposure": "13.95%", "Testing Exposure": "80.0%", - "API Exposure": "4.26%", + "API Exposure": "3.81%", "Concurrency Exposure": "68.11%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.65%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -567740,7 +567740,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 12, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 112, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 23, @@ -567855,9 +567855,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8591.57, - "Y": -36.77, - "Z": -3760.99 + "X": -8591.51, + "Y": -36.74, + "Z": -3761.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567869,7 +567869,7 @@ "Total LOC": 118, "Coding LOC": 53, "Documentation LOC": 48, - "Structural Magnitude": 84.46, + "Structural Magnitude": 82.46, "Control Flow Ratio": "51.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -567882,14 +567882,14 @@ "Error & Exception Exposure": "95.98%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", - "API Exposure": "5.66%", + "API Exposure": "4.44%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.19%", + "Documentation Exposure": "13.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -567955,7 +567955,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 33, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 7, @@ -577194,9 +577194,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4685.9, + "X": -4680.9, "Y": -38.82, - "Z": -7971.87 + "Z": -7963.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -577687,9 +577687,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4206.87, + "X": -4201.88, "Y": 30.72, - "Z": -8278.31 + "Z": -8269.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -577847,9 +577847,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5238.44, + "X": -5233.44, "Y": -77.73, - "Z": -8259.81 + "Z": -8251.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578060,9 +578060,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4670.22, + "X": -4665.22, "Y": 13.64, - "Z": -8726.75 + "Z": -8718.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578335,9 +578335,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4387.78, + "X": -4382.78, "Y": -140.05, - "Z": -7901.07 + "Z": -7892.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578543,9 +578543,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4952.42, + "X": -4947.43, "Y": -172.93, - "Z": -8002.45 + "Z": -7993.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578841,9 +578841,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4800.82, + "X": -4795.82, "Y": -222.35, - "Z": -7464.74 + "Z": -7456.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587701,7 +587701,7 @@ } }, "typescript/assemblyscript": { - "Directory Group Magnitude": 1974.82, + "Directory Group Magnitude": 1974.62, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "80.0%", @@ -587719,7 +587719,7 @@ "Specification Exposure": "60.0%", "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.06%", + "Documentation Exposure": "22.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -588051,9 +588051,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4895.14, "Y": 292.43, - "Z": -9843.7 + "Z": -9843.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588065,7 +588065,7 @@ "Total LOC": 2420, "Coding LOC": 1756, "Documentation LOC": 439, - "Structural Magnitude": 119.74, + "Structural Magnitude": 119.54, "Control Flow Ratio": "21.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -588078,14 +588078,14 @@ "Error & Exception Exposure": "62.54%", "Tech Debt Exposure": "32.57%", "Testing Exposure": "80.0%", - "API Exposure": "14.62%", + "API Exposure": "14.61%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "95.25%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.53%", + "Documentation Exposure": "88.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -589971,7 +589971,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 21, - "Exposed API / Public Exports": 319, + "Exposed API / Public Exports": 317, "State Mutations / Variable Reassignments": 241, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 413, @@ -610389,7 +610389,7 @@ } }, "typescript/vscode": { - "Directory Group Magnitude": 1472.92, + "Directory Group Magnitude": 1472.32, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "81.8%", @@ -610400,14 +610400,14 @@ "Error & Exception Exposure": "62.42%", "Tech Debt Exposure": "46.95%", "Testing Exposure": "58.39%", - "API Exposure": "4.25%", + "API Exposure": "4.21%", "Concurrency Exposure": "39.38%", "State Flux Exposure": "47.13%", "Commented Logic Exposure": "1.55%", "Specification Exposure": "72.73%", "Instability Exposure": "40.91%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.23%", + "Documentation Exposure": "23.42%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -622001,9 +622001,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -7618.06, + "X": -7618.04, "Y": 207.62, - "Z": 2838.24 + "Z": 2838.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -622015,7 +622015,7 @@ "Total LOC": 975, "Coding LOC": 637, "Documentation LOC": 181, - "Structural Magnitude": 75.64, + "Structural Magnitude": 75.04, "Control Flow Ratio": "39.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -622028,14 +622028,14 @@ "Error & Exception Exposure": "91.22%", "Tech Debt Exposure": "97.24%", "Testing Exposure": "80.0%", - "API Exposure": "8.12%", + "API Exposure": "7.62%", "Concurrency Exposure": "87.95%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.29%", + "Documentation Exposure": "38.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -623051,7 +623051,7 @@ "Type/Safety Bypasses": 15, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 56, + "Exposed API / Public Exports": 50, "State Mutations / Variable Reassignments": 320, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 40, @@ -630060,9 +630060,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4956.43, + "X": -4949.75, "Y": 11.21, - "Z": -5611.94 + "Z": -5603.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630238,9 +630238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3538.86, + "X": -3532.19, "Y": 150.86, - "Z": -6135.31 + "Z": -6126.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630416,9 +630416,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4285.95, + "X": -4279.27, "Y": -67.81, - "Z": -4874.77 + "Z": -4865.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630604,9 +630604,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3851.65, + "X": -3844.98, "Y": 152.92, - "Z": -5933.89 + "Z": -5925.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630782,9 +630782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4720.51, + "X": -4713.84, "Y": -28.59, - "Z": -5109.97 + "Z": -5101.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630980,9 +630980,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4394.07, + "X": -4387.39, "Y": -40.58, - "Z": -5236.51 + "Z": -5227.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631238,9 +631238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4133.07, + "X": -4126.39, "Y": 60.19, - "Z": -5317.56 + "Z": -5308.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631436,9 +631436,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3589.43, + "X": -3582.76, "Y": -102.43, - "Z": -5102.82 + "Z": -5094.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631614,9 +631614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3289.8, + "X": -3283.12, "Y": -27.2, - "Z": -5439.51 + "Z": -5430.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631782,9 +631782,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4729.58, + "X": -4722.9, "Y": 167.57, - "Z": -5962.42 + "Z": -5953.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631960,9 +631960,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3940.04, + "X": -3933.36, "Y": 253.61, - "Z": -6288.13 + "Z": -6279.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632128,9 +632128,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4605.45, + "X": -4598.77, "Y": 25.64, - "Z": -5424.97 + "Z": -5416.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632406,9 +632406,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4538.79, + "X": -4532.11, "Y": -117.75, - "Z": -5014.69 + "Z": -5005.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632584,9 +632584,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4098.16, + "X": -4091.48, "Y": 154.95, - "Z": -6009.59 + "Z": -6000.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632804,9 +632804,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4868.41, + "X": -4861.73, "Y": -91.87, - "Z": -5053.21 + "Z": -5044.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632972,9 +632972,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3883.02, + "X": -3876.35, "Y": -45.39, - "Z": -5206.64 + "Z": -5197.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633210,9 +633210,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4192.1, + "X": -4185.42, "Y": -113.36, - "Z": -4791.61 + "Z": -4782.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633388,9 +633388,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4797.77, + "X": -4791.09, "Y": 68.97, - "Z": -5658.71 + "Z": -5649.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633586,9 +633586,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3579.06, + "X": -3572.38, "Y": -15.87, - "Z": -5239.55 + "Z": -5230.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633754,9 +633754,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4271.81, + "X": -4265.13, "Y": 227.2, - "Z": -6269.65 + "Z": -6260.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633925,9 +633925,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3422.27, + "X": -3415.59, "Y": 105.78, - "Z": -5596.95 + "Z": -5588.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634103,9 +634103,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3908.5, + "X": -3901.83, "Y": -100.54, - "Z": -4685.14 + "Z": -4676.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634291,9 +634291,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3719.9, + "X": -3713.22, "Y": 101.34, - "Z": -5636.26 + "Z": -5627.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634501,9 +634501,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4430.39, + "X": -4423.71, "Y": 164.03, - "Z": -6031.73 + "Z": -6022.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636065,55 +636065,1957 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 68, - "Sequential Logic Declarations": 84, - "Function Parameters": 16, - "Function/Method Declarations": 7, + "Control Flow Branches": 68, + "Sequential Logic Declarations": 84, + "Function Parameters": 16, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 17, + "Type/Safety Bypasses": 15, + "High-Risk Execution Commands": 5, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 56, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 12, + "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": 2, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 8, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 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": 12, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 4, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 332, + "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": 42, + "Design Camel Case": 0, + "Design Snake Case": 39, + "Design Pascal Case": 2, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 11, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 6, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "ArraySliceRange", + "BinOpKind", + "Constant", + "Expr", + "FixedArraySize", + "Function", + "GlobalStmt", + "Stmt", + "Type", + "UnaryOpKind", + "crate::ast::\n AST" + ] + } + } + }, + "lua/darwin-xnu": { + "Directory Group Magnitude": 1317.6, + "File Count": 7, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "71.67%", + "Error & Exception Exposure": "96.73%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "35.75%", + "API Exposure": "0.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.99%", + "Commented Logic Exposure": "1.22%", + "Specification Exposure": "42.86%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "10.56%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "lua/darwin-xnu/benchmark.lua": { + "1. Artifact Identity": { + "Filename": "benchmark.lua", + "Path": "lua/darwin-xnu/benchmark.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1550.32, + "Y": 252.97, + "Z": -8848.69 + }, + "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": 108, + "Coding LOC": 94, + "Documentation LOC": 3, + "Structural Magnitude": 152.08, + "Control Flow Ratio": "50.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.112 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "72.34%", + "Error & Exception Exposure": "99.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.61%", + "API Exposure": "0.16%", + "Concurrency Exposure": "0.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": "13.9%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 15, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 82, + "End Line": 105 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "70.6%", + "Start Line": 62, + "End Line": 80 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 15, + "End Line": 43 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "11.1%", + "Start Line": 1, + "End Line": 107 + }, + { + "Function Name": "QueueTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 34, + "Sequential Logic Declarations": 33, + "Function Parameters": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 102, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "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": 2, + "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": 17, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 70, + "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": 44, + "Design Camel Case": 1, + "Design Snake Case": 43, + "Design Pascal Case": 0, + "Design Upper Case": 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": 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)": 3, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "perfdata", + "strict", + "sysctl" + ] + }, + "lua/darwin-xnu/bridgetime.lua": { + "1. Artifact Identity": { + "Filename": "bridgetime.lua", + "Path": "lua/darwin-xnu/bridgetime.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1286.35, + "Y": 98.48, + "Z": -7795.32 + }, + "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": 143, + "Coding LOC": 110, + "Documentation LOC": 5, + "Structural Magnitude": 147.6, + "Control Flow Ratio": "42.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.023 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "74.86%", + "Error & Exception Exposure": "97.78%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "8.54%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 9, + "Input Parameters": 1, + "Control Flow Ratio": "64.3%", + "Start Line": 81, + "End Line": 102 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 40, + "End Line": 57 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 59, + "End Line": 72 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 104, + "End Line": 117 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 130, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 21 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 128 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 79 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 27 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 33 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 30, + "Sequential Logic Declarations": 41, + "Function Parameters": 12, + "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": 76, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 12, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 3, + "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": 18, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 3, + "Structural Tab Indentations": 82, + "Structural Space Indentations": 0, + "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": 34, + "Design Camel Case": 0, + "Design Snake Case": 34, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "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": [] + }, + "lua/darwin-xnu/fault_throughput.lua": { + "1. Artifact Identity": { + "Filename": "fault_throughput.lua", + "Path": "lua/darwin-xnu/fault_throughput.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -2036.34, + "Y": 273.31, + "Z": -8398.05 + }, + "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": 104, + "Coding LOC": 90, + "Documentation LOC": 3, + "Structural Magnitude": 144.2, + "Control Flow Ratio": "51.5%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.128 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "72.82%", + "Error & Exception Exposure": "98.98%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.62%", + "API Exposure": "0.18%", + "Concurrency Exposure": "0.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": "13.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "65.0%", + "Start Line": 84, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "70.6%", + "Start Line": 64, + "End Line": 82 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 16, + "End Line": 43 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "14.3%", + "Start Line": 1, + "End Line": 103 + }, + { + "Function Name": "QueueTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 62 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 34, + "Sequential Logic Declarations": 32, + "Function Parameters": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 94, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 4, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 6, + "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": 2, + "Fatal Aborts & Exceptions": 4, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 16, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 64, + "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": 40, + "Design Camel Case": 1, + "Design Snake Case": 39, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 4, + "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)": 4, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "os", + "perfdata", + "strict", + "sysctl" + ] + }, + "lua/darwin-xnu/kqtrace.lua": { + "1. Artifact Identity": { + "Filename": "kqtrace.lua", + "Path": "lua/darwin-xnu/kqtrace.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1886.14, + "Y": 174.48, + "Z": -8161.22 + }, + "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": 336, + "Coding LOC": 299, + "Documentation LOC": 2, + "Structural Magnitude": 353.18, + "Control Flow Ratio": "55.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.585 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "96.57%", + "Error & Exception Exposure": "89.51%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "4.12%", + "Concurrency Exposure": "0.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": "46.04%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "kevent_filter_string", + "Structural Impact": 108.6, + "Lines of Code (LOC)": 79, + "Control Flow Branches": 73, + "Input Parameters": 1, + "Control Flow Ratio": "65.2%", + "Start Line": 130, + "End Line": 208 + }, + { + "Function Name": "qos_string", + "Structural Impact": 26.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "60.7%", + "Start Line": 40, + "End Line": 60 + }, + { + "Function Name": "event_prefix_string", + "Structural Impact": 20.3, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 10, + "Input Parameters": 2, + "Control Flow Ratio": "43.5%", + "Start Line": 14, + "End Line": 38 + }, + { + "Function Name": "state_string", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "53.3%", + "Start Line": 62, + "End Line": 75 + }, + { + "Function Name": "processing_begin", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "46.2%", + "Start Line": 212, + "End Line": 228 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "processing_end", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 234, + "End Line": 244 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 261, + "End Line": 272 + }, + { + "Function Name": "thread_adjust", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 290, + "End Line": 305 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 335 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 274, + "End Line": 280 + }, + { + "Function Name": "thread_request", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 288 + }, + { + "Function Name": "kevent_register", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 318 + }, + { + "Function Name": "kevent_process", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 331 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 250, + "End Line": 254 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 256, + "End Line": 259 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 123, + "Sequential Logic Declarations": 100, + "Function Parameters": 20, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 10, + "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": 10, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 6, + "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": 13, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 10, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 244, + "Structural Space Indentations": 0, + "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": 47, + "Design Camel Case": 0, + "Design Snake Case": 44, + "Design Pascal Case": 3, + "Design Upper Case": 0, + "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, + "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": [] + }, + "lua/darwin-xnu/ktruss.lua": { + "1. Artifact Identity": { + "Filename": "ktruss.lua", + "Path": "lua/darwin-xnu/ktruss.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1743.84, + "Y": 141.19, + "Z": -7753.88 + }, + "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": 29, + "Coding LOC": 22, + "Documentation LOC": 0, + "Structural Magnitude": 28.94, + "Control Flow Ratio": "50.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.66 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "41.1%", + "Error & Exception Exposure": "94.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.54%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.93%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 22 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "80.0%", + "Start Line": 5, + "End Line": 11 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 28 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 9, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 12, + "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": 6, + "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": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 2, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 4, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 10, + "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": 4, + "Design Camel Case": 0, + "Design Snake Case": 4, + "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)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "ktrace" + ] + }, + "lua/darwin-xnu/perf_madvise.lua": { + "1. Artifact Identity": { + "Filename": "perf_madvise.lua", + "Path": "lua/darwin-xnu/perf_madvise.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1153.24, + "Y": 125.77, + "Z": -8420.77 + }, + "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": 70, + "Coding LOC": 62, + "Documentation LOC": 0, + "Structural Magnitude": 86.54, + "Control Flow Ratio": "38.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.96 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "58.56%", + "Error & Exception Exposure": "99.14%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.49%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 10, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 54, + "End Line": 66 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 16, + "End Line": 41 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 50, + "End Line": 52 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 69 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 13, + "Sequential Logic Declarations": 21, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "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": 64, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 4, + "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": 1, + "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": 12, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 42, + "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": 31, + "Design Camel Case": 2, + "Design Snake Case": 29, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "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)": 4, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "perfdata", + "strict" + ] + }, + "lua/darwin-xnu/wqtrace.lua": { + "1. Artifact Identity": { + "Filename": "wqtrace.lua", + "Path": "lua/darwin-xnu/wqtrace.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1621.99, + "Y": 214.14, + "Z": -8454.77 + }, + "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": 310, + "Coding LOC": 273, + "Documentation LOC": 3, + "Structural Magnitude": 405.06, + "Control Flow Ratio": "53.5%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.193 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "85.48%", + "Error & Exception Exposure": "97.55%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 26.7, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "56.7%", + "Start Line": 45, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 26.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "60.7%", + "Start Line": 70, + "End Line": 90 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 22.7, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "60.9%", + "Start Line": 14, + "End Line": 43 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 157, + "End Line": 170 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "61.5%", + "Start Line": 284, + "End Line": 296 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 144, + "End Line": 155 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "46.2%", + "Start Line": 196, + "End Line": 217 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 237, + "End Line": 247 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 298, + "End Line": 307 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 133, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 172, + "End Line": 182 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 109, + "End Line": 116 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 225, + "End Line": 235 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 253, + "End Line": 262 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 118, + "End Line": 125 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 184, + "End Line": 191 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 92, + "End Line": 97 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 127, + "End Line": 131 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 264, + "End Line": 267 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 105 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 309 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 219, + "End Line": 223 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 249, + "End Line": 251 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 269, + "End Line": 272 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 274, + "End Line": 277 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 279, + "End Line": 282 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 121, + "Sequential Logic Declarations": 105, + "Function Parameters": 26, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 15, - "High-Risk Execution Commands": 5, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 56, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 174, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 12, + "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": 26, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, + "Scientific & Mathematical Operations": 11, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 8, + "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": 8, + "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": 12, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 4, - "Immutable Data Declarations": 1, + "Bitwise Operations": 24, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 34, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 332, + "Structural Tab Indentations": 215, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -636130,15 +638032,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 42, + "Core Var Decl": 54, "Design Camel Case": 0, - "Design Snake Case": 39, - "Design Pascal Case": 2, + "Design Snake Case": 54, + "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": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636162,29 +638064,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 6, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "ArraySliceRange", - "BinOpKind", - "Constant", - "Expr", - "FixedArraySize", - "Function", - "GlobalStmt", - "Stmt", - "Type", - "UnaryOpKind", - "crate::ast::\n AST" - ] + "9. Extracted Dependencies": [] } } }, "lua/pandoc": { - "Directory Group Magnitude": 1344.84, + "Directory Group Magnitude": 1308.84, "File Count": 26, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -636195,14 +638085,14 @@ "Error & Exception Exposure": "50.07%", "Tech Debt Exposure": "27.87%", "Testing Exposure": "5.19%", - "API Exposure": "1.78%", + "API Exposure": "1.65%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "72.81%", "Commented Logic Exposure": "1.12%", "Specification Exposure": "50.0%", "Instability Exposure": "46.15%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.26%", + "Documentation Exposure": "9.33%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -636219,9 +638109,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3560.99, + "X": -3561.22, "Y": -92.25, - "Z": -3944.38 + "Z": -3943.9 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -636376,9 +638266,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5299.07, + "X": -5297.59, "Y": -83.52, - "Z": -4529.66 + "Z": -4528.79 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -636533,9 +638423,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4930.03, - "Y": -133.7, - "Z": -4824.91 + "X": -4928.83, + "Y": -133.71, + "Z": -4823.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636721,9 +638611,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5151.96, + "X": -5150.44, "Y": -75.82, - "Z": -4172.83 + "Z": -4172.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636889,9 +638779,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4447.7, - "Y": -83.89, - "Z": -4726.55 + "X": -4446.95, + "Y": -83.91, + "Z": -4725.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637057,9 +638947,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4782.6, - "Y": -82.78, - "Z": -3579.1 + "X": -4781.45, + "Y": -82.76, + "Z": -3579.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637225,9 +639115,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4875.01, + "X": -4873.5, "Y": -114.56, - "Z": -4332.2 + "Z": -4331.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637443,9 +639333,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4630.01, - "Y": -114.75, - "Z": -3720.97 + "X": -4628.72, + "Y": -114.73, + "Z": -3720.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637681,9 +639571,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3679.38, - "Y": -92.75, - "Z": -4249.3 + "X": -3679.6, + "Y": -92.76, + "Z": -4248.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637859,9 +639749,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4147.27, - "Y": -50.21, - "Z": -4889.55 + "X": -4147.0, + "Y": -50.23, + "Z": -4888.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638027,9 +639917,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4126.49, - "Y": -149.59, - "Z": -3744.41 + "X": -4126.38, + "Y": -149.57, + "Z": -3744.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638607,9 +640497,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5147.74, - "Y": -161.67, - "Z": -3657.93 + "X": -5146.38, + "Y": -161.66, + "Z": -3657.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638785,9 +640675,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4226.27, - "Y": -55.46, - "Z": -5134.4 + "X": -4225.83, + "Y": -55.48, + "Z": -5132.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638953,9 +640843,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4452.16, - "Y": -160.12, - "Z": -3202.8 + "X": -4451.48, + "Y": -160.1, + "Z": -3203.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639110,9 +641000,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3809.34, + "X": -3809.52, "Y": -88.5, - "Z": -3732.16 + "Z": -3731.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639136,2001 +641026,12 @@ "Cognitive Load Exposure": "30.15%", "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.64%", - "API Exposure": "5.59%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "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": "Inlines", - "Structural Impact": 17.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 6, - "End Line": 19 - }, - { - "Function Name": "isWorldAfterSpace", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1, - "End Line": 4 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 6, - "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": 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, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, - "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": 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": 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": [] - }, - "lua/pandoc/manfilter.lua": { - "1. Artifact Identity": { - "Filename": "manfilter.lua", - "Path": "lua/pandoc/manfilter.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4153.19, - "Y": -87.86, - "Z": -3559.73 - }, - "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": 45, - "Coding LOC": 33, - "Documentation LOC": 6, - "Structural Magnitude": 27.56, - "Control Flow Ratio": "9.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.495 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.5%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.49%", - "API Exposure": "4.68%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.2%", - "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": "Header", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 5, - "End Line": 12 - }, - { - "Function Name": "Table", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 33 - }, - { - "Function Name": "Link", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 39 - }, - { - "Function Name": "Note", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 44 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 44 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 22 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 26 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 19, - "Function Parameters": 7, - "Function/Method Declarations": 4, - "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": 8, - "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": 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": 3, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, - "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": 4, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "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": [ - "text" - ] - }, - "lua/pandoc/markdown-reader.lua": { - "1. Artifact Identity": { - "Filename": "markdown-reader.lua", - "Path": "lua/pandoc/markdown-reader.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -3765.86, - "Y": -126.74, - "Z": -3689.93 - }, - "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": 13, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 13.54, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.19%", - "Error & Exception Exposure": "73.66%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 3, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 12 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 6, - "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": 6, - "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)": 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": 1, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, - "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": 1, - "Design Pascal Case": 1, - "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": [] - }, - "lua/pandoc/math.lua": { - "1. Artifact Identity": { - "Filename": "math.lua", - "Path": "lua/pandoc/math.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -3803.79, - "Y": -114.75, - "Z": -4606.13 - }, - "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": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 11.9, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.28 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.24%", - "Error & Exception Exposure": "73.66%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 3, - "End Line": 8 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 10 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "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": 6, - "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)": 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": 8, - "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": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "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, - "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)": 23 - }, - "9. Extracted Dependencies": [] - }, - "lua/pandoc/pandoc-format.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-format.lua", - "Path": "lua/pandoc/pandoc-format.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4968.1, - "Y": -64.92, - "Z": -4637.9 - }, - "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": 53, - "Coding LOC": 47, - "Documentation LOC": 0, - "Structural Magnitude": 25.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": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "68.38%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 52 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 50 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 5, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, - "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, - "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": 5, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 40, - "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": 18, - "Design Camel Case": 0, - "Design Snake Case": 18, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.format", - "tasty" - ] - }, - "lua/pandoc/pandoc-image.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-image.lua", - "Path": "lua/pandoc/pandoc-image.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4500.55, - "Y": -150.22, - "Z": -3423.93 - }, - "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": 69, - "Coding LOC": 59, - "Documentation LOC": 4, - "Structural Magnitude": 47.68, - "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.886 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "63.24%", - "Error & Exception Exposure": "57.54%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "1.03%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "57.1%", - "Start Line": 43, - "End Line": 48 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 64, - "End Line": 66 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 37, - "End Line": 42 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 36 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 57 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 45 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 20, - "Function Parameters": 8, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 9, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 24, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 8, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 8, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, - "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": 8, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 48, - "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": 20, - "Design Camel Case": 1, - "Design Snake Case": 19, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.image", - "tasty" - ] - }, - "lua/pandoc/pandoc-json.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-json.lua", - "Path": "lua/pandoc/pandoc-json.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4662.73, - "Y": -97.64, - "Z": -4727.55 - }, - "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": 119, - "Coding LOC": 110, - "Documentation LOC": 4, - "Structural Magnitude": 44.6, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "8.32%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.5%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 118 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 43 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 50 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 56 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 62 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 74 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 80 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 105, - "End Line": 110 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 116 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 15, - "End Line": 17 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 23 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 26 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 92 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 95 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 101 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 104 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, - "Function Parameters": 22, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 25, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 15, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 23, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 22, - "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)": 3, - "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": 23, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 102, - "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": 9, - "Design Camel Case": 0, - "Design Snake Case": 9, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc", - "pandoc.json", - "tasty" - ] - }, - "lua/pandoc/pandoc-list.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-list.lua", - "Path": "lua/pandoc/pandoc-list.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4389.69, - "Y": -99.43, - "Z": -4454.7 - }, - "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": 161, - "Coding LOC": 147, - "Documentation LOC": 0, - "Structural Magnitude": 103.04, - "Control Flow Ratio": "14.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.838 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "58.75%", - "Error & Exception Exposure": "15.13%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "40.0%", - "Start Line": 51, - "End Line": 56 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "28.6%", - "Start Line": 69, - "End Line": 74 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 75, - "End Line": 78 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 160 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 63, - "End Line": 65 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 19, - "End Line": 25 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "16.7%", - "Start Line": 41, - "End Line": 47 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 82, - "End Line": 88 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 97, - "End Line": 101 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 125, - "End Line": 127 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 15 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 124 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 62 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 140 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 29 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 37 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 96 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 105, - "End Line": 109 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 114 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 131 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 75, - "Function Parameters": 29, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 38, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 56, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 34, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 29, - "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, - "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": 34, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 33, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 140, - "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": 33, - "Design Camel Case": 0, - "Design Snake Case": 32, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.List", - "tasty" - ] - }, - "lua/pandoc/pandoc-log.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-log.lua", - "Path": "lua/pandoc/pandoc-log.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -5012.71, - "Y": -123.45, - "Z": -3846.86 - }, - "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": 76, - "Coding LOC": 61, - "Documentation LOC": 10, - "Structural Magnitude": 34.82, - "Control Flow Ratio": "5.7%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.623 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "37.56%", - "Error & Exception Exposure": "10.45%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.23%", + "Testing Exposure": "2.64%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "11.92%", @@ -641138,122 +641039,52 @@ }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "40.0%", - "Start Line": 50, - "End Line": 60 + "Function Name": "Inlines", + "Structural Impact": 17.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 6, + "End Line": 19 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", + "Function Name": "isWorldAfterSpace", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", "Start Line": 1, - "End Line": 75 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 28 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 34 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 46 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 67, - "End Line": 72 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 65 - }, - { - "Function Name": "Anonymous_Block", - "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 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "End Line": 4 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 33, - "Function Parameters": 9, - "Function/Method Declarations": 0, + "Control Flow Branches": 15, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 19, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 18, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 15, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 9, + "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)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -641265,20 +641096,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 7, - "Ad-hoc Print / Debug Statements": 3, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 15, + "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": 13, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 53, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -641295,15 +641126,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 14, + "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": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641315,7 +641146,7 @@ "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 1, + "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, @@ -641327,21 +641158,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "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": [ - "pandoc.json", - "pandoc.log", - "tasty" - ] + "9. Extracted Dependencies": [] }, - "lua/pandoc/pandoc-mediabag.lua": { + "lua/pandoc/manfilter.lua": { "1. Artifact Identity": { - "Filename": "pandoc-mediabag.lua", - "Path": "lua/pandoc/pandoc-mediabag.lua", + "Filename": "manfilter.lua", + "Path": "lua/pandoc/manfilter.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -641351,9 +641178,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3900.72, - "Y": -133.74, - "Z": -4235.81 + "X": -4152.81, + "Y": -87.84, + "Z": -3559.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641362,160 +641189,130 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 119, - "Coding LOC": 107, - "Documentation LOC": 1, - "Structural Magnitude": 54.14, - "Control Flow Ratio": "14.0%", + "Total LOC": 45, + "Coding LOC": 33, + "Documentation LOC": 6, + "Structural Magnitude": 27.56, + "Control Flow Ratio": "9.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.607 + "Raw Cognitive Density": 0.495 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "36.12%", - "Error & Exception Exposure": "21.03%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "26.5%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "99.91%", + "Testing Exposure": "2.49%", + "API Exposure": "4.68%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.98%", + "State Flux Exposure": "98.2%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "54.5%", - "Start Line": 77, - "End Line": 94 + "Function Name": "Header", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 5, + "End Line": 12 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "Table", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 118 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 98, - "End Line": 104 + "Start Line": 16, + "End Line": 33 }, { - "Function Name": "Anonymous_Block", + "Function Name": "Link", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 22 + "Start Line": 37, + "End Line": 39 }, { - "Function Name": "Anonymous_Block", + "Function Name": "Note", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 34 + "Start Line": 42, + "End Line": 44 }, { - "Function Name": "Anonymous_Block", + "Function Name": "__global_context__", "Structural Impact": 1.6, "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 49 + "Start Line": 1, + "End Line": 44 }, { "Function Name": "Anonymous_Block", "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 73 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 59 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 111 + "Start Line": 20, + "End Line": 22 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 112, - "End Line": 116 + "Start Line": 24, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 43, - "Function Parameters": 9, - "Function/Method Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 19, + "Function Parameters": 7, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 23, + "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": 29, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 17, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 9, + "Closures and Anonymous Functions": 3, "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)": 2, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -641530,17 +641327,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 17, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 22, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 100, + "Structural Space Indentations": 24, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -641557,22 +641354,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 22, + "Core Var Decl": 4, "Design Camel Case": 0, - "Design Snake Case": 22, - "Design Pascal Case": 0, + "Design Snake Case": 3, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 4, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "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, @@ -641589,20 +641386,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "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": [ - "pandoc.mediabag", - "tasty" + "text" ] }, - "lua/pandoc/sample.lua": { + "lua/pandoc/markdown-reader.lua": { "1. Artifact Identity": { - "Filename": "sample.lua", - "Path": "lua/pandoc/sample.lua", + "Filename": "markdown-reader.lua", + "Path": "lua/pandoc/markdown-reader.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -641612,9 +641408,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4383.83, - "Y": -138.4, - "Z": -4194.61 + "X": -3765.89, + "Y": -126.73, + "Z": -3689.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641623,530 +641419,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 370, - "Coding LOC": 277, - "Documentation LOC": 45, - "Structural Magnitude": 531.84, - "Control Flow Ratio": "35.4%", + "Total LOC": 13, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 13.54, + "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.513 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.49%", - "Error & Exception Exposure": "97.22%", + "Cognitive Load Exposure": "14.19%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "10.87%", + "Testing Exposure": "2.39%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "5.97%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "91.68%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.75%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "Table", - "Structural Impact": 68.1, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "60.5%", - "Start Line": 307, - "End Line": 346 - }, - { - "Function Name": "escape", - "Structural Impact": 25.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "54.2%", - "Start Line": 39, - "End Line": 56 - }, { "Function Name": "Anonymous_Block", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 41, - "End Line": 55 - }, - { - "Function Name": "Doc", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "41.7%", - "Start Line": 83, - "End Line": 97 - }, - { - "Function Name": "html_align", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 274, - "End Line": 284 - }, - { - "Function Name": "attributes", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 60, - "End Line": 68 - }, - { - "Function Name": "CaptionedImage", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "37.5%", - "Start Line": 286, - "End Line": 296 - }, - { - "Function Name": "CodeBlock", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "44.4%", - "Start Line": 233, - "End Line": 244 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "22.2%", - "Start Line": 1, - "End Line": 369 - }, - { - "Function Name": "RawInline", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 190, - "End Line": 196 - }, - { - "Function Name": "Cite", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 198, - "End Line": 205 - }, - { - "Function Name": "RawBlock", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 348, - "End Line": 354 - }, - { - "Function Name": "DefinitionList", "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 8, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "37.5%", - "Start Line": 262, - "End Line": 270 - }, - { - "Function Name": "BulletList", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 246, - "End Line": 252 - }, - { - "Function Name": "OrderedList", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 254, - "End Line": 260 - }, - { - "Function Name": "Link", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 144, - "End Line": 147 - }, - { - "Function Name": "Image", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 152 - }, - { - "Function Name": "Figure", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 298, - "End Line": 302 - }, - { - "Function Name": "Header", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 216, - "End Line": 218 - }, - { - "Function Name": "Writer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 21 - }, - { - "Function Name": "Note", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 174, - "End Line": 184 - }, - { - "Function Name": "Code", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 156 - }, - { - "Function Name": "Span", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 186, - "End Line": 188 - }, - { - "Function Name": "Div", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 358 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 365, - "End Line": 368 - }, - { - "Function Name": "Str", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "Emph", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "Strong", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 126 - }, - { - "Function Name": "Subscript", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 130 - }, - { - "Function Name": "Superscript", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 134 - }, - { - "Function Name": "SmallCaps", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "Strikeout", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 142 - }, - { - "Function Name": "InlineMath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 158, - "End Line": 160 - }, - { - "Function Name": "DisplayMath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 164 - }, - { - "Function Name": "SingleQuoted", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 166, - "End Line": 168 - }, - { - "Function Name": "DoubleQuoted", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 170, - "End Line": 172 - }, - { - "Function Name": "Plain", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 207, - "End Line": 209 - }, - { - "Function Name": "Para", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 213 - }, - { - "Function Name": "BlockQuote", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 222 + "Start Line": 3, + "End Line": 10 }, { - "Function Name": "LineBlock", - "Structural Impact": 1.6, + "Function Name": "__global_context__", + "Structural Impact": 1.2, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "add", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "add", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 311 - }, - { - "Function Name": "Blocksep", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 76 - }, - { - "Function Name": "Space", - "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": "SoftBreak", - "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": "LineBreak", - "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": "HorizontalRule", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 224, - "End Line": 226 + "Start Line": 1, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 84, - "Sequential Logic Declarations": 153, - "Function Parameters": 47, - "Function/Method Declarations": 44, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 13, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 75, - "State Mutations / Variable Reassignments": 188, - "Commented-out Code (Dead Logic)": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, + "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": 3, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 12, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -642161,24 +641507,24 @@ "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": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 26, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 185, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 2, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -642188,12 +641534,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 49, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 47, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 5, + "Design Snake Case": 1, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -642206,7 +641552,7 @@ "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, @@ -642220,19 +641566,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": [ - "pandoc.utils" - ] + "9. Extracted Dependencies": [] }, - "lua/pandoc/writer-template.lua": { + "lua/pandoc/math.lua": { "1. Artifact Identity": { - "Filename": "writer-template.lua", - "Path": "lua/pandoc/writer-template.lua", + "Filename": "math.lua", + "Path": "lua/pandoc/math.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -642242,9 +641586,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3924.02, - "Y": -124.78, - "Z": -3296.47 + "X": -3803.77, + "Y": -114.77, + "Z": -4604.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642253,73 +641597,73 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, + "Total LOC": 11, + "Coding LOC": 10, "Documentation LOC": 0, - "Structural Magnitude": 5.12, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 11.9, + "Control Flow Ratio": "33.3%", "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.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.34%", - "API Exposure": "5.59%", + "Cognitive Load Exposure": "13.24%", + "Error & Exception Exposure": "73.66%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Writer", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 3 + "Function Name": "Anonymous_Block", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 3, + "End Line": 8 }, { - "Function Name": "Template", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "__global_context__", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 7 + "Start Line": 1, + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 2, "Sequential Logic Declarations": 4, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "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": 2, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, "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, @@ -642351,7 +641695,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642368,15 +641712,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 Pascal Case": 0, + "Design Pascal Case": 1, "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, @@ -642403,50 +641747,26 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 23 }, "9. Extracted Dependencies": [] - } - } - }, - "lua/darwin-xnu": { - "Directory Group Magnitude": 1317.6, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "71.67%", - "Error & Exception Exposure": "96.73%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "35.75%", - "API Exposure": "0.64%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", - "Commented Logic Exposure": "1.22%", - "Specification Exposure": "42.86%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "lua/darwin-xnu/benchmark.lua": { + }, + "lua/pandoc/pandoc-format.lua": { "1. Artifact Identity": { - "Filename": "benchmark.lua", - "Path": "lua/darwin-xnu/benchmark.lua", + "Filename": "pandoc-format.lua", + "Path": "lua/pandoc/pandoc-format.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1550.32, - "Y": 252.97, - "Z": -8848.69 + "X": -4966.7, + "Y": -64.93, + "Z": -4636.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642455,110 +641775,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 108, - "Coding LOC": 94, - "Documentation LOC": 3, - "Structural Magnitude": 152.08, - "Control Flow Ratio": "50.7%", + "Total LOC": 53, + "Coding LOC": 47, + "Documentation LOC": 0, + "Structural Magnitude": 25.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.112 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "72.34%", - "Error & Exception Exposure": "99.32%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "68.38%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.61%", - "API Exposure": "0.16%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.9%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 15, + "Function Name": "__global_context__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 82, - "End Line": 105 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 52 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "70.6%", - "Start Line": 62, - "End Line": 80 + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 50 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 15, - "End Line": 43 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "11.1%", - "Start Line": 1, - "End Line": 107 + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "QueueTest", - "Structural Impact": 1.7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 60 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 34, - "Sequential Logic Declarations": 33, - "Function Parameters": 2, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 3, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 102, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 3, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 5, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 3, + "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)": 5, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -642572,18 +641882,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 17, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 70, + "Structural Space Indentations": 40, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642600,12 +641910,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 44, - "Design Camel Case": 1, - "Design Snake Case": 43, + "Core Var Decl": 18, + "Design Camel Case": 0, + "Design Snake Case": 18, "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, @@ -642616,7 +641926,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -642632,35 +641942,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "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": [ - "benchrun", - "csv", - "perfdata", - "strict", - "sysctl" + "pandoc.format", + "tasty" ] }, - "lua/darwin-xnu/bridgetime.lua": { + "lua/pandoc/pandoc-image.lua": { "1. Artifact Identity": { - "Filename": "bridgetime.lua", - "Path": "lua/darwin-xnu/bridgetime.lua", + "Filename": "pandoc-image.lua", + "Path": "lua/pandoc/pandoc-image.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1286.35, - "Y": 98.48, - "Z": -7795.32 + "X": -4499.68, + "Y": -150.2, + "Z": -3424.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642669,196 +641976,156 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 143, - "Coding LOC": 110, - "Documentation LOC": 5, - "Structural Magnitude": 147.6, - "Control Flow Ratio": "42.3%", + "Total LOC": 69, + "Coding LOC": 59, + "Documentation LOC": 4, + "Structural Magnitude": 47.68, + "Control Flow Ratio": "28.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.023 + "Raw Cognitive Density": 0.886 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.86%", - "Error & Exception Exposure": "97.78%", + "Cognitive Load Exposure": "63.24%", + "Error & Exception Exposure": "57.54%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", + "Testing Exposure": "2.4%", + "API Exposure": "1.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "8.54%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 81, - "End Line": 102 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 40, - "End Line": 57 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, + "Structural Impact": 5.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 4, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 59, - "End Line": 72 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 104, - "End Line": 117 + "Start Line": 43, + "End Line": 48 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 13, + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 130, - "End Line": 142 + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 64, + "End Line": 66 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "__global_context__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 32, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 21 + "Start Line": 1, + "End Line": 68 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 128 + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 37, + "End Line": 42 }, { - "Function Name": "__global_context__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 142 + "Start Line": 28, + "End Line": 36 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 79 + "Start Line": 49, + "End Line": 57 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 27 + "Start Line": 61, + "End Line": 63 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 33 + "Start Line": 39, + "End Line": 39 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 45, + "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 41, - "Function Parameters": 12, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 20, + "Function Parameters": 8, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 9, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 76, - "Commented-out Code (Dead Logic)": 1, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 24, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 8, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 12, + "Closures and Anonymous Functions": 8, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 2, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -642867,17 +642134,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 8, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 18, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 3, - "Structural Tab Indentations": 82, - "Structural Space Indentations": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 48, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642894,9 +642161,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 34, - "Design Camel Case": 0, - "Design Snake Case": 34, + "Core Var Decl": 20, + "Design Camel Case": 1, + "Design Snake Case": 19, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -642926,29 +642193,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": [ + "pandoc.image", + "tasty" + ] }, - "lua/darwin-xnu/fault_throughput.lua": { + "lua/pandoc/pandoc-json.lua": { "1. Artifact Identity": { - "Filename": "fault_throughput.lua", - "Path": "lua/darwin-xnu/fault_throughput.lua", + "Filename": "pandoc-json.lua", + "Path": "lua/pandoc/pandoc-json.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2036.34, - "Y": 273.31, - "Z": -8398.05 + "X": -4661.68, + "Y": -97.65, + "Z": -4726.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642957,110 +642227,280 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 104, - "Coding LOC": 90, - "Documentation LOC": 3, - "Structural Magnitude": 144.2, - "Control Flow Ratio": "51.5%", + "Total LOC": 119, + "Coding LOC": 110, + "Documentation LOC": 4, + "Structural Magnitude": 44.6, + "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.128 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "72.82%", - "Error & Exception Exposure": "98.98%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "8.32%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.62%", - "API Exposure": "0.18%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "95.5%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.98%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 13, + "Function Name": "__global_context__", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "65.0%", - "Start Line": 84, - "End Line": 101 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 118 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "70.6%", - "Start Line": 64, - "End Line": 82 + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 43 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 16, - "End Line": 43 + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 50 }, { - "Function Name": "__global_context__", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 3, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "14.3%", - "Start Line": 1, - "End Line": 103 + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 56 }, { - "Function Name": "QueueTest", - "Structural Impact": 1.7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 57, "End Line": 62 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 74 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 80 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 105, + "End Line": 110 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 116 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 15, + "End Line": 17 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 23 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 26 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 32 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 92 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 95 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 104 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 34, - "Sequential Logic Declarations": 32, - "Function Parameters": 2, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 22, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 25, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 94, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 4, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 23, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 22, + "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)": 6, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643074,18 +642514,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 4, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 23, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 64, + "Structural Space Indentations": 102, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643102,12 +642542,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 40, - "Design Camel Case": 1, - "Design Snake Case": 39, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 9, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 4, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -643118,7 +642558,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 4, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -643134,36 +642574,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, + "Direct Upstream (Fragility)": 3, "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": [ - "benchrun", - "csv", - "os", - "perfdata", - "strict", - "sysctl" + "pandoc", + "pandoc.json", + "tasty" ] }, - "lua/darwin-xnu/kqtrace.lua": { + "lua/pandoc/pandoc-list.lua": { "1. Artifact Identity": { - "Filename": "kqtrace.lua", - "Path": "lua/darwin-xnu/kqtrace.lua", + "Filename": "pandoc-list.lua", + "Path": "lua/pandoc/pandoc-list.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1886.14, - "Y": 174.48, - "Z": -8161.22 + "X": -4389.13, + "Y": -99.45, + "Z": -4453.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643172,220 +642609,290 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 336, - "Coding LOC": 299, - "Documentation LOC": 2, - "Structural Magnitude": 353.18, - "Control Flow Ratio": "55.2%", + "Total LOC": 161, + "Coding LOC": 147, + "Documentation LOC": 0, + "Structural Magnitude": 103.04, + "Control Flow Ratio": "14.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.585 + "Raw Cognitive Density": 0.838 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.57%", - "Error & Exception Exposure": "89.51%", + "Cognitive Load Exposure": "58.75%", + "Error & Exception Exposure": "15.13%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "4.12%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.04%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "kevent_filter_string", - "Structural Impact": 108.6, - "Lines of Code (LOC)": 79, - "Control Flow Branches": 73, - "Input Parameters": 1, - "Control Flow Ratio": "65.2%", - "Start Line": 130, - "End Line": 208 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "40.0%", + "Start Line": 51, + "End Line": 56 }, { - "Function Name": "qos_string", - "Structural Impact": 26.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "60.7%", - "Start Line": 40, - "End Line": 60 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "28.6%", + "Start Line": 69, + "End Line": 74 }, { - "Function Name": "event_prefix_string", - "Structural Impact": 20.3, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "43.5%", - "Start Line": 14, - "End Line": 38 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 75, + "End Line": 78 }, { - "Function Name": "state_string", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "53.3%", - "Start Line": 62, - "End Line": 75 + "Function Name": "__global_context__", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 160 }, { - "Function Name": "processing_begin", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 212, - "End Line": 228 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 63, + "End Line": 65 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 19, + "End Line": 25 }, { - "Function Name": "processing_end", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 234, - "End Line": 244 + "Function Name": "Anonymous_Block", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "16.7%", + "Start Line": 41, + "End Line": 47 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 261, - "End Line": 272 + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 82, + "End Line": 88 }, { - "Function Name": "thread_adjust", + "Function Name": "Anonymous_Block", "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 97, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 125, + "End Line": 127 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 290, - "End Line": 305 + "Start Line": 10, + "End Line": 15 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 93, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 335 + "Start Line": 118, + "End Line": 124 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 274, - "End Line": 280 + "Start Line": 57, + "End Line": 62 }, { - "Function Name": "thread_request", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 288 + "Start Line": 135, + "End Line": 140 }, { - "Function Name": "kevent_register", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 318 + "Start Line": 26, + "End Line": 29 }, { - "Function Name": "kevent_process", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 331 + "Start Line": 33, + "End Line": 37 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, + "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 250, - "End Line": 254 + "Start Line": 92, + "End Line": 96 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 105, + "End Line": 109 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 114 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 256, - "End Line": 259 + "Start Line": 128, + "End Line": 131 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 123, - "Sequential Logic Declarations": 100, - "Function Parameters": 20, - "Function/Method Declarations": 10, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 75, + "Function Parameters": 29, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 38, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, - "State Mutations / Variable Reassignments": 120, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 56, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 34, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 10, + "Closures and Anonymous Functions": 29, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 6, + "Collection Iterators / Comprehensions": 0, + "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, @@ -643400,17 +642907,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 34, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 13, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 10, + "Private / Encapsulated Scopes": 33, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 244, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 140, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643427,10 +642934,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 47, + "Core Var Decl": 33, "Design Camel Case": 0, - "Design Snake Case": 44, - "Design Pascal Case": 3, + "Design Snake Case": 32, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -643459,29 +642966,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": [ + "pandoc.List", + "tasty" + ] }, - "lua/darwin-xnu/ktruss.lua": { + "lua/pandoc/pandoc-log.lua": { "1. Artifact Identity": { - "Filename": "ktruss.lua", - "Path": "lua/darwin-xnu/ktruss.lua", + "Filename": "pandoc-log.lua", + "Path": "lua/pandoc/pandoc-log.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1743.84, - "Y": 141.19, - "Z": -7753.88 + "X": -5011.26, + "Y": -123.44, + "Z": -3846.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643490,100 +643000,150 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 22, - "Documentation LOC": 0, - "Structural Magnitude": 28.94, - "Control Flow Ratio": "50.0%", + "Total LOC": 76, + "Coding LOC": 61, + "Documentation LOC": 10, + "Structural Magnitude": 34.82, + "Control Flow Ratio": "5.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.623 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", - "Error & Exception Exposure": "94.85%", + "Cognitive Load Exposure": "37.56%", + "Error & Exception Exposure": "10.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.54%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "0.23%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.93%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 22 + "Input Parameters": 0, + "Control Flow Ratio": "40.0%", + "Start Line": 50, + "End Line": 60 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, + "Function Name": "__global_context__", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "80.0%", - "Start Line": 5, - "End Line": 11 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 75 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 25, + "Control Flow Ratio": "0.0%", + "Start Line": 23, "End Line": 28 }, { - "Function Name": "__global_context__", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 28 + "Start Line": 29, + "End Line": 34 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 46 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 67, + "End Line": 72 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 65 + }, + { + "Function Name": "Anonymous_Block", + "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 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 40 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 9, - "Function Parameters": 1, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 33, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 19, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 15, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 6, + "Closures and Anonymous Functions": 9, + "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)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643595,20 +643155,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 7, "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 15, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 4, + "Private / Encapsulated Scopes": 13, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 53, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643625,12 +643185,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 14, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 14, "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, @@ -643645,7 +643205,7 @@ "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, + "Non-Standard / Steganographic Imports": 1, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, @@ -643657,31 +643217,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "ktrace" + "pandoc.json", + "pandoc.log", + "tasty" ] }, - "lua/darwin-xnu/perf_madvise.lua": { + "lua/pandoc/pandoc-mediabag.lua": { "1. Artifact Identity": { - "Filename": "perf_madvise.lua", - "Path": "lua/darwin-xnu/perf_madvise.lua", + "Filename": "pandoc-mediabag.lua", + "Path": "lua/pandoc/pandoc-mediabag.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1153.24, - "Y": 125.77, - "Z": -8420.77 + "X": -3900.82, + "Y": -133.76, + "Z": -4234.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643690,25 +643252,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 62, - "Documentation LOC": 0, - "Structural Magnitude": 86.54, - "Control Flow Ratio": "38.2%", + "Total LOC": 119, + "Coding LOC": 107, + "Documentation LOC": 1, + "Structural Magnitude": 54.14, + "Control Flow Ratio": "14.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.96 + "Raw Cognitive Density": 0.607 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "58.56%", - "Error & Exception Exposure": "99.14%", + "Cognitive Load Exposure": "36.12%", + "Error & Exception Exposure": "21.03%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "99.98%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", @@ -643719,71 +643281,131 @@ "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 10, + "Structural Impact": 7.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 54, - "End Line": 66 + "Control Flow Ratio": "54.5%", + "Start Line": 77, + "End Line": 94 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 118 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 26, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 16, - "End Line": 41 + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 98, + "End Line": 104 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 50, - "End Line": 52 + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 22 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 69 + "Start Line": 23, + "End Line": 34 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 49 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 73 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 59 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 111 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 112, + "End Line": 116 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 21, - "Function Parameters": 1, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 43, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 23, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 64, + "State Mutations / Variable Reassignments": 29, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 17, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 9, + "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)": 4, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643797,18 +643419,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 17, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 12, + "Private / Encapsulated Scopes": 22, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 42, + "Structural Space Indentations": 100, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643825,12 +643447,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 31, - "Design Camel Case": 2, - "Design Snake Case": 29, + "Core Var Decl": 22, + "Design Camel Case": 0, + "Design Snake Case": 22, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -643840,8 +643462,8 @@ "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "External Network & I/O Hooks": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -643857,34 +643479,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "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": [ - "benchrun", - "csv", - "perfdata", - "strict" + "pandoc.mediabag", + "tasty" ] }, - "lua/darwin-xnu/wqtrace.lua": { + "lua/pandoc/sample.lua": { "1. Artifact Identity": { - "Filename": "wqtrace.lua", - "Path": "lua/darwin-xnu/wqtrace.lua", + "Filename": "sample.lua", + "Path": "lua/pandoc/sample.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1621.99, - "Y": 214.14, - "Z": -8454.77 + "X": -4383.19, + "Y": -138.4, + "Z": -4194.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643893,328 +643513,708 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 310, - "Coding LOC": 273, - "Documentation LOC": 3, - "Structural Magnitude": 405.06, - "Control Flow Ratio": "53.5%", + "Total LOC": 370, + "Coding LOC": 277, + "Documentation LOC": 45, + "Structural Magnitude": 495.84, + "Control Flow Ratio": "35.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.193 + "Raw Cognitive Density": 1.513 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "85.48%", - "Error & Exception Exposure": "97.55%", + "Cognitive Load Exposure": "95.49%", + "Error & Exception Exposure": "97.22%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.0%", + "API Exposure": "7.48%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Commented Logic Exposure": "5.97%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "75.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 26.7, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "56.7%", - "Start Line": 45, - "End Line": 68 + "Function Name": "Table", + "Structural Impact": 68.1, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "60.5%", + "Start Line": 307, + "End Line": 346 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 26.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "60.7%", - "Start Line": 70, - "End Line": 90 + "Function Name": "escape", + "Structural Impact": 25.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "54.2%", + "Start Line": 39, + "End Line": 56 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 22.7, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 14, + "Structural Impact": 14.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 14, - "End Line": 43 + "Control Flow Ratio": "64.3%", + "Start Line": 41, + "End Line": 55 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, + "Function Name": "Doc", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "41.7%", + "Start Line": 83, + "End Line": 97 + }, + { + "Function Name": "html_align", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 157, - "End Line": 170 + "Control Flow Ratio": "50.0%", + "Start Line": 274, + "End Line": 284 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 8, + "Function Name": "attributes", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "61.5%", - "Start Line": 284, + "Control Flow Ratio": "50.0%", + "Start Line": 60, + "End Line": 68 + }, + { + "Function Name": "CaptionedImage", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "37.5%", + "Start Line": 286, "End Line": 296 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.3, + "Function Name": "CodeBlock", + "Structural Impact": 9.3, "Lines of Code (LOC)": 12, - "Control Flow Branches": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "44.4%", + "Start Line": 233, + "End Line": 244 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "22.2%", + "Start Line": 1, + "End Line": 369 + }, + { + "Function Name": "RawInline", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 190, + "End Line": 196 + }, + { + "Function Name": "Cite", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 198, + "End Line": 205 + }, + { + "Function Name": "RawBlock", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 348, + "End Line": 354 + }, + { + "Function Name": "DefinitionList", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 144, - "End Line": 155 + "Control Flow Ratio": "37.5%", + "Start Line": 262, + "End Line": 270 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 6, + "Function Name": "BulletList", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 196, - "End Line": 217 + "Control Flow Ratio": "42.9%", + "Start Line": 246, + "End Line": 252 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, + "Function Name": "OrderedList", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 237, - "End Line": 247 + "Control Flow Ratio": "42.9%", + "Start Line": 254, + "End Line": 260 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, + "Function Name": "Link", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 144, + "End Line": 147 + }, + { + "Function Name": "Image", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 152 + }, + { + "Function Name": "Figure", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 298, + "End Line": 302 + }, + { + "Function Name": "Header", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 216, + "End Line": 218 + }, + { + "Function Name": "Writer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 21 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, + "Function Name": "Note", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 298, - "End Line": 307 + "Control Flow Ratio": "0.0%", + "Start Line": 174, + "End Line": 184 + }, + { + "Function Name": "Code", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 156 + }, + { + "Function Name": "Span", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 186, + "End Line": 188 + }, + { + "Function Name": "Div", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 358 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 365, + "End Line": 368 + }, + { + "Function Name": "Str", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 133, - "End Line": 142 + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 106 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, + "Function Name": "Emph", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 172, - "End Line": 182 + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, + "Function Name": "Strong", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 109, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 126 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, + "Function Name": "Subscript", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 225, - "End Line": 235 + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 130 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, + "Function Name": "Superscript", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 253, - "End Line": 262 + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 134 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, + "Function Name": "SmallCaps", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 118, - "End Line": 125 + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, + "Function Name": "Strikeout", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 184, - "End Line": 191 + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 142 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, + "Function Name": "InlineMath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 92, - "End Line": 97 + "Control Flow Ratio": "0.0%", + "Start Line": 158, + "End Line": 160 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, + "Function Name": "DisplayMath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 127, - "End Line": 131 + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 164 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "SingleQuoted", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 264, - "End Line": 267 + "Control Flow Ratio": "0.0%", + "Start Line": 166, + "End Line": 168 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "DoubleQuoted", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 105 + "Start Line": 170, + "End Line": 172 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 36, + "Function Name": "Plain", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 309 + "Start Line": 207, + "End Line": 209 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "Para", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 219, - "End Line": 223 + "Start Line": 211, + "End Line": 213 }, { - "Function Name": "Anonymous_Block", + "Function Name": "BlockQuote", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 249, - "End Line": 251 + "Start Line": 220, + "End Line": 222 }, { - "Function Name": "Anonymous_Block", + "Function Name": "LineBlock", "Structural Impact": 1.6, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 269, - "End Line": 272 + "Start Line": 228, + "End Line": 231 }, { - "Function Name": "Anonymous_Block", + "Function Name": "add", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 274, - "End Line": 277 + "Start Line": 85, + "End Line": 87 }, { - "Function Name": "Anonymous_Block", + "Function Name": "add", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 279, - "End Line": 282 + "Start Line": 309, + "End Line": 311 + }, + { + "Function Name": "Blocksep", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 76 + }, + { + "Function Name": "Space", + "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": "SoftBreak", + "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": "LineBreak", + "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": "HorizontalRule", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 224, + "End Line": 226 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 121, - "Sequential Logic Declarations": 105, - "Function Parameters": 26, - "Function/Method Declarations": 0, + "Control Flow Branches": 84, + "Sequential Logic Declarations": 153, + "Function Parameters": 47, + "Function/Method Declarations": 44, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 13, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 39, + "State Mutations / Variable Reassignments": 188, + "Commented-out Code (Dead Logic)": 1, + "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": 3, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 12, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "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": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 12, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 26, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 185, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 2, + "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": 49, + "Design Camel Case": 0, + "Design Snake Case": 47, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 5, + "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": 1, + "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": [ + "pandoc.utils" + ] + }, + "lua/pandoc/writer-template.lua": { + "1. Artifact Identity": { + "Filename": "writer-template.lua", + "Path": "lua/pandoc/writer-template.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -3923.81, + "Y": -124.77, + "Z": -3296.63 + }, + "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": 8, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 5.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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "95.26%", + "Testing Exposure": "2.34%", + "API Exposure": "5.59%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Writer", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 3 + }, + { + "Function Name": "Template", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 7 + } + ], + "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, "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": 174, + "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": 26, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 11, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, @@ -644233,15 +644233,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 24, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 34, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 215, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -644258,15 +644258,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 54, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 54, + "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": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -662148,9 +662148,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 2302.71, + "X": 2302.6, "Y": -120.92, - "Z": 5341.92 + "Z": 5341.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -662305,9 +662305,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2477.66, + "X": 2477.56, "Y": 39.5, - "Z": 4576.08 + "Z": 4575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662493,9 +662493,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2524.32, + "X": 2524.22, "Y": 8.99, - "Z": 4701.65 + "Z": 4701.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662701,9 +662701,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3727.54, + "X": 3727.44, "Y": 80.38, - "Z": 4617.69 + "Z": 4617.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662869,9 +662869,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3113.38, + "X": 3113.27, "Y": 53.04, - "Z": 4236.94 + "Z": 4236.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663047,9 +663047,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2760.19, + "X": 2760.08, "Y": 71.72, - "Z": 4321.6 + "Z": 4321.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663245,9 +663245,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2476.73, + "X": 2476.63, "Y": 116.31, - "Z": 4305.25 + "Z": 4305.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663415,9 +663415,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2908.09, + "X": 2907.99, "Y": 173.78, - "Z": 4137.42 + "Z": 4137.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663585,9 +663585,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3656.09, + "X": 3655.99, "Y": -94.58, - "Z": 5337.56 + "Z": 5337.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663755,9 +663755,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3317.12, + "X": 3317.01, "Y": -119.03, - "Z": 5266.89 + "Z": 5266.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663943,9 +663943,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3477.97, + "X": 3477.87, "Y": 27.61, - "Z": 4578.14 + "Z": 4577.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664141,9 +664141,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2625.11, + "X": 2625.01, "Y": -112.01, - "Z": 5372.73 + "Z": 5372.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664319,9 +664319,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2457.25, + "X": 2457.15, "Y": -47.05, - "Z": 5209.7 + "Z": 5209.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664507,9 +664507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3071.1, + "X": 3071.0, "Y": 10.17, - "Z": 4665.85 + "Z": 4665.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664778,9 +664778,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2868.19, + "X": 2868.08, "Y": -104.35, - "Z": 5148.73 + "Z": 5148.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664976,9 +664976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2741.52, + "X": 2741.42, "Y": -36.67, - "Z": 5170.09 + "Z": 5169.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665186,9 +665186,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3232.17, + "X": 3232.06, "Y": -138.4, - "Z": 5542.73 + "Z": 5542.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665374,9 +665374,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3842.0, + "X": 3841.89, "Y": 1.89, - "Z": 4982.82 + "Z": 4982.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665542,9 +665542,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3579.13, + "X": 3579.03, "Y": -30.36, - "Z": 5055.72 + "Z": 5055.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665720,9 +665720,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3284.82, + "X": 3284.72, "Y": 138.55, - "Z": 4331.77 + "Z": 4331.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665898,9 +665898,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2301.94, + "X": 2301.84, "Y": -54.04, - "Z": 4827.2 + "Z": 4827.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -666068,9 +666068,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3576.04, + "X": 3575.94, "Y": 82.86, - "Z": 4175.1 + "Z": 4174.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -666238,9 +666238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2993.44, + "X": 2993.34, "Y": -148.19, - "Z": 5686.97 + "Z": 5686.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698897,9 +698897,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2030.54, + "X": 2030.46, "Y": -180.04, - "Z": 8901.09 + "Z": 8900.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699329,9 +699329,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1748.34, + "X": 1748.25, "Y": -268.88, - "Z": 9604.11 + "Z": 9603.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699689,9 +699689,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1941.22, + "X": 1941.14, "Y": -217.33, - "Z": 9218.05 + "Z": 9217.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700450,9 +700450,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2203.47, + "X": 2203.39, "Y": -132.14, - "Z": 9790.75 + "Z": 9790.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704527,7 +704527,7 @@ } }, "rust/syn": { - "Directory Group Magnitude": 694.6, + "Directory Group Magnitude": 693.6, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -704538,14 +704538,14 @@ "Error & Exception Exposure": "28.92%", "Tech Debt Exposure": "42.52%", "Testing Exposure": "2.09%", - "API Exposure": "3.49%", + "API Exposure": "3.47%", "Concurrency Exposure": "1.86%", "State Flux Exposure": "42.34%", "Commented Logic Exposure": "19.37%", "Specification Exposure": "87.5%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.82%", + "Documentation Exposure": "23.54%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -706211,9 +706211,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6569.06, - "Y": -130.58, - "Z": 7183.87 + "X": 6569.11, + "Y": -130.59, + "Z": 7183.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -706225,7 +706225,7 @@ "Total LOC": 426, "Coding LOC": 316, "Documentation LOC": 64, - "Structural Magnitude": 160.22, + "Structural Magnitude": 159.22, "Control Flow Ratio": "38.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -706238,14 +706238,14 @@ "Error & Exception Exposure": "22.96%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "5.71%", + "API Exposure": "5.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "56.42%", "Commented Logic Exposure": "17.93%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.33%", + "Documentation Exposure": "23.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -706451,7 +706451,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 29, + "Exposed API / Public Exports": 28, "State Mutations / Variable Reassignments": 21, "Commented-out Code (Dead Logic)": 7, "Structured Documentation Blocks": 64, @@ -712363,9 +712363,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2243.89, + "X": 2243.95, "Y": 121.82, - "Z": 6201.3 + "Z": 6201.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712571,9 +712571,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3046.99, + "X": 3047.06, "Y": 123.14, - "Z": 6093.75 + "Z": 6093.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712749,9 +712749,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2718.79, + "X": 2718.85, "Y": 191.82, - "Z": 6506.02 + "Z": 6506.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712949,9 +712949,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2415.57, + "X": 2415.63, "Y": 36.01, - "Z": 5278.37 + "Z": 5278.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713117,9 +713117,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2057.92, + "X": 2057.99, "Y": 98.28, - "Z": 5928.56 + "Z": 5928.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713315,9 +713315,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1982.09, + "X": 1982.15, "Y": 19.18, - "Z": 5476.38 + "Z": 5476.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713503,9 +713503,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2334.81, + "X": 2334.88, "Y": 154.25, - "Z": 6393.85 + "Z": 6394.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713681,9 +713681,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3329.53, + "X": 3329.59, "Y": 94.59, - "Z": 5967.44 + "Z": 5967.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713849,9 +713849,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2092.76, + "X": 2092.82, "Y": 141.48, - "Z": 6509.14 + "Z": 6509.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714047,9 +714047,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3082.74, + "X": 3082.8, "Y": 7.86, - "Z": 5417.48 + "Z": 5417.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714215,9 +714215,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3102.68, + "X": 3102.74, "Y": 126.35, - "Z": 6595.66 + "Z": 6595.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714403,9 +714403,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2809.21, + "X": 2809.27, "Y": 76.52, - "Z": 5465.98 + "Z": 5466.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714601,9 +714601,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2459.34, + "X": 2459.41, "Y": 168.35, - "Z": 6975.03 + "Z": 6975.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714769,9 +714769,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3189.02, + "X": 3189.09, "Y": 116.39, - "Z": 5759.38 + "Z": 5759.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714957,9 +714957,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1748.86, + "X": 1748.92, "Y": 81.45, - "Z": 6044.75 + "Z": 6044.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715135,9 +715135,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2280.26, + "X": 2280.32, "Y": 27.96, - "Z": 5562.2 + "Z": 5562.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715323,9 +715323,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1905.21, + "X": 1905.28, "Y": 66.93, - "Z": 5497.05 + "Z": 5497.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715491,9 +715491,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2752.91, + "X": 2752.97, "Y": 121.84, - "Z": 6402.75 + "Z": 6402.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715689,9 +715689,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2475.59, + "X": 2475.65, "Y": 118.94, - "Z": 6012.15 + "Z": 6012.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715897,9 +715897,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1831.15, + "X": 1831.21, "Y": 147.17, - "Z": 6571.8 + "Z": 6571.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716065,9 +716065,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2543.5, + "X": 2543.57, "Y": 28.87, - "Z": 5658.98 + "Z": 5659.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716295,9 +716295,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1935.43, + "X": 1935.5, "Y": 124.5, - "Z": 6148.7 + "Z": 6148.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716483,9 +716483,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2924.67, + "X": 2924.73, "Y": 95.71, - "Z": 5560.82 + "Z": 5560.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716706,9 +716706,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6411.85, + "X": -6410.18, "Y": -297.08, - "Z": -4506.73 + "Z": -4505.47 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716863,9 +716863,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6039.06, + "X": -6037.39, "Y": -179.18, - "Z": -4041.27 + "Z": -4040.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717041,9 +717041,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6538.12, + "X": -6536.45, "Y": -379.97, - "Z": -4656.51 + "Z": -4655.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717209,9 +717209,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6157.86, + "X": -6156.19, "Y": -292.28, - "Z": -5140.47 + "Z": -5139.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717387,9 +717387,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5918.1, + "X": -5916.43, "Y": -240.29, - "Z": -4441.93 + "Z": -4440.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717590,9 +717590,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6154.3, + "X": -6152.63, "Y": -269.3, - "Z": -4143.64 + "Z": -4142.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717800,9 +717800,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5649.5, + "X": -5647.83, "Y": -264.86, - "Z": -4907.91 + "Z": -4906.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717970,9 +717970,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5536.38, + "X": -5534.71, "Y": -181.38, - "Z": -4825.86 + "Z": -4824.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718148,9 +718148,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5922.37, + "X": -5920.7, "Y": -244.29, - "Z": -5059.12 + "Z": -5057.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718366,9 +718366,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5746.19, + "X": -5744.52, "Y": -138.58, - "Z": -3837.66 + "Z": -3836.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718534,9 +718534,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6445.43, + "X": -6443.76, "Y": -276.61, - "Z": -4192.35 + "Z": -4191.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718702,9 +718702,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5398.2, + "X": -5396.53, "Y": -50.64, - "Z": -4128.1 + "Z": -4126.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718870,9 +718870,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5208.87, + "X": -5207.2, "Y": -112.55, - "Z": -4507.33 + "Z": -4506.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719038,9 +719038,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5622.28, + "X": -5620.61, "Y": -116.13, - "Z": -4283.69 + "Z": -4282.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728077,9 +728077,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3076.47, + "X": 3076.53, "Y": -338.21, - "Z": 7203.35 + "Z": 7203.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728236,9 +728236,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3107.63, + "X": 3107.69, "Y": -406.69, - "Z": 7708.93 + "Z": 7709.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728393,9 +728393,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2078.79, + "X": 2078.85, "Y": -192.07, - "Z": 7798.05 + "Z": 7798.21 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728550,9 +728550,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 2915.89, + "X": 2915.94, "Y": -252.8, - "Z": 7052.51 + "Z": 7052.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728707,9 +728707,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2464.69, + "X": 2464.75, "Y": -272.98, - "Z": 7967.76 + "Z": 7967.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728897,9 +728897,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2134.98, + "X": 2135.03, "Y": -157.85, - "Z": 7525.98 + "Z": 7526.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729245,9 +729245,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2685.67, + "X": 2685.73, "Y": -180.49, - "Z": 7027.05 + "Z": 7027.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729637,9 +729637,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2835.04, + "X": 2835.09, "Y": -329.2, - "Z": 7888.37 + "Z": 7888.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730006,9 +730006,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2366.37, + "X": 2366.42, "Y": -216.96, - "Z": 7620.98 + "Z": 7621.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730499,9 +730499,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2570.56, + "X": 2570.61, "Y": -230.5, - "Z": 7586.47 + "Z": 7586.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732270,9 +732270,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2365.29, + "X": 2365.34, "Y": -153.12, - "Z": 6839.06 + "Z": 6839.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -738860,7 +738860,7 @@ } }, "dockerfile/moby/builder/remotecontext/internal/tarsum": { - "Directory Group Magnitude": 508.82, + "Directory Group Magnitude": 506.82, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -738870,7 +738870,7 @@ "Error & Exception Exposure": "70.14%", "Tech Debt Exposure": "48.46%", "Testing Exposure": "2.44%", - "API Exposure": "4.09%", + "API Exposure": "4.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "79.84%", "Commented Logic Exposure": "1.57%", @@ -738895,8 +738895,8 @@ }, "2. Topological Coordinates": { "X": -6267.76, - "Y": -220.38, - "Z": 7543.35 + "Y": -220.37, + "Z": 7543.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739062,9 +739062,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6514.18, - "Y": -198.77, - "Z": 6716.81 + "X": -6514.13, + "Y": -198.78, + "Z": 6716.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739364,9 +739364,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6552.37, + "X": -6552.31, "Y": -210.0, - "Z": 7450.68 + "Z": 7450.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739378,7 +739378,7 @@ "Total LOC": 299, "Coding LOC": 224, "Documentation LOC": 39, - "Structural Magnitude": 246.18, + "Structural Magnitude": 244.18, "Control Flow Ratio": "45.3%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -739391,7 +739391,7 @@ "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", - "API Exposure": "2.18%", + "API Exposure": "1.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", @@ -739544,7 +739544,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 141, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 15, @@ -739667,9 +739667,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6764.9, - "Y": -122.11, - "Z": 7372.17 + "X": -6764.77, + "Y": -122.12, + "Z": 7372.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739925,9 +739925,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6982.23, - "Y": -77.95, - "Z": 7075.68 + "X": -6982.07, + "Y": -77.96, + "Z": 7075.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -836673,9 +836673,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4182.42, + "X": 4182.48, "Y": 97.47, - "Z": 8637.3 + "Z": 8637.42 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -836830,9 +836830,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4385.16, + "X": 4385.23, "Y": 141.84, - "Z": 8430.33 + "Z": 8430.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842442,9 +842442,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4381.15, + "X": 4380.94, "Y": 132.99, - "Z": 6064.76 + "Z": 6064.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -842599,9 +842599,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 4512.07, + "X": 4511.86, "Y": 114.61, - "Z": 7367.64 + "Z": 7367.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842756,9 +842756,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 5052.34, + "X": 5052.13, "Y": 58.4, - "Z": 6350.62 + "Z": 6350.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842954,9 +842954,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4668.16, + "X": 4667.95, "Y": 155.83, - "Z": 6273.74 + "Z": 6273.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843122,9 +843122,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4451.16, + "X": 4450.95, "Y": 157.76, - "Z": 7016.56 + "Z": 7016.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843410,9 +843410,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4689.57, + "X": 4689.36, "Y": 149.53, - "Z": 6649.25 + "Z": 6648.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843768,9 +843768,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 4151.42, + "X": 4151.21, "Y": 131.5, - "Z": 6614.05 + "Z": 6613.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843925,9 +843925,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 4890.18, + "X": 4889.97, "Y": 46.08, - "Z": 6862.46 + "Z": 6862.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851106,9 +851106,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3805.72, + "X": 3805.77, "Y": 220.88, - "Z": 7729.86 + "Z": 7729.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851296,9 +851296,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3487.04, + "X": 3487.1, "Y": 80.94, - "Z": 8011.76 + "Z": 8011.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851643,9 +851643,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3731.22, + "X": 3731.28, "Y": 88.82, - "Z": 7928.43 + "Z": 7928.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852305,9 +852305,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3322.35, + "X": 3322.41, "Y": 55.02, - "Z": 7971.46 + "Z": 7971.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852517,9 +852517,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3515.7, + "X": 3515.75, "Y": 189.49, - "Z": 7486.56 + "Z": 7486.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852687,9 +852687,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4033.47, + "X": 4033.52, "Y": 96.85, - "Z": 8182.74 + "Z": 8182.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852898,9 +852898,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3571.84, + "X": 3571.9, "Y": 43.58, - "Z": 8446.15 + "Z": 8446.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853099,9 +853099,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4113.62, + "X": 4113.68, "Y": 249.89, - "Z": 7770.87 + "Z": 7770.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -862226,7 +862226,7 @@ } }, "typescript/fp-ts": { - "Directory Group Magnitude": 181.4, + "Directory Group Magnitude": 179.5, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "80.0%", @@ -862237,14 +862237,14 @@ "Error & Exception Exposure": "46.62%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "48.46%", - "API Exposure": "10.5%", + "API Exposure": "10.42%", "Concurrency Exposure": "4.28%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "80.0%", "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.34%", + "Documentation Exposure": "41.37%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -862261,9 +862261,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4872.22, + "X": 4871.98, "Y": 181.56, - "Z": 6054.92 + "Z": 6054.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -862420,8 +862420,8 @@ }, "2. Topological Coordinates": { "X": 5115.29, - "Y": 269.08, - "Z": 6369.13 + "Y": 269.02, + "Z": 6368.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -862433,7 +862433,7 @@ "Total LOC": 1854, "Coding LOC": 608, "Documentation LOC": 1110, - "Structural Magnitude": 42.62, + "Structural Magnitude": 41.22, "Control Flow Ratio": "11.6%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -862446,14 +862446,14 @@ "Error & Exception Exposure": "45.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "12.86%", + "API Exposure": "12.55%", "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": "19.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -863089,7 +863089,7 @@ "Type/Safety Bypasses": 11, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 130, + "Exposed API / Public Exports": 116, "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 119, @@ -863237,9 +863237,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5606.57, + "X": 5606.34, "Y": 227.14, - "Z": 6510.18 + "Z": 6509.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -863395,9 +863395,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5352.27, - "Y": 62.65, - "Z": 5943.64 + "X": 5352.03, + "Y": 62.68, + "Z": 5943.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -863409,7 +863409,7 @@ "Total LOC": 1882, "Coding LOC": 662, "Documentation LOC": 1053, - "Structural Magnitude": 35.14, + "Structural Magnitude": 34.64, "Control Flow Ratio": "2.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -863422,14 +863422,14 @@ "Error & Exception Exposure": "41.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "13.34%", + "API Exposure": "13.26%", "Concurrency Exposure": "21.39%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.04%", + "Documentation Exposure": "42.76%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -863845,7 +863845,7 @@ "Type/Safety Bypasses": 16, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 157, + "Exposed API / Public Exports": 152, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 152, @@ -863995,9 +863995,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5348.18, + "X": 5347.95, "Y": 177.34, - "Z": 6051.11 + "Z": 6050.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867722,9 +867722,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3768.25, + "X": 3768.32, "Y": 16.76, - "Z": 6700.26 + "Z": 6700.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867879,9 +867879,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3480.56, + "X": 3480.63, "Y": 49.47, - "Z": 6951.69 + "Z": 6951.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868036,9 +868036,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3764.35, + "X": 3764.42, "Y": -76.57, - "Z": 6481.81 + "Z": 6481.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868193,9 +868193,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4005.48, + "X": 4005.55, "Y": 6.25, - "Z": 7025.52 + "Z": 7025.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868350,9 +868350,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3277.39, + "X": 3277.46, "Y": 10.01, - "Z": 6636.47 + "Z": 6636.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868507,9 +868507,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4103.18, + "X": 4103.25, "Y": 1.61, - "Z": 6690.81 + "Z": 6690.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868664,9 +868664,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3614.5, + "X": 3614.57, "Y": 51.98, - "Z": 7191.58 + "Z": 7191.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868821,9 +868821,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3446.46, + "X": 3446.53, "Y": -98.14, - "Z": 6174.2 + "Z": 6174.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868978,9 +868978,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4220.2, + "X": 4220.27, "Y": 55.71, - "Z": 6995.55 + "Z": 6995.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869135,9 +869135,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3168.11, + "X": 3168.18, "Y": 24.54, - "Z": 6910.67 + "Z": 6910.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869292,9 +869292,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3989.68, + "X": 3989.75, "Y": -131.27, - "Z": 6257.02 + "Z": 6257.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869449,9 +869449,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3933.39, + "X": 3933.46, "Y": 70.76, - "Z": 7339.99 + "Z": 7340.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869606,9 +869606,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3129.4, + "X": 3129.47, "Y": -31.6, - "Z": 6325.78 + "Z": 6325.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869763,9 +869763,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4385.23, + "X": 4385.3, "Y": 3.17, - "Z": 6464.96 + "Z": 6465.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870865,9 +870865,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6217.85, + "X": -6213.7, "Y": 109.85, - "Z": -8045.17 + "Z": -8039.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -871022,9 +871022,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5466.89, + "X": -5462.74, "Y": 123.4, - "Z": -7713.75 + "Z": -7708.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871179,9 +871179,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5709.19, + "X": -5705.05, "Y": 91.46, - "Z": -7750.6 + "Z": -7744.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871367,9 +871367,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -6007.59, + "X": -6003.44, "Y": 89.17, - "Z": -7534.38 + "Z": -7528.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871524,9 +871524,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5675.11, + "X": -5670.96, "Y": 93.62, - "Z": -8166.9 + "Z": -8161.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877530,9 +877530,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4606.09, + "X": -4603.68, "Y": -77.64, - "Z": -8469.78 + "Z": -8464.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877828,9 +877828,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4320.04, + "X": -4317.64, "Y": -42.95, - "Z": -9146.88 + "Z": -9142.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877996,9 +877996,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4847.12, + "X": -4844.71, "Y": -172.45, - "Z": -9025.5 + "Z": -9020.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878164,9 +878164,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4109.19, + "X": -4106.78, "Y": 23.44, - "Z": -8519.41 + "Z": -8514.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878342,9 +878342,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4377.72, + "X": -4375.31, "Y": -92.58, - "Z": -8811.45 + "Z": -8806.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889222,9 +889222,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7572.69, + "X": -7571.18, "Y": -160.84, - "Z": -5505.48 + "Z": -5504.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889379,9 +889379,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7349.88, + "X": -7348.37, "Y": -103.73, - "Z": -6239.03 + "Z": -6237.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889536,9 +889536,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7370.99, + "X": -7369.48, "Y": -123.93, - "Z": -5972.62 + "Z": -5971.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889718,9 +889718,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2735.31, + "X": 2735.27, "Y": 13.48, - "Z": 9280.45 + "Z": 9280.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889884,9 +889884,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2945.0, + "X": 2944.96, "Y": -7.95, - "Z": 9276.94 + "Z": 9276.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892152,9 +892152,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6648.89, + "X": -6643.0, "Y": -147.44, - "Z": -7315.87 + "Z": -7309.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892309,9 +892309,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6921.96, + "X": -6916.07, "Y": -198.73, - "Z": -7385.41 + "Z": -7378.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892466,9 +892466,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6680.73, + "X": -6674.84, "Y": -172.08, - "Z": -7751.2 + "Z": -7744.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896477,9 +896477,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3438.34, + "X": 3438.38, "Y": 10.06, - "Z": 8594.68 + "Z": 8594.79 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -896634,9 +896634,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3284.0, + "X": 3284.04, "Y": -22.31, - "Z": 9016.83 + "Z": 9016.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896795,9 +896795,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3458.12, + "X": 3458.16, "Y": 78.84, - "Z": 8301.92 + "Z": 8302.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896954,9 +896954,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3701.06, + "X": 3701.1, "Y": 46.7, - "Z": 8968.74 + "Z": 8968.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897114,9 +897114,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3024.83, + "X": 3024.87, "Y": 6.34, - "Z": 8592.07 + "Z": 8592.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899052,9 +899052,9 @@ "Identity Proof": "Single Indicator (Ext: .mlir)" }, "2. Topological Coordinates": { - "X": -6560.51, + "X": -6560.34, "Y": -136.67, - "Z": 8021.21 + "Z": 8021.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899796,9 +899796,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7243.87, + "X": -7242.64, "Y": 164.39, - "Z": -6711.63 + "Z": -6710.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901015,9 +901015,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6375.35, + "X": -6371.25, "Y": 155.1, - "Z": -8020.1 + "Z": -8014.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901196,9 +901196,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": 7765.65, + "X": 7765.3, "Y": 95.21, - "Z": -5475.82 + "Z": -5475.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901378,9 +901378,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5412.0, + "X": 5411.79, "Y": -204.31, - "Z": 6742.55 + "Z": 6742.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -901535,9 +901535,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5250.47, + "X": 5250.25, "Y": -169.51, - "Z": 7398.86 + "Z": 7398.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901713,9 +901713,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5411.06, + "X": 5410.84, "Y": -152.64, - "Z": 7051.42 + "Z": 7051.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901935,9 +901935,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 5171.5, + "X": 5171.33, "Y": -44.32, - "Z": 7823.61 + "Z": 7823.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902116,9 +902116,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": -7879.33, + "X": -7879.23, "Y": -82.68, - "Z": 4748.71 + "Z": 4748.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902298,9 +902298,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6640.28, + "X": -6639.03, "Y": 98.47, - "Z": -6407.8 + "Z": -6406.57 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902455,9 +902455,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6242.09, + "X": -6240.84, "Y": 101.11, - "Z": -6700.62 + "Z": -6699.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902623,9 +902623,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -7031.78, + "X": -7030.53, "Y": 78.48, - "Z": -6398.81 + "Z": -6397.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902780,9 +902780,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6788.29, + "X": -6787.04, "Y": 122.85, - "Z": -6132.38 + "Z": -6131.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902937,9 +902937,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6386.74, + "X": -6385.49, "Y": 68.89, - "Z": -6163.71 + "Z": -6162.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903094,9 +903094,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6612.3, + "X": -6611.05, "Y": 61.87, - "Z": -6727.32 + "Z": -6726.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903276,9 +903276,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 12050.23, + "X": 12048.84, "Y": 146.31, - "Z": 1849.43 + "Z": 1849.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -903433,9 +903433,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 11838.19, + "X": 11836.8, "Y": 104.96, - "Z": 1874.63 + "Z": 1874.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904628,9 +904628,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5019.35, + "X": -5016.93, "Y": 12.49, - "Z": -9126.56 + "Z": -9122.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906406,9 +906406,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3993.08, + "X": 3993.12, "Y": 161.35, - "Z": 9109.88 + "Z": 9109.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -907133,9 +907133,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2508.87, + "X": 2508.78, "Y": -179.88, - "Z": 9666.24 + "Z": 9665.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908064,9 +908064,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5411.39, + "X": -5406.23, "Y": -155.19, - "Z": -9040.39 + "Z": -9032.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908232,9 +908232,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5621.14, + "X": -5615.98, "Y": -246.07, - "Z": -8431.94 + "Z": -8423.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908389,9 +908389,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5407.47, + "X": -5402.32, "Y": -270.45, - "Z": -8569.91 + "Z": -8561.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910832,9 +910832,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 4555.46, + "X": 7529.77, "Y": -267.01, - "Z": 7519.05 + "Z": -5095.58 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910989,9 +910989,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4791.08, + "X": 7765.39, "Y": -224.32, - "Z": 7828.96 + "Z": -4785.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911148,9 +911148,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4663.0, + "X": 7637.31, "Y": -246.16, - "Z": 7419.25 + "Z": -5195.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911307,9 +911307,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4365.76, + "X": 7340.07, "Y": -251.61, - "Z": 7836.29 + "Z": -4778.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911535,9 +911535,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4192.11, + "X": 7166.42, "Y": -264.83, - "Z": 7517.8 + "Z": -5096.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911694,9 +911694,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4992.25, + "X": 7966.56, "Y": -156.21, - "Z": 7356.95 + "Z": -5257.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -913980,9 +913980,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 12114.26, + "X": 12113.32, "Y": -208.41, - "Z": 2648.11 + "Z": 2647.91 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915790,9 +915790,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7493.82, + "X": -7492.17, "Y": -57.56, - "Z": -5373.09 + "Z": -5371.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916333,9 +916333,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7154.51, + "X": -7154.37, "Y": 130.81, - "Z": 7696.03 + "Z": 7695.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916514,9 +916514,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6937.11, + "X": -6935.89, "Y": 266.93, - "Z": -7013.4 + "Z": -7012.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916876,9 +916876,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5627.38, + "X": 5627.15, "Y": 209.11, - "Z": 6872.27 + "Z": 6871.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917238,9 +917238,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5940.1, + "X": -5936.12, "Y": -69.95, - "Z": -8477.49 + "Z": -8471.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917419,9 +917419,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 8228.34, + "X": 8228.05, "Y": 22.26, - "Z": -5145.99 + "Z": -5145.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917600,9 +917600,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4765.83, + "X": 4765.67, "Y": 260.38, - "Z": 8322.92 + "Z": 8322.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917781,9 +917781,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -8232.79, + "X": -8232.7, "Y": 269.29, - "Z": 4379.51 + "Z": 4379.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917962,9 +917962,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4476.08, + "X": -4473.8, "Y": 175.43, - "Z": -9445.17 + "Z": -9440.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918324,9 +918324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3501.96, + "X": 3502.0, "Y": -26.04, - "Z": 9481.66 + "Z": 9481.77 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919048,9 +919048,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1896.68, + "X": 1896.6, "Y": 215.25, - "Z": 9999.68 + "Z": 9999.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922851,9 +922851,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7628.16, + "X": -7626.69, "Y": -9.01, - "Z": -6239.4 + "Z": -6238.19 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923394,9 +923394,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6856.74, + "X": -6851.07, "Y": 220.39, - "Z": -7799.45 + "Z": -7792.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -927132,9 +927132,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7532.14, + "X": 4628.99, "Y": -168.29, - "Z": 3786.12 + "Z": 7211.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927289,9 +927289,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7298.91, + "X": 4862.22, "Y": -146.06, - "Z": 4354.71 + "Z": 7780.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927467,9 +927467,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7601.32, + "X": 4559.82, "Y": -164.4, - "Z": 4302.63 + "Z": 7728.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927624,9 +927624,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7966.05, + "X": 4195.08, "Y": -174.69, - "Z": 4061.59 + "Z": 7487.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927781,9 +927781,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7798.79, + "X": 4362.34, "Y": -198.47, - "Z": 4239.49 + "Z": 7665.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927938,9 +927938,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7209.78, + "X": 4951.35, "Y": -163.76, - "Z": 4042.51 + "Z": 7468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928797,9 +928797,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 5608.77, + "X": 5608.56, "Y": -64.84, - "Z": 7781.39 + "Z": 7781.11 }, "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 0326d88cb..0c66d170a 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-09-04T17:03:08.777828+00:00", - "Total Scan Duration": "44.94 seconds" + "Analysis ISO Timestamp": "2026-09-05T00:46:24.417287+00:00", + "Total Scan Duration": "52.22 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -239,7 +239,7 @@ "avg_cognitive_load": 22.578, "avg_safety_score": 45.662, "avg_tech_debt": 28.878, - "avg_documentation": 9.677 + "avg_documentation": 9.553 }, "composition": { "markdown": { @@ -285,7 +285,7 @@ "c": { "files": 40, "loc": 79409, - "impact": 112901.48000000001 + "impact": 112806.48000000001 }, "plaintext": { "files": 72, @@ -320,7 +320,7 @@ "python": { "files": 272, "loc": 71847, - "impact": 41719.98 + "impact": 41570.98 }, "powershell": { "files": 110, @@ -350,7 +350,7 @@ "go": { "files": 46, "loc": 19521, - "impact": 23362.850000000006 + "impact": 23328.850000000006 }, "dockerfile": { "files": 5, @@ -360,7 +360,7 @@ "embedded_python": { "files": 7, "loc": 2020, - "impact": 1773.3000000000002 + "impact": 1764.3000000000002 }, "shell": { "files": 213, @@ -370,7 +370,7 @@ "fortran": { "files": 6, "loc": 18871, - "impact": 49991.92 + "impact": 49990.92 }, "groovy": { "files": 188, @@ -400,12 +400,12 @@ "javascript": { "files": 18, "loc": 23313, - "impact": 18274.86 + "impact": 18218.86 }, "typescript": { "files": 24, "loc": 36020, - "impact": 4337.720000000001 + "impact": 4335.020000000001 }, "jcl": { "files": 185, @@ -425,7 +425,7 @@ "lua": { "files": 109, "loc": 18112, - "impact": 28510.660000000003 + "impact": 28471.660000000003 }, "matlab": { "files": 6, @@ -470,7 +470,7 @@ "rust": { "files": 43, "loc": 25638, - "impact": 14723.86 + "impact": 14722.86 }, "scala": { "files": 7, @@ -520,7 +520,7 @@ "zig": { "files": 32, "loc": 62284, - "impact": 38275.98000000001 + "impact": 37921.98000000001 } }, "ecosystem_fingerprint": { @@ -810,20 +810,20 @@ }, "cpp/NVDA": { "file_count": 12, - "total_mass": 7618.44, + "total_mass": 7599.44, "avg_exposures": { "cognitive_load": 32.3, "safety_score": 45.9, "tech_debt": 32.23, "verification": 40.42, - "api_exposure": 2.51, + "api_exposure": 2.45, "concurrency": 3.35, "state_flux": 55.39, "dead_code": 0.81, "spec_match": 66.67, "stability": 33.33, "churn": 0.0, - "documentation": 11.24, + "documentation": 10.98, "secrets_risk": 0.0 } }, @@ -848,7 +848,7 @@ }, "cpp/godot": { "file_count": 16, - "total_mass": 36981.52, + "total_mass": 36973.52, "avg_exposures": { "cognitive_load": 59.35, "safety_score": 76.73, @@ -1247,20 +1247,20 @@ }, "lua/pandoc": { "file_count": 26, - "total_mass": 1344.84, + "total_mass": 1308.84, "avg_exposures": { "cognitive_load": 25.06, "safety_score": 50.07, "tech_debt": 27.87, "verification": 5.19, - "api_exposure": 1.78, + "api_exposure": 1.65, "concurrency": 0.0, "state_flux": 72.81, "dead_code": 1.12, "spec_match": 50.0, "stability": 46.15, "churn": 0.0, - "documentation": 10.26, + "documentation": 9.33, "secrets_risk": 0.0 } }, @@ -2349,7 +2349,7 @@ }, "typescript/assemblyscript": { "file_count": 5, - "total_mass": 1974.82, + "total_mass": 1974.62, "avg_exposures": { "cognitive_load": 28.3, "safety_score": 51.83, @@ -2362,7 +2362,7 @@ "spec_match": 60.0, "stability": 40.0, "churn": 0.0, - "documentation": 23.06, + "documentation": 22.97, "secrets_risk": 0.0 } }, @@ -2672,7 +2672,7 @@ }, "c/cpython": { "file_count": 8, - "total_mass": 36203.74, + "total_mass": 36197.74, "avg_exposures": { "cognitive_load": 70.42, "safety_score": 92.1, @@ -2710,39 +2710,39 @@ }, "c/doom": { "file_count": 13, - "total_mass": 3474.0, + "total_mass": 3453.0, "avg_exposures": { "cognitive_load": 32.13, "safety_score": 60.76, "tech_debt": 14.87, "verification": 31.86, - "api_exposure": 10.19, + "api_exposure": 10.04, "concurrency": 0.0, "state_flux": 63.06, "dead_code": 8.0, "spec_match": 76.92, "stability": 42.31, "churn": 0.0, - "documentation": 70.21, + "documentation": 69.97, "secrets_risk": 0.0 } }, "c/micropython": { "file_count": 12, - "total_mass": 11112.24, + "total_mass": 11103.24, "avg_exposures": { "cognitive_load": 45.51, "safety_score": 55.78, "tech_debt": 20.81, "verification": 34.68, - "api_exposure": 11.86, + "api_exposure": 11.83, "concurrency": 0.0, "state_flux": 51.24, "dead_code": 4.65, "spec_match": 91.67, "stability": 50.0, "churn": 0.0, - "documentation": 87.75, + "documentation": 87.68, "secrets_risk": 0.0 } }, @@ -2786,39 +2786,39 @@ }, "python/numpy": { "file_count": 18, - "total_mass": 9297.46, + "total_mass": 9286.46, "avg_exposures": { "cognitive_load": 15.55, "safety_score": 47.09, "tech_debt": 19.46, "verification": 40.93, - "api_exposure": 3.09, + "api_exposure": 3.05, "concurrency": 0.0, "state_flux": 42.35, "dead_code": 5.45, "spec_match": 83.33, "stability": 44.44, "churn": 0.0, - "documentation": 18.13, + "documentation": 17.38, "secrets_risk": 0.0 } }, "scheme/racket": { "file_count": 7, - "total_mass": 24879.42, + "total_mass": 24828.42, "avg_exposures": { "cognitive_load": 36.78, "safety_score": 60.05, "tech_debt": 12.71, "verification": 68.57, - "api_exposure": 5.02, + "api_exposure": 4.98, "concurrency": 1.95, "state_flux": 49.56, "dead_code": 2.82, "spec_match": 85.71, "stability": 42.86, "churn": 0.0, - "documentation": 35.44, + "documentation": 35.42, "secrets_risk": 0.0 } }, @@ -2900,39 +2900,39 @@ }, "fortran/wrf": { "file_count": 15, - "total_mass": 60218.62, + "total_mass": 60217.62, "avg_exposures": { "cognitive_load": 46.87, "safety_score": 86.69, "tech_debt": 4.31, "verification": 59.2, - "api_exposure": 5.41, + "api_exposure": 5.4, "concurrency": 3.06, "state_flux": 65.57, "dead_code": 9.26, "spec_match": 60.0, "stability": 46.67, "churn": 0.0, - "documentation": 24.41, + "documentation": 24.3, "secrets_risk": 0.0 } }, "go/core": { "file_count": 8, - "total_mass": 13575.02, + "total_mass": 13552.02, "avg_exposures": { "cognitive_load": 33.71, "safety_score": 71.96, "tech_debt": 24.18, "verification": 60.29, - "api_exposure": 1.96, + "api_exposure": 1.9, "concurrency": 5.27, "state_flux": 75.0, "dead_code": 11.87, "spec_match": 87.5, "stability": 43.75, "churn": 0.0, - "documentation": 22.88, + "documentation": 22.03, "secrets_risk": 0.0 } }, @@ -3508,20 +3508,20 @@ }, "rust/syn": { "file_count": 8, - "total_mass": 694.6, + "total_mass": 693.6, "avg_exposures": { "cognitive_load": 17.61, "safety_score": 28.92, "tech_debt": 42.52, "verification": 2.09, - "api_exposure": 3.49, + "api_exposure": 3.47, "concurrency": 1.86, "state_flux": 42.34, "dead_code": 19.37, "spec_match": 87.5, "stability": 43.75, "churn": 0.0, - "documentation": 23.82, + "documentation": 23.54, "secrets_risk": 0.0 } }, @@ -3717,20 +3717,20 @@ }, "typescript/fp-ts": { "file_count": 5, - "total_mass": 181.4, + "total_mass": 179.5, "avg_exposures": { "cognitive_load": 2.91, "safety_score": 46.62, "tech_debt": 0.0, "verification": 48.46, - "api_exposure": 10.5, + "api_exposure": 10.42, "concurrency": 4.28, "state_flux": 0.0, "dead_code": 0.0, "spec_match": 80.0, "stability": 40.0, "churn": 0.0, - "documentation": 44.34, + "documentation": 41.37, "secrets_risk": 0.0 } }, @@ -3755,20 +3755,20 @@ }, "typescript/vscode": { "file_count": 11, - "total_mass": 1472.92, + "total_mass": 1472.32, "avg_exposures": { "cognitive_load": 37.29, "safety_score": 62.42, "tech_debt": 46.95, "verification": 58.39, - "api_exposure": 4.25, + "api_exposure": 4.21, "concurrency": 39.38, "state_flux": 47.13, "dead_code": 1.55, "spec_match": 72.73, "stability": 40.91, "churn": 0.0, - "documentation": 24.23, + "documentation": 23.42, "secrets_risk": 0.0 } }, @@ -4097,20 +4097,20 @@ }, "embedded_python/meow_turtle": { "file_count": 14, - "total_mass": 2283.92, + "total_mass": 2265.92, "avg_exposures": { "cognitive_load": 21.68, "safety_score": 69.44, "tech_debt": 26.75, "verification": 30.26, - "api_exposure": 5.33, + "api_exposure": 4.79, "concurrency": 10.84, "state_flux": 79.28, "dead_code": 0.0, "spec_match": 7.14, "stability": 50.0, "churn": 0.0, - "documentation": 21.06, + "documentation": 16.61, "secrets_risk": 0.0 } }, @@ -4135,51 +4135,51 @@ }, "python/cython": { "file_count": 4, - "total_mass": 9188.88, + "total_mass": 9177.88, "avg_exposures": { "cognitive_load": 20.77, "safety_score": 61.26, "tech_debt": 84.4, "verification": 41.22, - "api_exposure": 3.61, + "api_exposure": 3.59, "concurrency": 3.18, "state_flux": 47.68, "dead_code": 3.19, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 29.68, + "documentation": 29.39, "secrets_risk": 0.0 } }, "python/fastapi/fastapi": { "file_count": 23, - "total_mass": 3317.3, + "total_mass": 3292.3, "avg_exposures": { "cognitive_load": 6.12, "safety_score": 39.91, "tech_debt": 6.79, "verification": 15.76, - "api_exposure": 2.75, + "api_exposure": 2.42, "concurrency": 15.17, "state_flux": 15.13, "dead_code": 0.21, "spec_match": 60.87, "stability": 50.0, "churn": 0.0, - "documentation": 18.22, + "documentation": 14.88, "secrets_risk": 0.0 } }, "python/fastapi/tests": { "file_count": 204, - "total_mass": 7729.24, + "total_mass": 7691.24, "avg_exposures": { "cognitive_load": 3.35, "safety_score": 13.2, "tech_debt": 0.0, "verification": 0.0, - "api_exposure": 9.4, + "api_exposure": 9.38, "concurrency": 21.5, "state_flux": 0.0, "dead_code": 0.31, @@ -4192,20 +4192,20 @@ }, "python/twisted": { "file_count": 4, - "total_mass": 3319.48, + "total_mass": 3283.48, "avg_exposures": { "cognitive_load": 23.38, "safety_score": 69.47, "tech_debt": 22.93, "verification": 80.0, - "api_exposure": 2.97, + "api_exposure": 2.69, "concurrency": 3.16, "state_flux": 84.37, "dead_code": 4.05, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 19.99, + "documentation": 18.92, "secrets_risk": 6.14 } }, @@ -4249,20 +4249,20 @@ }, "zig/tigerbeetle": { "file_count": 11, - "total_mass": 3975.78, + "total_mass": 3965.78, "avg_exposures": { "cognitive_load": 25.34, "safety_score": 51.88, "tech_debt": 17.79, "verification": 23.6, - "api_exposure": 2.77, + "api_exposure": 2.5, "concurrency": 0.0, "state_flux": 39.3, "dead_code": 1.04, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.15, + "documentation": 21.91, "secrets_risk": 0.0 } }, @@ -4420,20 +4420,20 @@ }, "dockerfile/moby/builder/dockerfile": { "file_count": 18, - "total_mass": 4178.19, + "total_mass": 4177.19, "avg_exposures": { "cognitive_load": 38.43, "safety_score": 76.83, "tech_debt": 64.84, "verification": 36.91, - "api_exposure": 1.03, + "api_exposure": 1.02, "concurrency": 10.58, "state_flux": 88.89, "dead_code": 4.08, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 23.34, + "documentation": 23.28, "secrets_risk": 0.0 } }, @@ -4477,13 +4477,13 @@ }, "dockerfile/moby/builder/remotecontext/internal/tarsum": { "file_count": 5, - "total_mass": 508.82, + "total_mass": 506.82, "avg_exposures": { "cognitive_load": 26.91, "safety_score": 70.14, "tech_debt": 48.46, "verification": 2.44, - "api_exposure": 4.09, + "api_exposure": 4.03, "concurrency": 0.0, "state_flux": 79.84, "dead_code": 1.57, @@ -4515,20 +4515,20 @@ }, "go/kubernetes": { "file_count": 7, - "total_mass": 4362.76, + "total_mass": 4354.76, "avg_exposures": { "cognitive_load": 35.29, "safety_score": 86.68, "tech_debt": 37.33, "verification": 57.83, - "api_exposure": 2.61, + "api_exposure": 2.55, "concurrency": 39.22, "state_flux": 91.45, "dead_code": 4.41, "spec_match": 85.37, "stability": 50.0, "churn": 0.0, - "documentation": 39.43, + "documentation": 37.23, "secrets_risk": 0.0 } }, @@ -4971,20 +4971,20 @@ }, "javascript/react": { "file_count": 5, - "total_mass": 8323.37, + "total_mass": 8267.37, "avg_exposures": { "cognitive_load": 18.19, "safety_score": 32.01, "tech_debt": 42.44, "verification": 49.01, - "api_exposure": 8.08, + "api_exposure": 7.66, "concurrency": 8.62, "state_flux": 17.86, "dead_code": 3.07, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 32.03, + "documentation": 30.41, "secrets_risk": 0.0 } }, @@ -5123,13 +5123,13 @@ }, "lua/cosmopolitan": { "file_count": 43, - "total_mass": 21390.2, + "total_mass": 21389.2, "avg_exposures": { "cognitive_load": 72.05, "safety_score": 64.76, "tech_debt": 19.28, "verification": 34.94, - "api_exposure": 0.66, + "api_exposure": 0.65, "concurrency": 24.67, "state_flux": 91.04, "dead_code": 2.82, @@ -5161,20 +5161,20 @@ }, "lua/freebsd-src": { "file_count": 16, - "total_mass": 3759.8, + "total_mass": 3757.8, "avg_exposures": { "cognitive_load": 40.49, "safety_score": 85.7, "tech_debt": 2.86, "verification": 31.52, - "api_exposure": 2.59, + "api_exposure": 2.57, "concurrency": 0.0, "state_flux": 95.56, "dead_code": 1.67, "spec_match": 56.25, "stability": 50.0, "churn": 0.0, - "documentation": 29.0, + "documentation": 28.72, "secrets_risk": 0.0 } }, @@ -5940,58 +5940,58 @@ }, "zig/zig": { "file_count": 5, - "total_mass": 19657.58, + "total_mass": 19379.58, "avg_exposures": { "cognitive_load": 22.28, "safety_score": 42.57, "tech_debt": 12.38, "verification": 49.0, - "api_exposure": 3.65, + "api_exposure": 3.06, "concurrency": 7.98, "state_flux": 10.58, "dead_code": 5.11, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 34.4, + "documentation": 26.86, "secrets_risk": 0.0 } }, "zig/zls": { "file_count": 6, - "total_mass": 7673.62, + "total_mass": 7613.62, "avg_exposures": { "cognitive_load": 24.58, "safety_score": 22.16, "tech_debt": 10.53, "verification": 28.32, - "api_exposure": 1.81, + "api_exposure": 1.51, "concurrency": 11.37, "state_flux": 9.18, "dead_code": 2.66, "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.54, + "documentation": 22.15, "secrets_risk": 0.0 } }, "zig/zls/mach": { "file_count": 8, - "total_mass": 3155.88, + "total_mass": 3149.88, "avg_exposures": { "cognitive_load": 15.68, "safety_score": 32.92, "tech_debt": 36.48, "verification": 41.24, - "api_exposure": 5.9, + "api_exposure": 5.83, "concurrency": 1.67, "state_flux": 15.97, "dead_code": 3.69, "spec_match": 87.5, "stability": 50.0, "churn": 0.0, - "documentation": 45.03, + "documentation": 44.6, "secrets_risk": 0.0 } } @@ -6230,15 +6230,15 @@ "path": "typescript/playwright/api.ts", "value": 17.7857 }, - { - "name": "main.py", - "path": "python/fastapi/tests/main.py", - "value": 17.6488 - }, { "name": "numeric-dump.cob", "path": "cobol/gnucobol/numeric-dump.cob", "value": 17.5679 + }, + { + "name": "alonesym-obj.asm", + "path": "assembly/nasm_testsuite/alonesym-obj.asm", + "value": 17.104 } ], "lowest": [ @@ -118382,7 +118382,7 @@ } }, "fortran/wrf": { - "Directory Group Magnitude": 60218.62, + "Directory Group Magnitude": 60217.62, "File Count": 15, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "93.3%", @@ -118393,14 +118393,14 @@ "Error & Exception Exposure": "86.69%", "Tech Debt Exposure": "4.31%", "Testing Exposure": "59.2%", - "API Exposure": "5.41%", + "API Exposure": "5.4%", "Concurrency Exposure": "3.06%", "State Flux Exposure": "65.57%", "Commented Logic Exposure": "9.26%", "Specification Exposure": "60.0%", "Instability Exposure": "46.67%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.41%", + "Documentation Exposure": "24.3%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -120372,9 +120372,9 @@ "Identity Proof": "Single Indicator (Ext: .f)" }, "2. Topological Coordinates": { - "X": 10829.59, + "X": 10829.57, "Y": 135.03, - "Z": 2503.47 + "Z": 2503.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -120386,7 +120386,7 @@ "Total LOC": 859, "Coding LOC": 579, "Documentation LOC": 156, - "Structural Magnitude": 629.88, + "Structural Magnitude": 628.88, "Control Flow Ratio": "53.7%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -120399,14 +120399,14 @@ "Error & Exception Exposure": "89.88%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "8.02%", + "API Exposure": "7.81%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "5.24%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "37.73%", + "Documentation Exposure": "36.17%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -120562,7 +120562,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 28, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 298, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 10, @@ -139596,7 +139596,7 @@ } }, "cpp/godot": { - "Directory Group Magnitude": 36981.52, + "Directory Group Magnitude": 36973.52, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "81.2%", @@ -139945,9 +139945,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -989.39, + "X": -989.36, "Y": -58.81, - "Z": 8735.1 + "Z": 8734.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -139959,7 +139959,7 @@ "Total LOC": 1155, "Coding LOC": 902, "Documentation LOC": 82, - "Structural Magnitude": 855.84, + "Structural Magnitude": 847.84, "Control Flow Ratio": "16.3%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -139972,7 +139972,7 @@ "Error & Exception Exposure": "82.0%", "Tech Debt Exposure": "9.29%", "Testing Exposure": "80.0%", - "API Exposure": "15.57%", + "API Exposure": "15.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.69%", "Commented Logic Exposure": "0.0%", @@ -140285,7 +140285,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 419, + "Exposed API / Public Exports": 411, "State Mutations / Variable Reassignments": 331, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 10, @@ -153224,7 +153224,7 @@ } }, "c/cpython": { - "Directory Group Magnitude": 36203.74, + "Directory Group Magnitude": 36197.74, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -155858,7 +155858,7 @@ "2. Topological Coordinates": { "X": -7429.68, "Y": 145.69, - "Z": 533.4 + "Z": 533.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -155870,7 +155870,7 @@ "Total LOC": 3840, "Coding LOC": 3294, "Documentation LOC": 244, - "Structural Magnitude": 6214.98, + "Structural Magnitude": 6208.98, "Control Flow Ratio": "68.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -155883,7 +155883,7 @@ "Error & Exception Exposure": "95.62%", "Tech Debt Exposure": "9.09%", "Testing Exposure": "80.0%", - "API Exposure": "15.95%", + "API Exposure": "15.93%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "4.96%", @@ -157056,7 +157056,7 @@ "Type/Safety Bypasses": 42, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 838, + "Exposed API / Public Exports": 832, "State Mutations / Variable Reassignments": 1830, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 5, @@ -195438,7 +195438,7 @@ } }, "scheme/racket": { - "Directory Group Magnitude": 24879.42, + "Directory Group Magnitude": 24828.42, "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "85.7%", @@ -195449,14 +195449,14 @@ "Error & Exception Exposure": "60.05%", "Tech Debt Exposure": "12.71%", "Testing Exposure": "68.57%", - "API Exposure": "5.02%", + "API Exposure": "4.98%", "Concurrency Exposure": "1.95%", "State Flux Exposure": "49.56%", "Commented Logic Exposure": "2.82%", "Specification Exposure": "85.71%", "Instability Exposure": "42.86%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.44%", + "Documentation Exposure": "35.42%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -195473,9 +195473,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 10757.09, + "X": 10757.22, "Y": -107.46, - "Z": 3755.01 + "Z": 3754.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -195487,7 +195487,7 @@ "Total LOC": 4146, "Coding LOC": 3169, "Documentation LOC": 366, - "Structural Magnitude": 5279.98, + "Structural Magnitude": 5228.98, "Control Flow Ratio": "79.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -195500,14 +195500,14 @@ "Error & Exception Exposure": "99.72%", "Tech Debt Exposure": "7.92%", "Testing Exposure": "80.0%", - "API Exposure": "14.53%", + "API Exposure": "14.26%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.81%", + "Documentation Exposure": "99.63%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -196653,7 +196653,7 @@ "Type/Safety Bypasses": 128, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 650, + "Exposed API / Public Exports": 599, "State Mutations / Variable Reassignments": 2741, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 4, @@ -219942,7 +219942,7 @@ } }, "lua/cosmopolitan": { - "Directory Group Magnitude": 21390.2, + "Directory Group Magnitude": 21389.2, "File Count": 43, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -219952,7 +219952,7 @@ "Error & Exception Exposure": "64.76%", "Tech Debt Exposure": "19.28%", "Testing Exposure": "34.94%", - "API Exposure": "0.66%", + "API Exposure": "0.65%", "Concurrency Exposure": "24.67%", "State Flux Exposure": "91.04%", "Commented Logic Exposure": "2.82%", @@ -219976,9 +219976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3819.29, - "Y": 78.39, - "Z": 8151.43 + "X": -3819.26, + "Y": 78.4, + "Z": 8151.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -219990,7 +219990,7 @@ "Total LOC": 313, "Coding LOC": 204, "Documentation LOC": 48, - "Structural Magnitude": 264.18, + "Structural Magnitude": 263.18, "Control Flow Ratio": "43.7%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -220003,7 +220003,7 @@ "Error & Exception Exposure": "94.75%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.2%", + "API Exposure": "0.07%", "Concurrency Exposure": "52.4%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.22%", @@ -220176,7 +220176,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 152, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -235100,7 +235100,7 @@ } }, "zig/zig": { - "Directory Group Magnitude": 19657.58, + "Directory Group Magnitude": 19379.58, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -235110,14 +235110,14 @@ "Error & Exception Exposure": "42.57%", "Tech Debt Exposure": "12.38%", "Testing Exposure": "49.0%", - "API Exposure": "3.65%", + "API Exposure": "3.06%", "Concurrency Exposure": "7.98%", "State Flux Exposure": "10.58%", "Commented Logic Exposure": "5.11%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.4%", + "Documentation Exposure": "26.86%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -235134,9 +235134,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11527.4, - "Y": -179.01, - "Z": 1814.73 + "X": 11526.94, + "Y": -178.95, + "Z": 1815.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -235148,7 +235148,7 @@ "Total LOC": 8171, "Coding LOC": 6509, "Documentation LOC": 858, - "Structural Magnitude": 4248.48, + "Structural Magnitude": 4230.48, "Control Flow Ratio": "73.1%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -235161,14 +235161,14 @@ "Error & Exception Exposure": "25.04%", "Tech Debt Exposure": "15.31%", "Testing Exposure": "2.53%", - "API Exposure": "2.19%", + "API Exposure": "1.97%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.95%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.67%", + "Documentation Exposure": "16.12%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -237014,7 +237014,7 @@ "Type/Safety Bypasses": 257, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 176, + "Exposed API / Public Exports": 158, "State Mutations / Variable Reassignments": 392, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 385, @@ -237152,9 +237152,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11428.44, - "Y": -93.04, - "Z": 2208.66 + "X": 11102.47, + "Y": -101.94, + "Z": 2508.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -237166,7 +237166,7 @@ "Total LOC": 13040, "Coding LOC": 10787, "Documentation LOC": 1198, - "Structural Magnitude": 5282.14, + "Structural Magnitude": 5163.14, "Control Flow Ratio": "55.3%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -237179,14 +237179,14 @@ "Error & Exception Exposure": "57.68%", "Tech Debt Exposure": "16.42%", "Testing Exposure": "80.0%", - "API Exposure": "4.38%", + "API Exposure": "3.65%", "Concurrency Exposure": "25.65%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.7%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.5%", + "Documentation Exposure": "27.01%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -241572,7 +241572,7 @@ "Type/Safety Bypasses": 547, "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 621, + "Exposed API / Public Exports": 502, "State Mutations / Variable Reassignments": 439, "Commented-out Code (Dead Logic)": 28, "Structured Documentation Blocks": 965, @@ -241684,9 +241684,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11827.8, - "Y": 22.29, - "Z": 2724.7 + "X": 11826.81, + "Y": 22.08, + "Z": 2723.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -241698,7 +241698,7 @@ "Total LOC": 4357, "Coding LOC": 3675, "Documentation LOC": 275, - "Structural Magnitude": 2672.8, + "Structural Magnitude": 2583.8, "Control Flow Ratio": "54.3%", "Popularity Rank": 6, "Raw Churn Frequency": 0.0, @@ -241711,14 +241711,14 @@ "Error & Exception Exposure": "36.56%", "Tech Debt Exposure": "8.65%", "Testing Exposure": "80.0%", - "API Exposure": "7.57%", + "API Exposure": "6.33%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "81.01%", + "Documentation Exposure": "61.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -243624,7 +243624,7 @@ "Type/Safety Bypasses": 157, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 381, + "Exposed API / Public Exports": 292, "State Mutations / Variable Reassignments": 83, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 187, @@ -243740,9 +243740,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 10948.13, - "Y": -146.11, - "Z": 2185.57 + "X": 10948.49, + "Y": -145.97, + "Z": 2185.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -243754,7 +243754,7 @@ "Total LOC": 4802, "Coding LOC": 3619, "Documentation LOC": 755, - "Structural Magnitude": 2288.58, + "Structural Magnitude": 2236.58, "Control Flow Ratio": "64.5%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -243767,14 +243767,14 @@ "Error & Exception Exposure": "61.09%", "Tech Debt Exposure": "13.14%", "Testing Exposure": "2.49%", - "API Exposure": "3.82%", + "API Exposure": "3.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "5.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.79%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -245070,7 +245070,7 @@ "Type/Safety Bypasses": 149, "High-Risk Execution Commands": 76, "I/O and Network Boundaries": 12, - "Exposed API / Public Exports": 244, + "Exposed API / Public Exports": 192, "State Mutations / Variable Reassignments": 310, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 598, @@ -245196,9 +245196,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 11120.43, - "Y": -87.85, - "Z": 2311.47 + "X": 11445.89, + "Y": -78.94, + "Z": 2011.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -271146,7 +271146,7 @@ } }, "go/core": { - "Directory Group Magnitude": 13575.02, + "Directory Group Magnitude": 13552.02, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -271157,14 +271157,14 @@ "Error & Exception Exposure": "71.96%", "Tech Debt Exposure": "24.18%", "Testing Exposure": "60.29%", - "API Exposure": "1.96%", + "API Exposure": "1.9%", "Concurrency Exposure": "5.27%", "State Flux Exposure": "75.0%", "Commented Logic Exposure": "11.87%", "Specification Exposure": "87.5%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "22.88%", + "Documentation Exposure": "22.03%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -271338,9 +271338,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 8448.56, + "X": 8448.55, "Y": 139.47, - "Z": -665.93 + "Z": -665.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -271573,7 +271573,7 @@ }, "2. Topological Coordinates": { "X": 7440.59, - "Y": 142.79, + "Y": 142.8, "Z": -414.18 }, "3. Architectural Profile": { @@ -272282,7 +272282,7 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7992.46, + "X": 7992.45, "Y": 203.93, "Z": -301.1 }, @@ -272296,7 +272296,7 @@ "Total LOC": 8177, "Coding LOC": 4603, "Documentation LOC": 2802, - "Structural Magnitude": 5078.76, + "Structural Magnitude": 5076.76, "Control Flow Ratio": "81.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -272309,7 +272309,7 @@ "Error & Exception Exposure": "96.8%", "Tech Debt Exposure": "8.77%", "Testing Exposure": "80.0%", - "API Exposure": "0.33%", + "API Exposure": "0.32%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "8.66%", @@ -274782,7 +274782,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 55, + "Exposed API / Public Exports": 53, "State Mutations / Variable Reassignments": 2797, "Commented-out Code (Dead Logic)": 23, "Structured Documentation Blocks": 908, @@ -274908,9 +274908,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7968.27, + "X": 7968.26, "Y": 96.92, - "Z": -690.59 + "Z": -690.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -276705,7 +276705,7 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 8274.5, + "X": 8274.49, "Y": 317.69, "Z": 141.22 }, @@ -277939,9 +277939,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 7666.6, - "Y": 213.84, - "Z": -171.55 + "X": 7666.68, + "Y": 213.82, + "Z": -171.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -277953,7 +277953,7 @@ "Total LOC": 3901, "Coding LOC": 2517, "Documentation LOC": 1053, - "Structural Magnitude": 3251.84, + "Structural Magnitude": 3230.84, "Control Flow Ratio": "69.5%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -277966,14 +277966,14 @@ "Error & Exception Exposure": "96.42%", "Tech Debt Exposure": "9.18%", "Testing Exposure": "80.0%", - "API Exposure": "3.05%", + "API Exposure": "2.61%", "Concurrency Exposure": "12.25%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "11.12%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.58%", + "Documentation Exposure": "25.76%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -279909,7 +279909,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 140, + "Exposed API / Public Exports": 119, "State Mutations / Variable Reassignments": 1481, "Commented-out Code (Dead Logic)": 23, "Structured Documentation Blocks": 442, @@ -314238,7 +314238,7 @@ } }, "c/micropython": { - "Directory Group Magnitude": 11112.24, + "Directory Group Magnitude": 11103.24, "File Count": 12, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -314248,14 +314248,14 @@ "Error & Exception Exposure": "55.78%", "Tech Debt Exposure": "20.81%", "Testing Exposure": "34.68%", - "API Exposure": "11.86%", + "API Exposure": "11.83%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "51.24%", "Commented Logic Exposure": "4.65%", "Specification Exposure": "91.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "87.75%", + "Documentation Exposure": "87.68%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -316922,9 +316922,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": 6798.37, - "Y": -108.65, - "Z": 6110.35 + "X": 6798.32, + "Y": -108.66, + "Z": 6110.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -316936,7 +316936,7 @@ "Total LOC": 1408, "Coding LOC": 981, "Documentation LOC": 258, - "Structural Magnitude": 1449.92, + "Structural Magnitude": 1440.92, "Control Flow Ratio": "70.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -316949,14 +316949,14 @@ "Error & Exception Exposure": "98.57%", "Tech Debt Exposure": "10.5%", "Testing Exposure": "80.0%", - "API Exposure": "12.12%", + "API Exposure": "11.87%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.81%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.96%", + "Documentation Exposure": "97.11%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -317232,7 +317232,7 @@ "Type/Safety Bypasses": 25, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 141, + "Exposed API / Public Exports": 132, "State Mutations / Variable Reassignments": 786, "Commented-out Code (Dead Logic)": 6, "Structured Documentation Blocks": 0, @@ -320986,7 +320986,7 @@ } }, "python/numpy": { - "Directory Group Magnitude": 9297.46, + "Directory Group Magnitude": 9286.46, "File Count": 18, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "88.9%", @@ -320997,14 +320997,14 @@ "Error & Exception Exposure": "47.09%", "Tech Debt Exposure": "19.46%", "Testing Exposure": "40.93%", - "API Exposure": "3.09%", + "API Exposure": "3.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "42.35%", "Commented Logic Exposure": "5.45%", "Specification Exposure": "83.33%", "Instability Exposure": "44.44%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.13%", + "Documentation Exposure": "17.38%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -321021,9 +321021,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4890.07, - "Y": -140.51, - "Z": 1603.64 + "X": -4890.04, + "Y": -140.52, + "Z": 1603.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -321283,7 +321283,7 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5551.71, + "X": -5551.65, "Y": -224.82, "Z": 860.97 }, @@ -321440,9 +321440,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -4057.96, + "X": -4057.95, "Y": -186.54, - "Z": 1340.87 + "Z": 1340.85 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -321597,9 +321597,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5139.17, - "Y": -129.48, - "Z": 1641.44 + "X": -5139.13, + "Y": -129.49, + "Z": 1641.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -321755,9 +321755,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4377.4, - "Y": -158.26, - "Z": 1470.53 + "X": -4377.39, + "Y": -158.27, + "Z": 1470.5 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322729,7 +322729,7 @@ "2. Topological Coordinates": { "X": -4112.1, "Y": -245.15, - "Z": 1213.53 + "Z": 1213.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322931,9 +322931,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4667.39, + "X": -4667.37, "Y": -211.77, - "Z": 930.47 + "Z": 930.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -322945,7 +322945,7 @@ "Total LOC": 8995, "Coding LOC": 2955, "Documentation LOC": 4615, - "Structural Magnitude": 3105.5, + "Structural Magnitude": 3100.5, "Control Flow Ratio": "51.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -322958,7 +322958,7 @@ "Error & Exception Exposure": "47.63%", "Tech Debt Exposure": "10.17%", "Testing Exposure": "80.0%", - "API Exposure": "1.69%", + "API Exposure": "1.65%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "55.63%", "Commented Logic Exposure": "5.12%", @@ -325661,7 +325661,7 @@ "Type/Safety Bypasses": 50, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 188, + "Exposed API / Public Exports": 183, "State Mutations / Variable Reassignments": 194, "Commented-out Code (Dead Logic)": 8, "Structured Documentation Blocks": 205, @@ -325789,9 +325789,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5050.62, - "Y": -160.41, - "Z": 1064.71 + "X": -5050.57, + "Y": -160.42, + "Z": 1064.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326672,7 +326672,7 @@ "2. Topological Coordinates": { "X": -4256.73, "Y": -262.0, - "Z": 508.8 + "Z": 508.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326903,9 +326903,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5280.42, - "Y": -258.35, - "Z": 897.89 + "X": -5280.18, + "Y": -258.34, + "Z": 897.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -326917,7 +326917,7 @@ "Total LOC": 560, "Coding LOC": 408, "Documentation LOC": 71, - "Structural Magnitude": 381.66, + "Structural Magnitude": 375.66, "Control Flow Ratio": "41.0%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -326930,14 +326930,14 @@ "Error & Exception Exposure": "87.09%", "Tech Debt Exposure": "24.01%", "Testing Exposure": "80.0%", - "API Exposure": "6.77%", + "API Exposure": "6.08%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.97%", "Commented Logic Exposure": "5.52%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "49.4%", + "Documentation Exposure": "35.78%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -327403,7 +327403,7 @@ "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 43, + "Exposed API / Public Exports": 37, "State Mutations / Variable Reassignments": 107, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 14, @@ -327522,9 +327522,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -5322.42, + "X": -5322.36, "Y": -123.14, - "Z": 1164.46 + "Z": 1164.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -327715,9 +327715,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4449.73, - "Y": -388.41, - "Z": 360.5 + "X": -4449.72, + "Y": -388.4, + "Z": 360.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -328102,9 +328102,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4819.62, - "Y": -374.34, - "Z": 158.24 + "X": -4819.59, + "Y": -374.33, + "Z": 158.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -328276,9 +328276,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4683.1, + "X": -4683.07, "Y": -340.1, - "Z": 587.49 + "Z": 587.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329219,9 +329219,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -4977.35, + "X": -4977.31, "Y": -332.24, - "Z": 213.93 + "Z": 213.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329554,9 +329554,9 @@ "Identity Proof": "Ecosystem Consensus Lock (76% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4479.6, + "X": -4479.58, "Y": -72.06, - "Z": 1406.24 + "Z": 1406.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329729,9 +329729,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -5373.47, + "X": -5373.42, "Y": -295.89, - "Z": 375.45 + "Z": 375.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -329913,7 +329913,7 @@ } }, "python/cython": { - "Directory Group Magnitude": 9188.88, + "Directory Group Magnitude": 9177.88, "File Count": 4, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -329923,14 +329923,14 @@ "Error & Exception Exposure": "61.26%", "Tech Debt Exposure": "84.4%", "Testing Exposure": "41.22%", - "API Exposure": "3.61%", + "API Exposure": "3.59%", "Concurrency Exposure": "3.18%", "State Flux Exposure": "47.68%", "Commented Logic Exposure": "3.19%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.68%", + "Documentation Exposure": "29.39%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -329948,9 +329948,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6770.65, + "X": -6768.96, "Y": -18.75, - "Z": -4422.76 + "Z": -4421.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -330139,9 +330139,9 @@ "Identity Proof": "Single Indicator (Ext: .pxd)" }, "2. Topological Coordinates": { - "X": -6980.94, + "X": -6979.25, "Y": 2.31, - "Z": -5327.68 + "Z": -5326.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -330458,9 +330458,9 @@ "Identity Proof": "Single Indicator (Ext: .pyx)" }, "2. Topological Coordinates": { - "X": -7322.42, + "X": -7320.74, "Y": 23.75, - "Z": -4632.48 + "Z": -4631.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -331461,9 +331461,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7017.64, + "X": -7015.95, "Y": 32.59, - "Z": -4937.23 + "Z": -4936.06 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -331475,7 +331475,7 @@ "Total LOC": 10867, "Coding LOC": 7698, "Documentation LOC": 1568, - "Structural Magnitude": 8375.76, + "Structural Magnitude": 8364.76, "Control Flow Ratio": "60.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -331488,14 +331488,14 @@ "Error & Exception Exposure": "71.4%", "Tech Debt Exposure": "77.07%", "Testing Exposure": "80.0%", - "API Exposure": "8.74%", + "API Exposure": "8.65%", "Concurrency Exposure": "12.7%", "State Flux Exposure": "97.26%", "Commented Logic Exposure": "7.74%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "71.86%", + "Documentation Exposure": "70.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -336291,7 +336291,7 @@ "Type/Safety Bypasses": 106, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 565, + "Exposed API / Public Exports": 554, "State Mutations / Variable Reassignments": 1150, "Commented-out Code (Dead Logic)": 63, "Structured Documentation Blocks": 46, @@ -346564,7 +346564,7 @@ } }, "javascript/react": { - "Directory Group Magnitude": 8323.37, + "Directory Group Magnitude": 8267.37, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -346574,14 +346574,14 @@ "Error & Exception Exposure": "32.01%", "Tech Debt Exposure": "42.44%", "Testing Exposure": "49.01%", - "API Exposure": "8.08%", + "API Exposure": "7.66%", "Concurrency Exposure": "8.62%", "State Flux Exposure": "17.86%", "Commented Logic Exposure": "3.07%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.03%", + "Documentation Exposure": "30.41%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -346599,8 +346599,8 @@ }, "2. Topological Coordinates": { "X": 3101.32, - "Y": -96.09, - "Z": -9884.15 + "Y": -96.08, + "Z": -9884.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -346612,7 +346612,7 @@ "Total LOC": 4449, "Coding LOC": 3357, "Documentation LOC": 779, - "Structural Magnitude": 1862.24, + "Structural Magnitude": 1859.24, "Control Flow Ratio": "68.4%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -346625,7 +346625,7 @@ "Error & Exception Exposure": "39.74%", "Tech Debt Exposure": "14.83%", "Testing Exposure": "80.0%", - "API Exposure": "5.71%", + "API Exposure": "4.95%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "11.79%", "Commented Logic Exposure": "4.93%", @@ -347358,7 +347358,7 @@ "Type/Safety Bypasses": 13, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 158, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 1, @@ -347512,9 +347512,9 @@ "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2746.96, - "Y": -174.73, - "Z": -9332.93 + "X": 2747.21, + "Y": -174.69, + "Z": -9333.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -347526,7 +347526,7 @@ "Total LOC": 5622, "Coding LOC": 4171, "Documentation LOC": 1028, - "Structural Magnitude": 2494.72, + "Structural Magnitude": 2441.72, "Control Flow Ratio": "70.8%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -347539,14 +347539,14 @@ "Error & Exception Exposure": "40.12%", "Tech Debt Exposure": "16.54%", "Testing Exposure": "80.0%", - "API Exposure": "11.13%", + "API Exposure": "9.81%", "Concurrency Exposure": "12.33%", "State Flux Exposure": "19.97%", "Commented Logic Exposure": "5.36%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.22%", + "Documentation Exposure": "16.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -348792,7 +348792,7 @@ "Type/Safety Bypasses": 51, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 121, + "Exposed API / Public Exports": 68, "State Mutations / Variable Reassignments": 248, "Commented-out Code (Dead Logic)": 8, "Structured Documentation Blocks": 4, @@ -351042,44 +351042,46 @@ } } }, - "python/fastapi/tests": { - "Directory Group Magnitude": 7729.24, - "File Count": 204, + "javascript/threejs": { + "Directory Group Magnitude": 7700.5, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "3.35%", - "Error & Exception Exposure": "13.2%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "9.4%", - "Concurrency Exposure": "21.5%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.31%", - "Specification Exposure": "99.51%", + "Cognitive Load Exposure": "50.61%", + "Error & Exception Exposure": "72.31%", + "Tech Debt Exposure": "54.92%", + "Testing Exposure": "80.0%", + "API Exposure": "1.54%", + "Concurrency Exposure": "32.43%", + "State Flux Exposure": "83.36%", + "Commented Logic Exposure": "3.33%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "12.46%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "python/fastapi/tests/__init__.py": { + "javascript/threejs/BufferGeometry.js": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "python/fastapi/tests/__init__.py", - "Language": "Python", + "Filename": "BufferGeometry.js", + "Path": "javascript/threejs/BufferGeometry.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", + "Parent Entity": "EventDispatcher", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Alert": "TYPOSQUATTING THREAT: 'math/Vector2.js' mimics 'math/Vector3.js'", + "Folder Dominant Lang": "javascript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 3175.53, - "Y": -11.84, - "Z": 2270.55 + "X": 8675.64, + "Y": -105.68, + "Z": -732.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351088,69 +351090,1010 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1, - "Coding LOC": 0, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 1459, + "Coding LOC": 588, + "Documentation LOC": 377, + "Structural Magnitude": 616.46, + "Control Flow Ratio": "55.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.27 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "44.46%", + "Error & Exception Exposure": "96.2%", + "Tech Debt Exposure": "45.97%", + "Testing Exposure": "80.0%", + "API Exposure": "1.9%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "5.03%", + "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": "computeTangents", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 158, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "61.9%", + "Start Line": 822, + "End Line": 979 + }, + { + "Function Name": "computeBoundingSphere", + "Structural Impact": 20.6, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 14, + "Input Parameters": 0, + "Control Flow Ratio": "70.0%", + "Start Line": 703, + "End Line": 813 + }, + { + "Function Name": "toJSON", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "76.5%", + "Start Line": 1212, + "End Line": 1320 + }, + { + "Function Name": "copy", + "Structural Impact": 16.5, + "Lines of Code (LOC)": 104, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 1339, + "End Line": 1442 + }, + { + "Function Name": "computeBoundingBox", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "85.7%", + "Start Line": 628, + "End Line": 696 + }, + { + "Function Name": "toNonIndexed", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "52.9%", + "Start Line": 1105, + "End Line": 1205 + }, + { + "Function Name": "setFromPoints", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 581, + "End Line": 621 + }, + { + "Function Name": "computeVertexNormals", + "Structural Impact": 13.6, + "Lines of Code (LOC)": 91, + "Control Flow Branches": 8, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 987, + "End Line": 1077 + }, + { + "Function Name": "applyMatrix4", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 363, + "End Line": 411 + }, + { + "Function Name": "convertBufferAttribute", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1107, + "End Line": 1139 + }, + { + "Function Name": "setIndex", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 217, + "End Line": 231 + }, + { + "Function Name": "handleTriangle", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 872, + "End Line": 905 + }, + { + "Function Name": "handleVertex", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 940, + "End Line": 960 + }, + { + "Function Name": "normalizeNormals", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1083, + "End Line": 1097 + }, + { + "Function Name": "addGroup", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 322, + "End Line": 332 + }, + { + "Function Name": "translate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 499, + "End Line": 509 + }, + { + "Function Name": "scale", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 521, + "End Line": 531 + }, + { + "Function Name": "setIndirect", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 247 + }, + { + "Function Name": "setAttribute", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 280, + "End Line": 286 + }, + { + "Function Name": "constructor", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 146, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 198 + }, + { + "Function Name": "setDrawRange", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 350, + "End Line": 355 + }, + { + "Function Name": "rotateX", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 447 + }, + { + "Function Name": "rotateY", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 467 + }, + { + "Function Name": "rotateZ", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 477, + "End Line": 487 + }, + { + "Function Name": "lookAt", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 541, + "End Line": 551 + }, + { + "Function Name": "applyQuaternion", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 419, + "End Line": 427 + }, + { + "Function Name": "deleteAttribute", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 294, + "End Line": 300 + }, + { + "Function Name": "getAttribute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 271 + }, + { + "Function Name": "hasAttribute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 308, + "End Line": 312 + }, + { + "Function Name": "center", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 558, + "End Line": 568 + }, + { + "Function Name": "getIndex", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 205, + "End Line": 209 + }, + { + "Function Name": "getIndirect", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 254, + "End Line": 258 + }, + { + "Function Name": "clearGroups", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 337, + "End Line": 341 + }, + { + "Function Name": "clone", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1327, + "End Line": 1331 + }, + { + "Function Name": "dispose", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1450, + "End Line": 1454 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 93, + "Sequential Logic Declarations": 74, + "Function Parameters": 35, + "Function/Method Declarations": 35, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 28, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 387, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 48, + "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": 2, + "Module Dependencies (Imports)": 11, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 1, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 40, + "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": 98, + "Resource Deallocation & Cleanup": 4, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 564, + "Structural Space Indentations": 0, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 2, + "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": 4, + "Core Var Decl": 136, + "Design Camel Case": 46, + "Design Snake Case": 89, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 37, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 13, + "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": 1, + "Low-Level Bitwise / Cryptographic Math": 0, + "Non-Standard / Steganographic Imports": 0, + "Non-Standard Unicode / Homoglyphs": 1, + "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)": 11, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "../math/Box3.js", + "../math/MathUtils.js", + "../math/Matrix3.js", + "../math/Matrix4.js", + "../math/Sphere.js", + "../math/Vector2.js", + "../math/Vector3.js", + "../utils.js", + "./BufferAttribute.js", + "./EventDispatcher.js", + "./Object3D.js" + ] + }, + "javascript/threejs/Editor.js": { + "1. Artifact Identity": { + "Filename": "Editor.js", + "Path": "javascript/threejs/Editor.js", + "Language": "Javascript", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "javascript", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .js)" + }, + "2. Topological Coordinates": { + "X": 7778.63, + "Y": -115.56, + "Z": -1197.58 + }, + "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": 820, + "Coding LOC": 458, + "Documentation LOC": 14, + "Structural Magnitude": 616.06, + "Control Flow Ratio": "54.8%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.016 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "74.37%", + "Error & Exception Exposure": "98.91%", + "Tech Debt Exposure": "71.89%", + "Testing Exposure": "80.0%", + "API Exposure": "2.07%", + "Concurrency Exposure": "72.74%", + "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "12.23%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "addHelper", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 18, + "Input Parameters": 0, + "Control Flow Ratio": "78.3%", + "Start Line": 392, + "End Line": 476 + }, + { + "Function Name": "addObject", + "Structural Impact": 11.4, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 179, + "End Line": 207 + }, + { + "Function Name": "setObjectMaterial", + "Structural Impact": 8.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 540, + "End Line": 552 + }, + { + "Function Name": "fromJSON", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 674, + "End Line": 707 + }, + { + "Function Name": "addMaterial", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 251, + "End Line": 269 + }, + { + "Function Name": "removeMaterial", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 291, + "End Line": 309 + }, + { + "Function Name": "getMaterialById", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 331, + "End Line": 349 + }, + { + "Function Name": "toJSON", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 709, + "End Line": 748 + }, + { + "Function Name": "removeScript", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 510, + "End Line": 524 + }, + { + "Function Name": "getObjectMaterial", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 526, + "End Line": 538 + }, + { + "Function Name": "save", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 787, + "End Line": 799 + }, + { + "Function Name": "removeObject", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 216, + "End Line": 236 + }, + { + "Function Name": "addMaterialToRefCounter", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 271, + "End Line": 289 + }, + { + "Function Name": "removeMaterialFromRefCounter", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 311, + "End Line": 329 + }, + { + "Function Name": "setScene", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 147, + "End Line": 175 + }, + { + "Function Name": "addScript", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 496, + "End Line": 508 + }, + { + "Function Name": "removeHelper", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 478, + "End Line": 492 + }, + { + "Function Name": "selectByUuid", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 589, + "End Line": 603 + }, + { + "Function Name": "clear", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 627, + "End Line": 670 + }, + { + "Function Name": "addCamera", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 366, + "End Line": 376 + }, + { + "Function Name": "removeCamera", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 378, + "End Line": 388 + }, + { + "Function Name": "selectById", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 576, + "End Line": 587 + }, + { + "Function Name": "focus", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 611, + "End Line": 619 + }, + { + "Function Name": "setViewportCamera", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 554, + "End Line": 559 + }, + { + "Function Name": "Editor", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 129, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 15, + "End Line": 143 + }, + { + "Function Name": "updateMatrixWorld", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 415, + "End Line": 433 + }, + { + "Function Name": "nameObject", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 209, + "End Line": 214 + }, + { + "Function Name": "setGeometryName", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 244, + "End Line": 249 + }, + { + "Function Name": "setMaterialName", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 351, + "End Line": 356 + }, + { + "Function Name": "execute", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 756, + "End Line": 760 + }, + { + "Function Name": "saveArrayBuffer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 801, + "End Line": 805 + }, + { + "Function Name": "saveString", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 807, + "End Line": 811 + }, + { + "Function Name": "addGeometry", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 242 + }, + { + "Function Name": "addTexture", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 358, + "End Line": 362 + }, + { + "Function Name": "setViewportShading", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 561, + "End Line": 566 + }, + { + "Function Name": "select", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 570, + "End Line": 574 + }, + { + "Function Name": "focusById", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 621, + "End Line": 625 + }, + { + "Function Name": "objectByUuid", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 750, + "End Line": 754 + }, + { + "Function Name": "formatNumber", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 813, + "End Line": 817 + }, + { + "Function Name": "deselect", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 605, + "End Line": 609 + }, + { + "Function Name": "undo", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 762, + "End Line": 766 + }, + { + "Function Name": "redo", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 768, + "End Line": 772 + } + ], "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, + "Control Flow Branches": 63, + "Sequential Logic Declarations": 52, + "Function Parameters": 46, + "Function/Method Declarations": 42, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 28, "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": 409, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 18, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Closures and Anonymous Functions": 41, + "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)": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 7, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 74, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -351159,19 +352102,19 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 10, + "Resource Deallocation & Cleanup": 7, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 433, "Structural Space Indentations": 0, "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, "Cloud LLM API Integrations": 0, @@ -351182,15 +352125,15 @@ "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": 43, + "Design Camel Case": 4, + "Design Snake Case": 37, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351214,29 +352157,38 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 7, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + "./Config.js", + "./History.js", + "./Loader.js", + "./Selector.js", + "./Storage.js", + "./Strings.js", + "three" + ] }, - "python/fastapi/tests/main.py": { + "javascript/threejs/GLTFLoader.js": { "1. Artifact Identity": { - "Filename": "main.py", - "Path": "python/fastapi/tests/main.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Filename": "GLTFLoader.js", + "Path": "javascript/threejs/GLTFLoader.js", + "Language": "Javascript", + "Architect": "GLTFExporter", + "Indentation Style": "Tabs", + "Parent Entity": "Loader, Interpolant, GLTFCubicSplineInterpolant", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 2540.68, - "Y": -49.92, - "Z": -485.34 + "X": 8292.37, + "Y": -74.07, + "Z": -1119.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351245,472 +352197,1372 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 209, - "Coding LOC": 127, - "Documentation LOC": 0, - "Structural Magnitude": 173.44, - "Control Flow Ratio": "3.5%", + "Total LOC": 4861, + "Coding LOC": 2413, + "Documentation LOC": 613, + "Structural Magnitude": 3082.26, + "Control Flow Ratio": "66.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.035 + "Raw Cognitive Density": 1.529 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "2.7%", - "Error & Exception Exposure": "57.09%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "17.65%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "69.16%", + "Error & Exception Exposure": "84.69%", + "Tech Debt Exposure": "46.95%", + "Testing Exposure": "80.0%", + "API Exposure": "1.63%", + "Concurrency Exposure": "100.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "4.91%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "get_query_optional", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "parse", + "Structural Impact": 77.7, + "Lines of Code (LOC)": 122, + "Control Flow Branches": 31, + "Input Parameters": 4, + "Control Flow Ratio": "86.1%", + "Start Line": 429, + "End Line": 550 + }, + { + "Function Name": "_createAnimationTracks", + "Structural Impact": 71.3, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "89.7%", + "Start Line": 4514, + "End Line": 4616 + }, + { + "Function Name": "getDependency", + "Structural Impact": 67.4, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 35, + "Input Parameters": 2, + "Control Flow Ratio": "79.5%", + "Start Line": 2872, + "End Line": 2972 + }, + { + "Function Name": "loadMaterial", + "Structural Impact": 50.1, + "Lines of Code (LOC)": 153, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "85.3%", + "Start Line": 3542, + "End Line": 3694 + }, + { + "Function Name": "loadMesh", + "Structural Impact": 49.5, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "78.4%", + "Start Line": 3799, + "End Line": 3940 + }, + { + "Function Name": "addMorphTargets", + "Structural Impact": 48.0, + "Lines of Code (LOC)": 80, + "Control Flow Branches": 21, + "Input Parameters": 3, + "Control Flow Ratio": "72.4%", + "Start Line": 2333, + "End Line": 2412 + }, + { + "Function Name": "_loadNodeShallow", + "Structural Impact": 44.1, + "Lines of Code (LOC)": 146, + "Control Flow Branches": 25, + "Input Parameters": 1, + "Control Flow Ratio": "75.8%", + "Start Line": 4274, + "End Line": 4419 + }, + { + "Function Name": "createNodeMesh", + "Structural Impact": 40.9, + "Lines of Code (LOC)": 139, + "Control Flow Branches": 23, + "Input Parameters": 1, + "Control Flow Ratio": "69.7%", + "Start Line": 1691, + "End Line": 1829 + }, + { + "Function Name": "loadAccessor", + "Structural Impact": 39.2, + "Lines of Code (LOC)": 133, + "Control Flow Branches": 22, + "Input Parameters": 1, + "Control Flow Ratio": "78.6%", + "Start Line": 3071, + "End Line": 3203 + }, + { + "Function Name": "computeBounds", + "Structural Impact": 37.5, + "Lines of Code (LOC)": 109, + "Control Flow Branches": 15, + "Input Parameters": 3, + "Control Flow Ratio": "83.3%", + "Start Line": 4669, + "End Line": 4777 + }, + { + "Function Name": "loadTextureImage", + "Structural Impact": 36.6, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 16, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 3233, + "End Line": 3285 + }, + { + "Function Name": "_loadLight", + "Structural Impact": 31.7, + "Lines of Code (LOC)": 68, + "Control Flow Branches": 19, + "Input Parameters": 1, + "Control Flow Ratio": "82.6%", + "Start Line": 694, + "End Line": 761 + }, + { + "Function Name": "assignFinalMaterial", + "Structural Impact": 29.9, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "77.3%", + "Start Line": 3439, + "End Line": 3527 + }, + { + "Function Name": "constructor", + "Structural Impact": 27.9, + "Lines of Code (LOC)": 74, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "76.5%", + "Start Line": 2549, + "End Line": 2622 + }, + { + "Function Name": "load", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 76, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 264, + "End Line": 339 + }, + { + "Function Name": "loadImageSource", + "Structural Impact": 23.5, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 10, + "Input Parameters": 2, + "Control Flow Ratio": "52.6%", + "Start Line": 3287, + "End Line": 3374 + }, + { + "Function Name": "loadAnimation", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 90, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "70.6%", + "Start Line": 4059, + "End Line": 4148 + }, + { + "Function Name": "addPrimitiveAttributes", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 4787, + "End Line": 4845 + }, + { + "Function Name": "loadBufferView", + "Structural Impact": 21.7, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "63.2%", + "Start Line": 1605, + "End Line": 1671 + }, + { + "Function Name": "loadScene", + "Structural Impact": 21.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "61.1%", + "Start Line": 4428, + "End Line": 4512 + }, + { + "Function Name": "assignTexture", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "70.0%", + "Start Line": 3386, + "End Line": 3427 + }, + { + "Function Name": "extendTexture", + "Structural Impact": 19.5, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 9, + "Input Parameters": 2, + "Control Flow Ratio": "81.8%", + "Start Line": 2005, + "End Line": 2047 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 1019, + "End Line": 1071 + }, + { + "Function Name": "decodePrimitive", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 58, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 1929, + "End Line": 1986 + }, + { + "Function Name": "loadNode", + "Structural Impact": 16.7, + "Lines of Code (LOC)": 79, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 4192, + "End Line": 4270 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 905, + "End Line": 953 + }, + { + "Function Name": "getImageURIMimeType", + "Structural Impact": 16.0, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2533, + "End Line": 2541 + }, + { + "Function Name": "constructor", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "88.9%", + "Start Line": 1840, + "End Line": 1901 + }, + { + "Function Name": "updateMorphTargets", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 2420, + "End Line": 2457 + }, + { + "Function Name": "parse", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 2636, + "End Line": 2701 + }, + { + "Function Name": "loadSkin", + "Structural Impact": 14.5, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "63.6%", + "Start Line": 3987, + "End Line": 4050 + }, + { + "Function Name": "loadCamera", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 3949, + "End Line": 3978 + }, + { + "Function Name": "loadGeometries", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "54.5%", + "Start Line": 3730, + "End Line": 3790 + }, + { + "Function Name": "_markDefs", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 9, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 2708, + "End Line": 2757 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1099, + "End Line": 1138 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1308, + "End Line": 1335 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1217, + "End Line": 1240 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1458, + "End Line": 1491 + }, + { + "Function Name": "getNormalizedComponentScale", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2507, + "End Line": 2531 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1410, + "End Line": 1438 + }, + { + "Function Name": "createPrimitiveKey", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2459, + "End Line": 2489 + }, + { + "Function Name": "extendParams", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 813, + "End Line": 843 + }, + { + "Function Name": "_getNodeRef", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 2795, + "End Line": 2826 + }, + { + "Function Name": "reduceAssociations", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4476, + "End Line": 4512 + }, + { + "Function Name": "addUnknownExtensionsToUserData", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 2283, + "End Line": 2298 + }, + { + "Function Name": "createNodeMesh", + "Structural Impact": 8.8, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 4150, + "End Line": 4183 + }, + { + "Function Name": "loadBuffer", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3011, + "End Line": 3041 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 1511, + "End Line": 1538 + }, + { + "Function Name": "loadTexture", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 1558, + "End Line": 1585 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1167, + "End Line": 1189 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1364, + "End Line": 1382 + }, + { + "Function Name": "assignExtrasToUserData", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 2306, + "End Line": 2322 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1268, + "End Line": 1280 + }, + { + "Function Name": "constructor", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 119, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 135, + "End Line": 253 + }, + { + "Function Name": "_markDefs", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 673, + "End Line": 692 + }, + { + "Function Name": "getDependencies", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2981, + "End Line": 3002 + }, + { + "Function Name": "getMaterialExtension", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 614, + "End Line": 626 + }, + { + "Function Name": "createNodeAttachment", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 771, + "End Line": 788 + }, + { + "Function Name": "createUniqueName", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3703, + "End Line": 3719 + }, + { + "Function Name": "interpolate_", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 39, "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 2102, + "End Line": 2140 + }, + { + "Function Name": "updateMappings", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2803, + "End Line": 2826 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 863, + "End Line": 877 + }, + { + "Function Name": "_addNodeRef", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2772, + "End Line": 2784 + }, + { + "Function Name": "extendMaterialParams", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 981, + "End Line": 991 + }, + { + "Function Name": "_getArrayFromAccessor", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 151, - "End Line": 154 + "Control Flow Ratio": "40.0%", + "Start Line": 4618, + "End Line": 4639 }, { - "Function Name": "get_query_type_optional", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "loadTexture", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3212, + "End Line": 3231 + }, + { + "Function Name": "_invokeAll", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2845, + "End Line": 2862 + }, + { + "Function Name": "_onError", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 295, + "End Line": 310 + }, + { + "Function Name": "_invokeOne", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2828, + "End Line": 2843 + }, + { + "Function Name": "loadBufferView", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3050, + "End Line": 3062 + }, + { + "Function Name": "collectMorphTargets", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 4521, + "End Line": 4529 + }, + { + "Function Name": "constructor", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 1914, + "End Line": 1927 + }, + { + "Function Name": "getDependency", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 763, + "End Line": 769 + }, + { + "Function Name": "copySampleValue_", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 163, - "End Line": 166 + "Control Flow Ratio": "33.3%", + "Start Line": 2082, + "End Line": 2100 }, { - "Function Name": "get_query_param", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "createDefaultMaterial", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2263, + "End Line": 2281 + }, + { + "Function Name": "_createCubicSplineTrackInterpolant", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4641, + "End Line": 4658 + }, + { + "Function Name": "createAttributesKey", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "25.0%", - "Start Line": 175, - "End Line": 178 + "Start Line": 2491, + "End Line": 2505 }, { - "Function Name": "get_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, + "Function Name": "register", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 391, + "End Line": 401 + }, + { + "Function Name": "unregister", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 409, + "End Line": 419 + }, + { + "Function Name": "InterpolantFactoryMethodGLTFCubicSpline", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4643, + "End Line": 4653 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 897, + "End Line": 903 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 973, + "End Line": 979 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1011, + "End Line": 1017 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1091, + "End Line": 1097 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1159, + "End Line": 1165 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1209, + "End Line": 1215 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1260, + "End Line": 1266 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1300, + "End Line": 1306 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1356, + "End Line": 1362 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1402, + "End Line": 1408 + }, + { + "Function Name": "GLTFRegistry", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 0, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 31, - "End Line": 32 + "Start Line": 576, + "End Line": 608 }, { - "Function Name": "get_str_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "interpolate_", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 37 + "Start Line": 2148, + "End Line": 2156 }, { - "Function Name": "get_int_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 42 + "Start Line": 2076, + "End Line": 2080 }, { - "Function Name": "get_float_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "parseAsync", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 47 + "Start Line": 560, + "End Line": 570 }, { - "Function Name": "get_bool_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "assignAttributeAccessor", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 52 + "Start Line": 4793, + "End Line": 4802 }, { - "Function Name": "get_path_param_id", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "add", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 57 + "Start Line": 588, + "End Line": 592 }, { - "Function Name": "get_path_param_min_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1598, + "End Line": 1603 + }, + { + "Function Name": "createDracoPrimitive", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 62 + "Start Line": 3736, + "End Line": 3746 }, { - "Function Name": "get_path_param_max_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 67 + "Start Line": 663, + "End Line": 671 }, { - "Function Name": "get_path_param_min_max_length", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "onLoad", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 72 + "Start Line": 3331, + "End Line": 3338 }, { - "Function Name": "get_path_param_gt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setDRACOLoader", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 77 + "Start Line": 348, + "End Line": 353 }, { - "Function Name": "get_path_param_gt0", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setKTX2Loader", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 82 + "Start Line": 362, + "End Line": 367 }, { - "Function Name": "get_path_param_ge", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setMeshoptDecoder", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 87 + "Start Line": 376, + "End Line": 381 }, { - "Function Name": "get_path_param_lt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "get", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 92 + "Start Line": 582, + "End Line": 586 }, { - "Function Name": "get_path_param_lt0", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "remove", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 96, - "End Line": 97 + "Start Line": 594, + "End Line": 598 }, { - "Function Name": "get_path_param_le", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 102 + "Start Line": 856, + "End Line": 861 }, { - "Function Name": "get_path_param_lt_gt", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 106, - "End Line": 107 + "Start Line": 890, + "End Line": 895 }, { - "Function Name": "get_path_param_le_ge", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 112 + "Start Line": 966, + "End Line": 971 }, { - "Function Name": "get_path_param_lt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 116, - "End Line": 117 + "Start Line": 1004, + "End Line": 1009 }, { - "Function Name": "get_path_param_gt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 121, - "End Line": 122 + "Start Line": 1084, + "End Line": 1089 }, { - "Function Name": "get_path_param_le_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 127 + "Start Line": 1152, + "End Line": 1157 }, { - "Function Name": "get_path_param_ge_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 131, - "End Line": 132 + "Start Line": 1202, + "End Line": 1207 }, { - "Function Name": "get_path_param_lt_gt_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 137 + "Start Line": 1253, + "End Line": 1258 }, { - "Function Name": "get_path_param_le_ge_int", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 142 + "Start Line": 1293, + "End Line": 1298 }, { - "Function Name": "get_query", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 146, - "End Line": 147 + "Start Line": 1349, + "End Line": 1354 }, { - "Function Name": "get_query_type", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 158, - "End Line": 159 + "Start Line": 1395, + "End Line": 1400 }, { - "Function Name": "get_query_type_int_default", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 170, - "End Line": 171 + "Start Line": 1451, + "End Line": 1456 }, { - "Function Name": "get_query_param_required", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 183 + "Start Line": 1504, + "End Line": 1509 }, { - "Function Name": "get_query_param_required_type", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 188 + "Start Line": 1551, + "End Line": 1556 }, { - "Function Name": "get_query_type_frozenset", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 197, - "End Line": 198 + "Start Line": 1684, + "End Line": 1689 }, { - "Function Name": "get_query_list", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setExtensions", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 202, - "End Line": 203 + "Start Line": 2624, + "End Line": 2628 }, { - "Function Name": "get_query_list_default", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "setPlugins", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 207, - "End Line": 208 + "Start Line": 2630, + "End Line": 2634 }, { - "Function Name": "non_operation", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "removeAll", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 15 + "Start Line": 600, + "End Line": 604 }, { - "Function Name": "non_decorated_route", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 19 + "Start Line": 801, + "End Line": 805 }, { - "Function Name": "get_text", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "getMaterialType", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 27 + "Start Line": 807, + "End Line": 811 }, { - "Function Name": "get_enum_status_code", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 192, - "End Line": 193 + "Start Line": 1999, + "End Line": 2003 + }, + { + "Function Name": "constructor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2060, + "End Line": 2064 + }, + { + "Function Name": "getMaterialType", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3529, + "End Line": 3533 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 82, - "Function Parameters": 38, - "Function/Method Declarations": 38, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 614, + "Sequential Logic Declarations": 315, + "Function Parameters": 207, + "Function/Method Declarations": 129, + "Class/Entity Declarations": 26, + "Defensive Programming Constructs": 247, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 111, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 1186, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 67, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 415, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 37, - "Generic Type Abstractions": 6, - "Collection Iterators / Comprehensions": 0, + "Closures and Anonymous Functions": 86, + "Global State Dependencies": 5, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 3, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Metaprogramming & Reflection": 4, + "Module Dependencies (Imports)": 3, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 3, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, + "Dependency Injection Constructs": 49, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 122, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, + "Ad-hoc Print / Debug Statements": 11, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 14, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 4, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 2, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 418, + "Resource Deallocation & Cleanup": 2, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 46, + "Structural Tab Indentations": 2300, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, + "Serialization Parsing": 3, + "Regex Execution": 8, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -351719,16 +353571,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 27, - "Core Var Decl": 24, - "Design Camel Case": 0, - "Design Snake Case": 22, - "Design Pascal Case": 2, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 546, + "Design Camel Case": 199, + "Design Snake Case": 323, + "Design Pascal Case": 8, + "Design Upper Case": 14, + "Design Short Vars": 51, + "Design Long Vars": 3, + "Duplicate Logic": 12, + "Orphaned Logic": 6, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351752,33 +353604,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 4, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "http" + "../utils/BufferGeometryUtils.js", + "../utils/SkeletonUtils.js", + "three", + "three/addons/loaders/GLTFLoader.js" ] }, - "python/fastapi/tests/test_additional_properties.py": { + "javascript/threejs/Matrix4.js": { "1. Artifact Identity": { - "Filename": "test_additional_properties.py", - "Path": "python/fastapi/tests/test_additional_properties.py", - "Language": "Python", + "Filename": "Matrix4.js", + "Path": "javascript/threejs/Matrix4.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "BaseModel", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1411.85, - "Y": -199.34, - "Z": 1232.94 + "X": 8830.56, + "Y": -30.17, + "Z": -1632.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351787,90 +353640,430 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 115, - "Coding LOC": 103, - "Documentation LOC": 0, - "Structural Magnitude": 15.16, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 1315, + "Coding LOC": 597, + "Documentation LOC": 376, + "Structural Magnitude": 292.94, + "Control Flow Ratio": "44.0%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.51 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "7.54%", + "Cognitive Load Exposure": "13.84%", + "Error & Exception Exposure": "61.0%", + "Tech Debt Exposure": "89.55%", + "Testing Exposure": "80.0%", + "API Exposure": "1.93%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "51.98%", + "Commented Logic Exposure": "5.06%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 88, + "Function Name": "makePerspective", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 8, + "Control Flow Ratio": "75.0%", + "Start Line": 1122, + "End Line": 1166 + }, + { + "Function Name": "makeOrthographic", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 8, + "Control Flow Ratio": "75.0%", + "Start Line": 1182, + "End Line": 1226 + }, + { + "Function Name": "makeRotationFromEuler", + "Structural Impact": 23.0, + "Lines of Code (LOC)": 121, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "91.7%", + "Start Line": 338, + "End Line": 458 + }, + { + "Function Name": "lookAt", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 483, + "End Line": 528 + }, + { + "Function Name": "constructor", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 1, + "Input Parameters": 16, + "Control Flow Ratio": "100.0%", + "Start Line": 79, + "End Line": 101 + }, + { + "Function Name": "decompose", + "Structural Impact": 8.7, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "40.0%", + "Start Line": 1053, + "End Line": 1106 + }, + { + "Function Name": "makeTranslation", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 810, + "End Line": 838 + }, + { + "Function Name": "setPosition", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 683, + "End Line": 703 + }, + { + "Function Name": "extractBasis", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 239, + "End Line": 257 + }, + { + "Function Name": "equals", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1234, + "End Line": 1247 + }, + { + "Function Name": "set", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, + "Input Parameters": 16, + "Control Flow Ratio": "0.0%", + "Start Line": 125, + "End Line": 136 + }, + { + "Function Name": "extractRotation", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 289, + "End Line": 326 + }, + { + "Function Name": "invert", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 1, "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 712, + "End Line": 763 + }, + { + "Function Name": "fromArray", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1256, + "End Line": 1266 + }, + { + "Function Name": "compose", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 0, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 27, - "End Line": 114 + "Start Line": 1004, + "End Line": 1038 }, { - "Function Name": "foo", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "multiplyMatrices", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 562, + "End Line": 600 + }, + { + "Function Name": "makeShear", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 6, + "Control Flow Ratio": "0.0%", + "Start Line": 980, + "End Line": 993 + }, + { + "Function Name": "toArray", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1276, + "End Line": 1302 + }, + { + "Function Name": "makeRotationAxis", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 923, + "End Line": 944 + }, + { + "Function Name": "makeScale", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 954, + "End Line": 967 + }, + { + "Function Name": "makeBasis", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 267, + "End Line": 278 + }, + { + "Function Name": "setFromMatrix3", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 15 + "Start Line": 214, + "End Line": 229 }, { - "Function Name": "test_additional_properties_post", + "Function Name": "makeRotationX", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 847, + "End Line": 862 + }, + { + "Function Name": "makeRotationY", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 871, + "End Line": 886 + }, + { + "Function Name": "makeRotationZ", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 895, + "End Line": 910 + }, + { + "Function Name": "copy", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 175, + "End Line": 187 + }, + { + "Function Name": "scale", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 771, + "End Line": 783 + }, + { + "Function Name": "copyPosition", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 196, + "End Line": 206 + }, + { + "Function Name": "multiplyScalar", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 608, + "End Line": 619 + }, + { + "Function Name": "determinant", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 628, + "End Line": 650 + }, + { + "Function Name": "transpose", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 672 + }, + { + "Function Name": "identity", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 143, + "End Line": 156 + }, + { + "Function Name": "makeRotationFromQuaternion", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 468, + "End Line": 472 + }, + { + "Function Name": "multiply", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 536, + "End Line": 540 + }, + { + "Function Name": "premultiply", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 548, + "End Line": 552 + }, + { + "Function Name": "getMaxScaleOnAxis", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 790, + "End Line": 800 + }, + { + "Function Name": "clone", "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 24 + "Start Line": 163, + "End Line": 167 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 31, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Control Flow Branches": 40, + "Sequential Logic Declarations": 51, + "Function Parameters": 37, + "Function/Method Declarations": 37, "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 19, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 86, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 40, + "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": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -351880,22 +354073,22 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 10, "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": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 98, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Tab Indentations": 582, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -351912,15 +354105,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 4, - "Design Camel Case": 0, - "Design Snake Case": 4, + "Core Var Decl": 140, + "Design Camel Case": 12, + "Design Snake Case": 128, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 89, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 2, + "Orphaned Logic": 27, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -351929,8 +354122,8 @@ "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, + "Global Environment Mutation": 1, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -351944,35 +354137,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 2, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic" + "../constants.js", + "./Vector3.js" ] }, - "python/fastapi/tests/test_additional_properties_bool.py": { + "javascript/threejs/WebGLProgram.js": { "1. Artifact Identity": { - "Filename": "test_additional_properties_bool.py", - "Path": "python/fastapi/tests/test_additional_properties_bool.py", - "Language": "Python", + "Filename": "WebGLProgram.js", + "Path": "javascript/threejs/WebGLProgram.js", + "Language": "Javascript", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "BaseModel, FooBaseModel", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1938.11, - "Y": -188.72, - "Z": 1581.17 + "X": 8380.39, + "Y": -88.2, + "Z": -1633.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -351981,132 +354171,372 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 126, - "Coding LOC": 109, - "Documentation LOC": 0, - "Structural Magnitude": 19.48, - "Control Flow Ratio": "0.0%", + "Total LOC": 1029, + "Coding LOC": 621, + "Documentation LOC": 30, + "Structural Magnitude": 684.02, + "Control Flow Ratio": "77.6%", "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.852 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "45.36%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "8.59%", - "Concurrency Exposure": "19.73%", - "State Flux Exposure": "0.0%", + "Cognitive Load Exposure": "60.09%", + "Error & Exception Exposure": "50.0%", + "Tech Debt Exposure": "22.59%", + "Testing Exposure": "80.0%", + "API Exposure": "0.01%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "50.39%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "14.87%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 125 + "Function Name": "WebGLProgram", + "Structural Impact": 455.6, + "Lines of Code (LOC)": 615, + "Control Flow Branches": 189, + "Input Parameters": 4, + "Control Flow Ratio": "93.6%", + "Start Line": 412, + "End Line": 1026 }, { - "Function Name": "post", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, + "Function Name": "onFirstUse", + "Structural Impact": 24.5, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 13, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 22 + "Control Flow Ratio": "86.7%", + "Start Line": 856, + "End Line": 949 }, { - "Function Name": "test_call_valid", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 36 + "Function Name": "getShaderErrors", + "Structural Impact": 13.2, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 58, + "End Line": 82 }, { - "Function Name": "test_call_invalid", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 30 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 34, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 7, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 7, - "State Mutations / Variable Reassignments": 0, + "Function Name": "generatePrecision", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 306, + "End Line": 343 + }, + { + "Function Name": "fetchAttributeLocations", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 178, + "End Line": 206 + }, + { + "Function Name": "getEncodingComponents", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 36, + "End Line": 56 + }, + { + "Function Name": "includeReplacer", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 253, + "End Line": 276 + }, + { + "Function Name": "generateDefines", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 160, + "End Line": 176 + }, + { + "Function Name": "handleSource", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 32 + }, + { + "Function Name": "loopReplacer", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 288, + "End Line": 302 + }, + { + "Function Name": "generateVertexExtensions", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 149, + "End Line": 158 + }, + { + "Function Name": "generateEnvMapTypeDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 362, + "End Line": 368 + }, + { + "Function Name": "generateEnvMapModeDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 374, + "End Line": 380 + }, + { + "Function Name": "generateEnvMapBlendingDefine", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 388, + "End Line": 394 + }, + { + "Function Name": "getToneMappingFunction", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 110, + "End Line": 123 + }, + { + "Function Name": "generateCubeUVSize", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 396, + "End Line": 410 + }, + { + "Function Name": "generateShadowMapTypeDefine", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 350, + "End Line": 354 + }, + { + "Function Name": "replaceLightNums", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 214, + "End Line": 231 + }, + { + "Function Name": "getUniforms", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 955, + "End Line": 966 + }, + { + "Function Name": "getAttributes", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 972, + "End Line": 983 + }, + { + "Function Name": "getTexelEncodingFunction", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 98 + }, + { + "Function Name": "isReady", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 990, + "End Line": 1000 + }, + { + "Function Name": "replaceClippingPlaneNums", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 233, + "End Line": 239 + }, + { + "Function Name": "getLuminanceFunction", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 127, + "End Line": 147 + }, + { + "Function Name": "filterEmptyLine", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 212 + }, + { + "Function Name": "resolveIncludes", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 245, + "End Line": 249 + }, + { + "Function Name": "unrollLoops", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 286 + }, + { + "Function Name": "destroy", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1004, + "End Line": 1011 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 229, + "Sequential Logic Declarations": 66, + "Function Parameters": 29, + "Function/Method Declarations": 28, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 38, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 70, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 1, + "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, + "Closures and Anonymous Functions": 4, + "Global State Dependencies": 3, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, + "Collection Iterators / Comprehensions": 6, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, + "Module Dependencies (Imports)": 8, "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, + "Dependency Injection Constructs": 1, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 5, "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, + "Bitwise Operations": 1, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 65, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 204, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 95, + "Structural Tab Indentations": 549, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, + "Regex Execution": 18, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -352116,15 +354546,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 6, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Core Var Decl": 98, + "Design Camel Case": 64, + "Design Snake Case": 33, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "Design Short Vars": 9, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 4, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352148,34 +354578,39 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 8, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic" + "../../constants.js", + "../../math/ColorManagement.js", + "../../math/Matrix3.js", + "../../math/Vector3.js", + "../../utils.js", + "../shaders/ShaderChunk.js", + "./WebGLShader.js", + "./WebGLUniforms.js" ] }, - "python/fastapi/tests/test_additional_response_extra.py": { + "javascript/threejs/WebGLRenderer.js": { "1. Artifact Identity": { - "Filename": "test_additional_response_extra.py", - "Path": "python/fastapi/tests/test_additional_response_extra.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Filename": "WebGLRenderer.js", + "Path": "javascript/threejs/WebGLRenderer.js", + "Language": "Javascript", + "Architect": "the renderer", + "Indentation Style": "Tabs", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", + "Alert": "TYPOSQUATTING THREAT: 'math/Vector4.js' mimics 'math/Vector3.js'", + "Folder Dominant Lang": "javascript", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Identity Proof": "Single Indicator (Ext: .js)" }, "2. Topological Coordinates": { - "X": 1743.54, - "Y": -210.35, - "Z": -1728.1 + "X": 7991.98, + "Y": -96.13, + "Z": -1037.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352184,123 +354619,863 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 53, - "Coding LOC": 39, - "Documentation LOC": 0, - "Structural Magnitude": 8.28, - "Control Flow Ratio": "0.0%", + "Total LOC": 3639, + "Coding LOC": 1628, + "Documentation LOC": 734, + "Structural Magnitude": 2408.76, + "Control Flow Ratio": "77.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": 1.099 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "6.95%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "41.74%", + "Error & Exception Exposure": "43.07%", + "Tech Debt Exposure": "52.57%", + "Testing Exposure": "80.0%", + "API Exposure": "1.69%", + "Concurrency Exposure": "21.86%", + "State Flux Exposure": "97.79%", + "Commented Logic Exposure": "4.97%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 2.2, + "Function Name": "constructor", + "Structural Impact": 642.0, + "Lines of Code (LOC)": 2545, + "Control Flow Branches": 363, + "Input Parameters": 1, + "Control Flow Ratio": "80.5%", + "Start Line": 70, + "End Line": 2614 + }, + { + "Function Name": "setProgram", + "Structural Impact": 374.1, + "Lines of Code (LOC)": 428, + "Control Flow Branches": 143, + "Input Parameters": 5, + "Control Flow Ratio": "94.7%", + "Start Line": 2295, + "End Line": 2722 + }, + { + "Function Name": "copyTextureToTexture", + "Structural Impact": 141.4, + "Lines of Code (LOC)": 235, + "Control Flow Branches": 48, + "Input Parameters": 6, + "Control Flow Ratio": "90.6%", + "Start Line": 3205, + "End Line": 3439 + }, + { + "Function Name": "renderBufferDirect", + "Structural Impact": 108.5, + "Lines of Code (LOC)": 159, + "Control Flow Branches": 37, + "Input Parameters": 6, + "Control Flow Ratio": "78.7%", + "Start Line": 1175, + "End Line": 1333 + }, + { + "Function Name": "render", + "Structural Impact": 94.2, + "Lines of Code (LOC)": 221, + "Control Flow Branches": 47, + "Input Parameters": 2, + "Control Flow Ratio": "92.2%", + "Start Line": 1600, + "End Line": 1820 + }, + { + "Function Name": "projectObject", + "Structural Impact": 81.7, + "Lines of Code (LOC)": 113, + "Control Flow Branches": 33, + "Input Parameters": 4, + "Control Flow Ratio": "91.7%", + "Start Line": 1822, + "End Line": 1934 + }, + { + "Function Name": "setRenderTarget", + "Structural Impact": 80.4, + "Lines of Code (LOC)": 168, + "Control Flow Branches": 35, + "Input Parameters": 3, + "Control Flow Ratio": "87.5%", + "Start Line": 2823, + "End Line": 2990 + }, + { + "Function Name": "getProgram", + "Structural Impact": 51.8, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 22, + "Input Parameters": 3, + "Control Flow Ratio": "84.6%", + "Start Line": 2142, + "End Line": 2257 + }, + { + "Function Name": "readRenderTargetPixels", + "Structural Impact": 51.2, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 15, + "Input Parameters": 8, + "Control Flow Ratio": "78.9%", + "Start Line": 3004, + "End Line": 3068 + }, + { + "Function Name": "readRenderTargetPixelsAsync", + "Structural Impact": 48.9, + "Lines of Code (LOC)": 78, + "Control Flow Branches": 14, + "Input Parameters": 8, + "Control Flow Ratio": "82.4%", + "Start Line": 3086, + "End Line": 3163 + }, + { + "Function Name": "renderTransmissionPass", + "Structural Impact": 44.2, + "Lines of Code (LOC)": 123, + "Control Flow Branches": 16, + "Input Parameters": 4, + "Control Flow Ratio": "84.2%", + "Start Line": 1960, + "End Line": 2082 + }, + { + "Function Name": "compile", + "Structural Impact": 38.6, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 16, + "Input Parameters": 3, + "Control Flow Ratio": "84.2%", + "Start Line": 1371, + "End Line": 1462 + }, + { + "Function Name": "clear", + "Structural Impact": 23.8, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 944, + "End Line": 1018 + }, + { + "Function Name": "renderObject", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "100.0%", + "Start Line": 2111, + "End Line": 2140 + }, + { + "Function Name": "renderScene", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 1936, + "End Line": 1958 + }, + { + "Function Name": "renderObjects", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 2084, + "End Line": 2109 + }, + { + "Function Name": "compileAsync", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1478, + "End Line": 1536 + }, + { + "Function Name": "initTexture", + "Structural Impact": 12.5, "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 3464, + "End Line": 3486 + }, + { + "Function Name": "setSize", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 650, + "End Line": 680 + }, + { + "Function Name": "setEffects", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 726, + "End Line": 752 + }, + { + "Function Name": "prepareMaterial", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 1337, + "End Line": 1357 + }, + { + "Function Name": "materialNeedsLights", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 2742, + "End Line": 2748 + }, + { + "Function Name": "setViewport", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 787, + "End Line": 801 + }, + { + "Function Name": "setScissor", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "100.0%", + "Start Line": 824, + "End Line": 838 + }, + { + "Function Name": "setRenderTargetTextures", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 2784, + "End Line": 2802 + }, + { + "Function Name": "copyFramebufferToTexture", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "100.0%", + "Start Line": 3172, + "End Line": 3187 + }, + { + "Function Name": "releaseMaterialProgramReferences", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1151, + "End Line": 1171 + }, + { + "Function Name": "initGLContext", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 423, + "End Line": 538 + }, + { + "Function Name": "checkMaterialsReady", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1487, + "End Line": 1516 + }, + { + "Function Name": "getUniformList", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2259, + "End Line": 2270 + }, + { + "Function Name": "setPixelRatio", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 619, + "End Line": 627 + }, + { + "Function Name": "initRenderTarget", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 3448, + "End Line": 3456 + }, + { + "Function Name": "setAnimationLoop", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1572, + "End Line": 1579 + }, + { + "Function Name": "onAnimationFrame", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "100.0%", + "Start Line": 1542, + "End Line": 1546 + }, + { + "Function Name": "updateCommonMaterialProperties", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2272, + "End Line": 2293 + }, + { + "Function Name": "setDrawingBufferSize", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 707, + "End Line": 719 + }, + { + "Function Name": "markUniformsLightsNeedsUpdate", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2726, + "End Line": 2740 + }, + { + "Function Name": "forceContextLoss", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 586, + "End Line": 591 + }, + { + "Function Name": "forceContextRestore", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 596, + "End Line": 601 + }, + { + "Function Name": "getTargetPixelRatio", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 349, + "End Line": 353 + }, + { + "Function Name": "setRenderTargetFramebuffer", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2804, + "End Line": 2810 + }, + { + "Function Name": "getContext", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 363 + }, + { + "Function Name": "onContextLost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1092, + "End Line": 1100 + }, + { + "Function Name": "onMaterialDispose", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1130, + "End Line": 1138 + }, + { + "Function Name": "outputColorSpace", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3539, + "End Line": 3547 + }, + { + "Function Name": "deallocateMaterial", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1142, + "End Line": 1148 + }, + { + "Function Name": "getSize", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 635, + "End Line": 639 + }, + { + "Function Name": "getDrawingBufferSize", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 688, + "End Line": 692 + }, + { + "Function Name": "getCurrentViewport", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 760, + "End Line": 764 + }, + { + "Function Name": "getViewport", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 772, + "End Line": 776 + }, + { + "Function Name": "getScissor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 813 + }, + { + "Function Name": "setScissorTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 858, + "End Line": 862 + }, + { + "Function Name": "setOpaqueSort", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 870, + "End Line": 874 + }, + { + "Function Name": "setTransparentSort", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 882, + "End Line": 886 + }, + { + "Function Name": "getClearColor", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 896, + "End Line": 900 + }, + { + "Function Name": "setNodesHandler", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1054, + "End Line": 1059 + }, + { + "Function Name": "onContextCreationError", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1124, + "End Line": 1128 + }, + { + "Function Name": "dispose", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 52 + "Start Line": 1065, + "End Line": 1088 }, { - "Function Name": "test_path_operation", + "Function Name": "onContextRestore", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1122 + }, + { + "Function Name": "resetState", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3493, + "End Line": 3502 + }, + { + "Function Name": "getContext", "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 27 + "Start Line": 566, + "End Line": 570 }, { - "Function Name": "read_item", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Function Name": "getContextAttributes", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 14 + "Start Line": 577, + "End Line": 581 + }, + { + "Function Name": "getPixelRatio", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 608, + "End Line": 612 + }, + { + "Function Name": "getScissorTest", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 845, + "End Line": 849 + }, + { + "Function Name": "setClearColor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 908, + "End Line": 912 + }, + { + "Function Name": "getClearAlpha", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 919, + "End Line": 923 + }, + { + "Function Name": "setClearAlpha", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 930, + "End Line": 934 + }, + { + "Function Name": "clearColor", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1023, + "End Line": 1027 + }, + { + "Function Name": "clearDepth", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1032, + "End Line": 1036 + }, + { + "Function Name": "clearStencil", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1041, + "End Line": 1045 + }, + { + "Function Name": "onXRSessionStart", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1548, + "End Line": 1552 + }, + { + "Function Name": "onXRSessionEnd", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1554, + "End Line": 1558 + }, + { + "Function Name": "getActiveCubeFace", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2755, + "End Line": 2759 + }, + { + "Function Name": "getActiveMipmapLevel", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2766, + "End Line": 2770 + }, + { + "Function Name": "getRenderTarget", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 2778, + "End Line": 2782 + }, + { + "Function Name": "coordinateSystem", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3521, + "End Line": 3525 + }, + { + "Function Name": "outputColorSpace", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3533, + "End Line": 3537 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 515, + "Sequential Logic Declarations": 152, + "Function Parameters": 83, + "Function/Method Declarations": 77, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 204, + "Type/Safety Bypasses": 1, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 3, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 338, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 78, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 15, + "UI / View Layer Components": 3, + "Closures and Anonymous Functions": 54, "Global State Dependencies": 0, - "Decorators and Annotations": 1, + "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)": 3, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Module Dependencies (Imports)": 37, + "Authorship Metadata": 2, + "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": 1, + "Dependency Injection Constructs": 2, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 49, "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, + "Fatal Aborts & Exceptions": 9, + "Thread Sleeps & Blocking Waits": 2, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, + "Immutable Data Declarations": 172, + "Resource Deallocation & Cleanup": 20, "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, + "Event Listeners & Subscribers": 6, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 26, - "Hardware Bridge": 0, + "Structural Tab Indentations": 1587, + "Structural Space Indentations": 0, + "Hardware Bridge": 26, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 2, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -352308,16 +355483,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 7, - "Design Camel Case": 0, - "Design Snake Case": 7, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 391, + "Design Camel Case": 195, + "Design Snake Case": 141, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Upper Case": 2, + "Design Short Vars": 21, + "Design Long Vars": 6, "Duplicate Logic": 0, - "Orphaned Logic": 3, + "Orphaned Logic": 27, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352330,7 +355505,7 @@ "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 0, + "Non-Standard Unicode / Homoglyphs": 1, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -352341,33 +355516,91 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 37, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi", - "fastapi.testclient", - "inline_snapshot" + "../constants.js", + "../math/Color.js", + "../math/ColorManagement.js", + "../math/Frustum.js", + "../math/Matrix4.js", + "../math/Vector3.js", + "../math/Vector4.js", + "../utils.js", + "./WebGLRenderTarget.js", + "./shaders/DFGLUTData.js", + "./webgl/WebGLAnimation.js", + "./webgl/WebGLAttributes.js", + "./webgl/WebGLBackground.js", + "./webgl/WebGLBindingStates.js", + "./webgl/WebGLBufferRenderer.js", + "./webgl/WebGLCapabilities.js", + "./webgl/WebGLClipping.js", + "./webgl/WebGLEnvironments.js", + "./webgl/WebGLExtensions.js", + "./webgl/WebGLGeometries.js", + "./webgl/WebGLIndexedBufferRenderer.js", + "./webgl/WebGLInfo.js", + "./webgl/WebGLMaterials.js", + "./webgl/WebGLMorphtargets.js", + "./webgl/WebGLObjects.js", + "./webgl/WebGLOutput.js", + "./webgl/WebGLPrograms.js", + "./webgl/WebGLProperties.js", + "./webgl/WebGLRenderLists.js", + "./webgl/WebGLRenderStates.js", + "./webgl/WebGLShadowMap.js", + "./webgl/WebGLState.js", + "./webgl/WebGLTextures.js", + "./webgl/WebGLUniforms.js", + "./webgl/WebGLUniformsGroups.js", + "./webgl/WebGLUtils.js", + "./webxr/WebXRManager.js" ] - }, - "python/fastapi/tests/test_additional_responses_bad.py": { + } + } + }, + "python/fastapi/tests": { + "Directory Group Magnitude": 7691.24, + "File Count": 204, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "3.35%", + "Error & Exception Exposure": "13.2%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "9.38%", + "Concurrency Exposure": "21.5%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.31%", + "Specification Exposure": "99.51%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/fastapi/tests/__init__.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_bad.py", - "Path": "python/fastapi/tests/test_additional_responses_bad.py", + "Filename": "__init__.py", + "Path": "python/fastapi/tests/__init__.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4641.35, - "Y": 155.59, - "Z": 1304.75 + "X": 3175.53, + "Y": -11.84, + "Z": 2270.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352376,80 +355609,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 41, - "Coding LOC": 30, - "Documentation LOC": 2, - "Structural Magnitude": 6.8, - "Control Flow Ratio": "11.1%", + "Total LOC": 1, + "Coding LOC": 0, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, + "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.08 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.21%", - "Error & Exception Exposure": "58.49%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "5.59%", - "Concurrency Exposure": "28.22%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "test_openapi_schema", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 38, - "End Line": 40 - }, - { - "Function Name": "a", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 10 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "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": 1, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 3, - "Asynchronous/Concurrent Execution": 1, + "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, + "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -352474,7 +355686,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 20, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352490,16 +355702,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 4, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "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, @@ -352523,34 +355735,29 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "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": [ - "fastapi", - "fastapi.testclient", - "pytest" - ] + "9. Extracted Dependencies": [] }, - "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py": { + "python/fastapi/tests/main.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_custom_model_in_callback.py", - "Path": "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py", + "Filename": "main.py", + "Path": "python/fastapi/tests/main.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4112.95, - "Y": 142.25, - "Z": 1331.64 + "X": 2216.8, + "Y": -85.11, + "Z": 298.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352559,23 +355766,23 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 148, - "Coding LOC": 134, + "Total LOC": 209, + "Coding LOC": 127, "Documentation LOC": 0, - "Structural Magnitude": 17.08, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 136.44, + "Control Flow Ratio": "3.5%", "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.035 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "50.97%", + "Cognitive Load Exposure": "2.7%", + "Error & Exception Exposure": "57.09%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "7.16%", + "API Exposure": "16.15%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -352587,67 +355794,417 @@ }, "5. Function Analysis": [ { - "Function Name": "test_openapi_schema", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 116, + "Function Name": "get_query_optional", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 151, + "End Line": 154 + }, + { + "Function Name": "get_query_type_optional", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 163, + "End Line": 166 + }, + { + "Function Name": "get_query_param", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 175, + "End Line": 178 + }, + { + "Function Name": "get_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 32, + "Start Line": 31, + "End Line": 32 + }, + { + "Function Name": "get_str_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 37 + }, + { + "Function Name": "get_int_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 42 + }, + { + "Function Name": "get_float_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 47 + }, + { + "Function Name": "get_bool_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 52 + }, + { + "Function Name": "get_path_param_id", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 56, + "End Line": 57 + }, + { + "Function Name": "get_path_param_min_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 62 + }, + { + "Function Name": "get_path_param_max_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 67 + }, + { + "Function Name": "get_path_param_min_max_length", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 71, + "End Line": 72 + }, + { + "Function Name": "get_path_param_gt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 76, + "End Line": 77 + }, + { + "Function Name": "get_path_param_gt0", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 82 + }, + { + "Function Name": "get_path_param_ge", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 86, + "End Line": 87 + }, + { + "Function Name": "get_path_param_lt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 92 + }, + { + "Function Name": "get_path_param_lt0", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 96, + "End Line": 97 + }, + { + "Function Name": "get_path_param_le", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 101, + "End Line": 102 + }, + { + "Function Name": "get_path_param_lt_gt", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 106, + "End Line": 107 + }, + { + "Function Name": "get_path_param_le_ge", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 112 + }, + { + "Function Name": "get_path_param_lt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 116, + "End Line": 117 + }, + { + "Function Name": "get_path_param_gt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 121, + "End Line": 122 + }, + { + "Function Name": "get_path_param_le_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 127 + }, + { + "Function Name": "get_path_param_ge_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 131, + "End Line": 132 + }, + { + "Function Name": "get_path_param_lt_gt_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 137 + }, + { + "Function Name": "get_path_param_le_ge_int", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 142 + }, + { + "Function Name": "get_query", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 146, "End Line": 147 }, { - "Function Name": "main_route", + "Function Name": "get_query_type", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 26 + "Start Line": 158, + "End Line": 159 }, { - "Function Name": "callback_route", + "Function Name": "get_query_type_int_default", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 170, + "End Line": 171 + }, + { + "Function Name": "get_query_param_required", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 183 + }, + { + "Function Name": "get_query_param_required_type", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 187, + "End Line": 188 + }, + { + "Function Name": "get_query_type_frozenset", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 197, + "End Line": 198 + }, + { + "Function Name": "get_query_list", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 202, + "End Line": 203 + }, + { + "Function Name": "get_query_list_default", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 207, + "End Line": 208 + }, + { + "Function Name": "non_operation", "Structural Impact": 1.1, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 21 + "Start Line": 14, + "End Line": 15 + }, + { + "Function Name": "non_decorated_route", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 19 + }, + { + "Function Name": "get_text", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 26, + "End Line": 27 + }, + { + "Function Name": "get_enum_status_code", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 192, + "End Line": 193 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 32, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 2, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 82, + "Function Parameters": 38, + "Function/Method Declarations": 38, + "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": 5, + "Exposed API / Public Exports": 74, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "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": 2, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 37, + "Generic Type Abstractions": 6, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 2, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -352661,13 +356218,13 @@ "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, - "Event Listeners & Subscribers": 2, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 119, + "Structural Space Indentations": 46, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352683,16 +356240,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 2, - "Core Var Decl": 6, + "Vectorized Math & Tensor Operations": 27, + "Core Var Decl": 24, "Design Camel Case": 0, - "Design Snake Case": 6, - "Design Pascal Case": 0, + "Design Snake Case": 22, + "Design Pascal Case": 2, "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, @@ -352716,36 +356273,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, + "Total Upstream (Absolute Fragility)": 4, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "fastapi", - "fastapi.testclient", - "inline_snapshot", - "pydantic", - "starlette.responses" + "http" ] }, - "python/fastapi/tests/test_additional_responses_custom_validationerror.py": { + "python/fastapi/tests/test_additional_properties.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_custom_validationerror.py", - "Path": "python/fastapi/tests/test_additional_responses_custom_validationerror.py", + "Filename": "test_additional_properties.py", + "Path": "python/fastapi/tests/test_additional_properties.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse, BaseModel", + "Parent Entity": "BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2712.02, - "Y": -33.61, - "Z": 2084.9 + "X": 1411.85, + "Y": -199.34, + "Z": 1232.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352754,10 +356308,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 101, - "Coding LOC": 87, + "Total LOC": 115, + "Coding LOC": 103, "Documentation LOC": 0, - "Structural Magnitude": 13.54, + "Structural Magnitude": 15.16, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -352767,11 +356321,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "44.42%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "7.75%", - "Concurrency Exposure": "21.66%", + "API Exposure": "7.54%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -352783,42 +356337,52 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 66, + "Structural Impact": 5.4, + "Lines of Code (LOC)": 88, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 100 + "Start Line": 27, + "End Line": 114 }, { - "Function Name": "a", + "Function Name": "foo", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 29 + "Start Line": 14, + "End Line": 15 + }, + { + "Function Name": "test_additional_properties_post", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 24 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 23, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 1, + "Sequential Logic Declarations": 31, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 5, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 1, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, @@ -352827,12 +356391,12 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 2, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -352852,7 +356416,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 73, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -352869,15 +356433,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 6, + "Core Var Decl": 4, "Design Camel Case": 0, - "Design Snake Case": 6, + "Design Snake Case": 4, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -352901,35 +356465,35 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "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": [ "fastapi", - "fastapi.responses", "fastapi.testclient", "inline_snapshot", "pydantic" ] }, - "python/fastapi/tests/test_additional_responses_default_validationerror.py": { + "python/fastapi/tests/test_additional_properties_bool.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_default_validationerror.py", - "Path": "python/fastapi/tests/test_additional_responses_default_validationerror.py", + "Filename": "test_additional_properties_bool.py", + "Path": "python/fastapi/tests/test_additional_properties_bool.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", + "Parent Entity": "BaseModel, FooBaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 4725.31, - "Y": 161.51, - "Z": 1142.62 + "X": 1938.11, + "Y": -188.72, + "Z": 1581.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -352938,10 +356502,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 92, - "Coding LOC": 84, + "Total LOC": 126, + "Coding LOC": 109, "Documentation LOC": 0, - "Structural Magnitude": 10.98, + "Structural Magnitude": 19.48, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -352951,11 +356515,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "52.88%", + "Error & Exception Exposure": "45.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "4.85%", - "Concurrency Exposure": "21.99%", + "API Exposure": "8.59%", + "Concurrency Exposure": "19.73%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -352967,41 +356531,61 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 76, + "Structural Impact": 5.4, + "Lines of Code (LOC)": 87, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 91 + "Start Line": 39, + "End Line": 125 }, { - "Function Name": "a", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "post", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 9, - "End Line": 10 + "Start Line": 19, + "End Line": 22 + }, + { + "Function Name": "test_call_valid", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 36 + }, + { + "Function Name": "test_call_invalid", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 30 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 22, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, + "Sequential Logic Declarations": 34, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 7, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 1, + "Unit Test Assertions": 3, "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -353011,7 +356595,7 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Module Dependencies (Imports)": 4, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -353036,7 +356620,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 76, + "Structural Space Indentations": 95, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -353053,15 +356637,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 3, + "Core Var Decl": 7, "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -353085,7 +356669,7 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "Direct Upstream (Fragility)": 4, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 @@ -353093,26 +356677,26 @@ "9. Extracted Dependencies": [ "fastapi", "fastapi.testclient", - "inline_snapshot" + "inline_snapshot", + "pydantic" ] }, - "python/fastapi/tests/test_additional_responses_response_class.py": { + "python/fastapi/tests/test_additional_response_extra.py": { "1. Artifact Identity": { - "Filename": "test_additional_responses_response_class.py", - "Path": "python/fastapi/tests/test_additional_responses_response_class.py", + "Filename": "test_additional_response_extra.py", + "Path": "python/fastapi/tests/test_additional_response_extra.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse, BaseModel", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1637.53, - "Y": -153.47, - "Z": 1242.05 + "X": 1743.54, + "Y": -210.35, + "Z": -1728.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -353121,10 +356705,10 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 118, - "Coding LOC": 102, + "Total LOC": 53, + "Coding LOC": 39, "Documentation LOC": 0, - "Structural Magnitude": 17.14, + "Structural Magnitude": 8.28, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -353134,11 +356718,11 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "48.77%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "8.14%", - "Concurrency Exposure": "32.3%", + "API Exposure": "6.95%", + "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", @@ -353150,8 +356734,945 @@ "5. Function Analysis": [ { "Function Name": "test_openapi_schema", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 78, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 52 + }, + { + "Function Name": "test_path_operation", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 27 + }, + { + "Function Name": "read_item", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 14 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 2, + "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": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 26, + "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": 1, + "Core Var Decl": 7, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 3, + "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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot" + ] + }, + "python/fastapi/tests/test_additional_responses_bad.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_bad.py", + "Path": "python/fastapi/tests/test_additional_responses_bad.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4641.35, + "Y": 155.59, + "Z": 1304.75 + }, + "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": 41, + "Coding LOC": 30, + "Documentation LOC": 2, + "Structural Magnitude": 6.8, + "Control Flow Ratio": "11.1%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.08 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "3.21%", + "Error & Exception Exposure": "58.49%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "5.59%", + "Concurrency Exposure": "28.22%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 38, + "End Line": 40 + }, + { + "Function Name": "a", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "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": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 20, + "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": 1, + "Core Var Decl": 4, + "Design Camel Case": 0, + "Design Snake Case": 4, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "pytest" + ] + }, + "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_custom_model_in_callback.py", + "Path": "python/fastapi/tests/test_additional_responses_custom_model_in_callback.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4112.95, + "Y": 142.25, + "Z": 1331.64 + }, + "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": 148, + "Coding LOC": 134, + "Documentation LOC": 0, + "Structural Magnitude": 17.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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "50.97%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "7.16%", + "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": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 32, + "End Line": 147 + }, + { + "Function Name": "main_route", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 25, + "End Line": 26 + }, + { + "Function Name": "callback_route", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 21 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 32, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 2, + "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": 2, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "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, + "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": 2, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "Orphaned Logic": 2, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot", + "pydantic", + "starlette.responses" + ] + }, + "python/fastapi/tests/test_additional_responses_custom_validationerror.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_custom_validationerror.py", + "Path": "python/fastapi/tests/test_additional_responses_custom_validationerror.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2712.02, + "Y": -33.61, + "Z": 2084.9 + }, + "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": 101, + "Coding LOC": 87, + "Documentation LOC": 0, + "Structural Magnitude": 13.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": 0.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "44.42%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "7.75%", + "Concurrency Exposure": "21.66%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 100 + }, + { + "Function Name": "a", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 29 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 23, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 5, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 2, + "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": 73, + "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": 1, + "Core Var Decl": 6, + "Design Camel Case": 0, + "Design Snake Case": 6, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.responses", + "fastapi.testclient", + "inline_snapshot", + "pydantic" + ] + }, + "python/fastapi/tests/test_additional_responses_default_validationerror.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_default_validationerror.py", + "Path": "python/fastapi/tests/test_additional_responses_default_validationerror.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 4725.31, + "Y": 161.51, + "Z": 1142.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": 92, + "Coding LOC": 84, + "Documentation LOC": 0, + "Structural Magnitude": 10.98, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "52.88%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "4.85%", + "Concurrency Exposure": "21.99%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 76, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 91 + }, + { + "Function Name": "a", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 9, + "End Line": 10 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 0, + "Sequential Logic Declarations": 22, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 1, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, + "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": 76, + "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": 1, + "Core Var Decl": 3, + "Design Camel Case": 0, + "Design Snake Case": 3, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 3, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi", + "fastapi.testclient", + "inline_snapshot" + ] + }, + "python/fastapi/tests/test_additional_responses_response_class.py": { + "1. Artifact Identity": { + "Filename": "test_additional_responses_response_class.py", + "Path": "python/fastapi/tests/test_additional_responses_response_class.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 1637.53, + "Y": -153.47, + "Z": 1242.05 + }, + "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": 118, + "Coding LOC": 102, + "Documentation LOC": 0, + "Structural Magnitude": 17.14, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "48.77%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "8.14%", + "Concurrency Exposure": "32.3%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "test_openapi_schema", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 78, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", @@ -384723,9 +389244,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 3402.36, - "Y": 7.28, - "Z": 226.23 + "X": 2540.93, + "Y": -103.05, + "Z": -523.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -395650,9 +400171,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2291.84, - "Y": -92.97, - "Z": 105.58 + "X": 3478.61, + "Y": 52.73, + "Z": 71.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -402924,9 +407445,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4126.68, - "Y": 121.5, - "Z": 1768.9 + "X": 4125.52, + "Y": 121.35, + "Z": 1767.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -402938,7 +407459,7 @@ "Total LOC": 19, "Coding LOC": 12, "Documentation LOC": 1, - "Structural Magnitude": 4.44, + "Structural Magnitude": 3.44, "Control Flow Ratio": "25.0%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, @@ -402951,7 +407472,7 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "0.0%", - "API Exposure": "5.59%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -402984,7 +407505,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 2, + "Exposed API / Public Exports": 1, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 1, @@ -403085,489 +407606,587 @@ } } }, - "javascript/threejs": { - "Directory Group Magnitude": 7700.5, + "zig/zls": { + "Directory Group Magnitude": 7613.62, "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "50.61%", - "Error & Exception Exposure": "72.31%", - "Tech Debt Exposure": "54.92%", - "Testing Exposure": "80.0%", - "API Exposure": "1.54%", - "Concurrency Exposure": "32.43%", - "State Flux Exposure": "83.36%", - "Commented Logic Exposure": "3.33%", + "Cognitive Load Exposure": "24.58%", + "Error & Exception Exposure": "22.16%", + "Tech Debt Exposure": "10.53%", + "Testing Exposure": "28.32%", + "API Exposure": "1.51%", + "Concurrency Exposure": "11.37%", + "State Flux Exposure": "9.18%", + "Commented Logic Exposure": "2.66%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.46%", + "Documentation Exposure": "22.15%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "javascript/threejs/BufferGeometry.js": { + "zig/zls/DocumentScope.zig": { "1. Artifact Identity": { - "Filename": "BufferGeometry.js", - "Path": "javascript/threejs/BufferGeometry.js", - "Language": "Javascript", + "Filename": "DocumentScope.zig", + "Path": "zig/zls/DocumentScope.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "EventDispatcher", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'math/Vector2.js' mimics 'math/Vector3.js'", - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8675.64, - "Y": -105.68, - "Z": -732.71 + "X": 2886.25, + "Y": -131.82, + "Z": 8302.58 }, "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": 1459, - "Coding LOC": 588, - "Documentation LOC": 377, - "Structural Magnitude": 616.46, - "Control Flow Ratio": "55.7%", - "Popularity Rank": 0, + "Total LOC": 1346, + "Coding LOC": 1130, + "Documentation LOC": 46, + "Structural Magnitude": 242.9, + "Control Flow Ratio": "76.9%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.27 + "Raw Cognitive Density": 0.407 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "44.46%", - "Error & Exception Exposure": "96.2%", - "Tech Debt Exposure": "45.97%", + "Cognitive Load Exposure": "13.44%", + "Error & Exception Exposure": "30.86%", + "Tech Debt Exposure": "16.9%", "Testing Exposure": "80.0%", - "API Exposure": "1.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "5.03%", + "API Exposure": "2.49%", + "Concurrency Exposure": "13.45%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "26.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "computeTangents", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 158, - "Control Flow Branches": 13, - "Input Parameters": 0, - "Control Flow Ratio": "61.9%", - "Start Line": 822, - "End Line": 979 + "Function Name": "nameToken", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 173, + "End Line": 223 }, { - "Function Name": "computeBoundingSphere", - "Structural Impact": 20.6, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 14, - "Input Parameters": 0, - "Control Flow Ratio": "70.0%", - "Start Line": 703, - "End Line": 813 + "Function Name": "getScopeDeclarationsConst", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1303, + "End Line": 1323 }, { - "Function Name": "toJSON", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 13, - "Input Parameters": 0, - "Control Flow Ratio": "76.5%", - "Start Line": 1212, - "End Line": 1320 + "Function Name": "getScopeChildScopesConst", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1325, + "End Line": 1345 }, { - "Function Name": "copy", - "Structural Impact": 16.5, - "Lines of Code (LOC)": 104, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 1339, - "End Line": 1442 + "Function Name": "get", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "28.6%", + "Start Line": 110, + "End Line": 119 }, { - "Function Name": "computeBoundingBox", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 12, - "Input Parameters": 0, - "Control Flow Ratio": "85.7%", - "Start Line": 628, - "End Line": 696 + "Function Name": "getScopeDeclaration", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1293, + "End Line": 1301 }, { - "Function Name": "toNonIndexed", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "52.9%", - "Start Line": 1105, - "End Line": 1205 + "Function Name": "getScopeAstNode", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1279, + "End Line": 1291 }, { - "Function Name": "setFromPoints", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 8, + "Function Name": "isContainer", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 581, - "End Line": 621 + "Control Flow Ratio": "50.0%", + "Start Line": 236, + "End Line": 241 }, { - "Function Name": "computeVertexNormals", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 91, - "Control Flow Branches": 8, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 987, - "End Line": 1077 + "Function Name": "unwrap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 162, + "End Line": 165 }, { - "Function Name": "applyMatrix4", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 5, + "Function Name": "unwrap", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 363, - "End Line": 411 + "Control Flow Ratio": "33.3%", + "Start Line": 303, + "End Line": 306 }, { - "Function Name": "convertBufferAttribute", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1107, - "End Line": 1139 + "Function Name": "eql", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 43, + "End Line": 47 }, { - "Function Name": "setIndex", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 217, - "End Line": 231 + "Function Name": "pushDeclaration", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 332, + "End Line": 337 }, { - "Function Name": "handleTriangle", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, + "Function Name": "walkNodeEnsureScope", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 540, + "End Line": 545 + }, + { + "Function Name": "walkBlockNodeKeepOpen", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 902, + "End Line": 907 + }, + { + "Function Name": "startScope", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 426, + "End Line": 426 + }, + { + "Function Name": "pushChildScope", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 872, - "End Line": 905 + "Control Flow Ratio": "0.0%", + "Start Line": 457, + "End Line": 461 }, { - "Function Name": "handleVertex", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 940, - "End Line": 960 + "Function Name": "walkNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 568, + "End Line": 572 }, { - "Function Name": "normalizeNormals", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1083, - "End Line": 1097 + "Function Name": "walkContainerDecl", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 764, + "End Line": 768 }, { - "Function Name": "addGroup", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkErrorSetNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 322, - "End Line": 332 + "Start Line": 830, + "End Line": 834 }, { - "Function Name": "translate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkFuncNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 499, - "End Line": 509 + "Start Line": 852, + "End Line": 856 }, { - "Function Name": "scale", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, + "Function Name": "walkBlockNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 521, - "End Line": 531 + "Start Line": 893, + "End Line": 897 }, { - "Function Name": "setIndirect", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, + "Function Name": "walkIfNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 247 + "Start Line": 959, + "End Line": 963 }, { - "Function Name": "setAttribute", + "Function Name": "walkCatchNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 998, + "End Line": 1002 + }, + { + "Function Name": "walkWhileNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1024, + "End Line": 1028 + }, + { + "Function Name": "walkForNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1106 + }, + { + "Function Name": "walkSwitchNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1155, + "End Line": 1159 + }, + { + "Function Name": "walkErrdeferNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1212, + "End Line": 1216 + }, + { + "Function Name": "walkOtherNode", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1254, + "End Line": 1258 + }, + { + "Function Name": "hash", "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 280, - "End Line": 286 + "Start Line": 34, + "End Line": 41 }, { - "Function Name": "constructor", + "Function Name": "getCase", "Structural Impact": 2.0, - "Lines of Code (LOC)": 146, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 198 + "Start Line": 143, + "End Line": 147 }, { - "Function Name": "setDrawRange", + "Function Name": "deinit", "Structural Impact": 2.0, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 350, - "End Line": 355 + "Start Line": 523, + "End Line": 528 }, { - "Function Name": "rotateX", + "Function Name": "walkUnaryOpNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 447 + "Start Line": 1232, + "End Line": 1232 }, { - "Function Name": "rotateY", + "Function Name": "walkBinOpNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 467 + "Start Line": 1236, + "End Line": 1236 }, { - "Function Name": "rotateZ", + "Function Name": "walkOptNodeAndOptNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 477, - "End Line": 487 + "Start Line": 1242, + "End Line": 1242 }, { - "Function Name": "lookAt", + "Function Name": "walkNodeAndOptNode", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 541, - "End Line": 551 + "Start Line": 1248, + "End Line": 1248 }, { - "Function Name": "applyQuaternion", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Function Name": "getScopeTag", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 419, - "End Line": 427 + "Start Line": 1265, + "End Line": 1270 }, { - "Function Name": "deleteAttribute", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "getScopeParent", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 294, - "End Line": 300 + "Start Line": 1272, + "End Line": 1277 }, { - "Function Name": "getAttribute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getVarDeclNode", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 271 + "Start Line": 127, + "End Line": 130 }, { - "Function Name": "hasAttribute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getFullVarDecl", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 308, - "End Line": 312 + "Start Line": 132, + "End Line": 134 }, { - "Function Name": "center", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, + "Function Name": "eql", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 558, - "End Line": 568 + "Start Line": 168, + "End Line": 170 }, { - "Function Name": "getIndex", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "init", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 205, - "End Line": 209 + "Start Line": 488, + "End Line": 488 }, { - "Function Name": "getIndirect", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "locToSmallLoc", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 254, - "End Line": 258 + "Start Line": 530, + "End Line": 535 }, { - "Function Name": "clearGroups", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "toOptional", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 337, - "End Line": 341 + "Start Line": 153, + "End Line": 155 }, { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "toOptional", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1327, - "End Line": 1331 + "Start Line": 293, + "End Line": 295 }, { - "Function Name": "dispose", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1450, - "End Line": 1454 + "Start Line": 319, + "End Line": 322 + }, + { + "Function Name": "finalize", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 384, + "End Line": 384 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 93, - "Sequential Logic Declarations": 74, - "Function Parameters": 35, - "Function/Method Declarations": 35, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 28, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 223, + "Sequential Logic Declarations": 67, + "Function Parameters": 45, + "Function/Method Declarations": 45, + "Class/Entity Declarations": 19, + "Defensive Programming Constructs": 165, + "Type/Safety Bypasses": 45, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 387, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 48, + "Exposed API / Public Exports": 41, + "State Mutations / Variable Reassignments": 46, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 38, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 2, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, + "Global State Dependencies": 12, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 11, + "Scientific & Mathematical Operations": 4, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 40, + "Pointer Arithmetic & Addressing": 53, + "Manual Memory Allocation": 1, "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": 25, + "Fatal Aborts & Exceptions": 47, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 129, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 98, - "Resource Deallocation & Cleanup": 4, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 160, + "Resource Deallocation & Cleanup": 10, + "Private / Encapsulated Scopes": 130, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 564, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1034, "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": 0, "Cloud LLM API Integrations": 0, @@ -403577,16 +408196,16 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 4, - "Core Var Decl": 136, - "Design Camel Case": 46, - "Design Snake Case": 89, - "Design Pascal Case": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 139, + "Design Camel Case": 1, + "Design Snake Case": 109, + "Design Pascal Case": 26, "Design Upper Case": 0, - "Design Short Vars": 37, + "Design Short Vars": 3, "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 13, + "Duplicate Logic": 4, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -403594,12 +408213,12 @@ "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)": 7, "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": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -403610,548 +408229,711 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "../math/Box3.js", - "../math/MathUtils.js", - "../math/Matrix3.js", - "../math/Matrix4.js", - "../math/Sphere.js", - "../math/Vector2.js", - "../math/Vector3.js", - "../utils.js", - "./BufferAttribute.js", - "./EventDispatcher.js", - "./Object3D.js" + "ast.zig", + "offsets.zig", + "std", + "tracy" ] }, - "javascript/threejs/Editor.js": { + "zig/zls/DocumentStore.zig": { "1. Artifact Identity": { - "Filename": "Editor.js", - "Path": "javascript/threejs/Editor.js", - "Language": "Javascript", + "Filename": "DocumentStore.zig", + "Path": "zig/zls/DocumentStore.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 7778.63, - "Y": -115.56, - "Z": -1197.58 + "X": 2688.97, + "Y": -190.63, + "Z": 8988.69 }, "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": 820, - "Coding LOC": 458, - "Documentation LOC": 14, - "Structural Magnitude": 616.06, - "Control Flow Ratio": "54.8%", - "Popularity Rank": 0, + "Total LOC": 2059, + "Coding LOC": 1604, + "Documentation LOC": 133, + "Structural Magnitude": 750.58, + "Control Flow Ratio": "60.9%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.016 + "Raw Cognitive Density": 0.764 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.37%", - "Error & Exception Exposure": "98.91%", - "Tech Debt Exposure": "71.89%", - "Testing Exposure": "80.0%", - "API Exposure": "2.07%", - "Concurrency Exposure": "72.74%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "25.68%", + "Error & Exception Exposure": "18.85%", + "Tech Debt Exposure": "19.03%", + "Testing Exposure": "2.42%", + "API Exposure": "1.5%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "20.14%", + "Commented Logic Exposure": "4.94%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.23%", + "Documentation Exposure": "14.38%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "addHelper", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 18, - "Input Parameters": 0, - "Control Flow Ratio": "78.3%", - "Start Line": 392, - "End Line": 476 + "Function Name": "createAndStoreDocument", + "Structural Impact": 59.0, + "Lines of Code (LOC)": 107, + "Control Flow Branches": 23, + "Input Parameters": 4, + "Control Flow Ratio": "62.2%", + "Start Line": 1567, + "End Line": 1673 }, { - "Function Name": "addObject", - "Structural Impact": 11.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, + "Function Name": "invalidateBuildFileWorker", + "Structural Impact": 42.8, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 21, + "Input Parameters": 2, + "Control Flow Ratio": "65.6%", + "Start Line": 1192, + "End Line": 1285 + }, + { + "Function Name": "loadBuildConfiguration", + "Structural Impact": 40.5, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 17, "Input Parameters": 3, + "Control Flow Ratio": "56.7%", + "Start Line": 1364, + "End Line": 1452 + }, + { + "Function Name": "publishCimportDiagnostics", + "Structural Impact": 39.3, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 20, + "Input Parameters": 2, "Control Flow Ratio": "80.0%", - "Start Line": 179, - "End Line": 207 + "Start Line": 1897, + "End Line": 1955 }, { - "Function Name": "setObjectMaterial", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 540, - "End Line": 552 + "Function Name": "loadDirectoryRecursive", + "Structural Impact": 32.4, + "Lines of Code (LOC)": 60, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 974, + "End Line": 1033 }, { - "Function Name": "fromJSON", - "Structural Impact": 7.4, + "Function Name": "readFile", + "Structural Impact": 22.5, "Lines of Code (LOC)": 34, - "Control Flow Branches": 3, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "68.8%", + "Start Line": 740, + "End Line": 773 + }, + { + "Function Name": "notifyBuildStart", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 674, - "End Line": 707 + "Control Flow Ratio": "56.2%", + "Start Line": 1112, + "End Line": 1154 }, { - "Function Name": "addMaterial", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, + "Function Name": "notifyBuildEnd", + "Structural Impact": 15.5, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 1158, + "End Line": 1190 + }, + { + "Function Name": "Lazy", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 595, + "End Line": 643 + }, + { + "Function Name": "deinit", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 251, - "End Line": 269 + "Control Flow Ratio": "87.5%", + "Start Line": 697, + "End Line": 723 }, { - "Function Name": "removeMaterial", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, + "Function Name": "buildDotZigExists", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "46.2%", + "Start Line": 1455, + "End Line": 1466 + }, + { + "Function Name": "loadBuildAssociatedConfiguration", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "44.4%", + "Start Line": 1302, + "End Line": 1325 + }, + { + "Function Name": "invalidateBuildFile", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 959, + "End Line": 970 + }, + { + "Function Name": "closeLspSyncedDocument", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 867, + "End Line": 889 + }, + { + "Function Name": "deinit", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 21, "Control Flow Branches": 3, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "75.0%", - "Start Line": 291, - "End Line": 309 + "Start Line": 562, + "End Line": 582 }, { - "Function Name": "getMaterialById", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, + "Function Name": "next", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 331, - "End Line": 349 + "Control Flow Ratio": "40.0%", + "Start Line": 676, + "End Line": 688 }, { - "Function Name": "toJSON", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 40, + "Function Name": "sendMessageToClient", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1096, + "End Line": 1110 + }, + { + "Function Name": "getHandle", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 709, - "End Line": 748 + "Input Parameters": 2, + "Control Flow Ratio": "37.5%", + "Start Line": 728, + "End Line": 735 }, { - "Function Name": "removeScript", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 15, + "Function Name": "deinit", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 154, + "End Line": 159 + }, + { + "Function Name": "getOrLoadHandleVoid", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 988, + "End Line": 998 + }, + { + "Function Name": "getOrNull", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 510, - "End Line": 524 + "Control Flow Ratio": "40.0%", + "Start Line": 628, + "End Line": 637 }, { - "Function Name": "getObjectMaterial", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "loadTrigramStore", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 11, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 526, - "End Line": 538 + "Control Flow Ratio": "66.7%", + "Start Line": 1066, + "End Line": 1076 }, { - "Function Name": "save", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "deinit", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 787, - "End Line": 799 + "Start Line": 1962, + "End Line": 1971 }, { - "Function Name": "removeObject", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 21, + "Function Name": "tryLockConfig", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 216, - "End Line": 236 + "Start Line": 78, + "End Line": 84 }, { - "Function Name": "addMaterialToRefCounter", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 19, + "Function Name": "await", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 271, - "End Line": 289 + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 589, + "End Line": 592 }, { - "Function Name": "removeMaterialFromRefCounter", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 19, + "Function Name": "deinit", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 311, - "End Line": 329 + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 607, + "End Line": 611 }, { - "Function Name": "setScene", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 29, + "Function Name": "deinit", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 147, - "End Line": 175 + "Start Line": 221, + "End Line": 233 }, { - "Function Name": "addScript", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, + "Function Name": "deinit", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 496, - "End Line": 508 + "Start Line": 325, + "End Line": 333 }, { - "Function Name": "removeHelper", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 478, - "End Line": 492 + "Function Name": "collectImports", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 482, + "End Line": 488 }, { - "Function Name": "selectByUuid", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 589, - "End Line": 603 + "Function Name": "refresh", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 406, + "End Line": 413 }, { - "Function Name": "clear", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 627, - "End Line": 670 + "Function Name": "collectIncludeDirs", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1690, + "End Line": 1695 }, { - "Function Name": "addCamera", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 366, - "End Line": 376 + "Function Name": "collectCMacros", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1757, + "End Line": 1762 }, { - "Function Name": "removeCamera", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 378, - "End Line": 388 + "Function Name": "uriFromImportStr", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1978, + "End Line": 1983 }, { - "Function Name": "selectById", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 576, - "End Line": 587 + "Function Name": "isAssociatedWith", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 99 }, { - "Function Name": "focus", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 611, - "End Line": 619 + "Function Name": "parseTree", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 463, + "End Line": 463 }, { - "Function Name": "setViewportCamera", - "Structural Impact": 3.1, + "Function Name": "getBuildFile", + "Structural Impact": 2.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 554, - "End Line": 559 + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 800, + "End Line": 805 }, { - "Function Name": "Editor", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 129, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 15, - "End Line": 143 + "Function Name": "openLspSyncedDocument", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 840, + "End Line": 840 }, { - "Function Name": "updateMatrixWorld", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 415, - "End Line": 433 + "Function Name": "refreshLspSyncedDocument", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 894, + "End Line": 894 }, { - "Function Name": "nameObject", + "Function Name": "refreshDocumentFromFileSystem", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 209, - "End Line": 214 + "Start Line": 922, + "End Line": 922 }, { - "Function Name": "setGeometryName", + "Function Name": "resolveCImport", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1790, + "End Line": 1790 + }, + { + "Function Name": "unlockConfig", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 244, - "End Line": 249 + "Start Line": 86, + "End Line": 88 }, { - "Function Name": "setMaterialName", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Function Name": "deinit", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 351, - "End Line": 356 + "Start Line": 657, + "End Line": 659 }, { - "Function Name": "execute", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 756, - "End Line": 760 + "Start Line": 666, + "End Line": 668 }, { - "Function Name": "saveArrayBuffer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "loadTrigramStores", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 801, - "End Line": 805 + "Start Line": 1035, + "End Line": 1038 }, { - "Function Name": "saveString", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "getAssociatedBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 807, - "End Line": 811 + "Start Line": 241, + "End Line": 241 }, { - "Function Name": "addGeometry", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getAssociatedCompilationUnits", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 242 + "Start Line": 337, + "End Line": 337 }, { - "Function Name": "addTexture", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "get", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 358, - "End Line": 362 + "Start Line": 613, + "End Line": 613 }, { - "Function Name": "setViewportShading", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "create", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 561, - "End Line": 566 + "Start Line": 646, + "End Line": 646 }, { - "Function Name": "select", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "create", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 570, - "End Line": 574 + "Start Line": 663, + "End Line": 663 }, { - "Function Name": "focusById", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getOrLoadHandle", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 621, - "End Line": 625 + "Start Line": 779, + "End Line": 779 }, { - "Function Name": "objectByUuid", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "getOrLoadBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 810, + "End Line": 810 + }, + { + "Function Name": "prepareBuildRunnerArgs", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1327, + "End Line": 1327 + }, + { + "Function Name": "collectPotentialBuildFiles", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1473, + "End Line": 1473 + }, + { + "Function Name": "createBuildFile", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1522, + "End Line": 1522 + }, + { + "Function Name": "getCached", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 750, - "End Line": 754 + "Start Line": 639, + "End Line": 641 }, { - "Function Name": "formatNumber", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "isBuildFile", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 813, - "End Line": 817 + "Start Line": 1287, + "End Line": 1289 }, { - "Function Name": "deselect", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isBuiltinFile", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 605, - "End Line": 609 + "Start Line": 1291, + "End Line": 1293 }, { - "Function Name": "undo", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isInStd", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 762, - "End Line": 766 + "Start Line": 1295, + "End Line": 1298 }, { - "Function Name": "redo", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "getDocumentScope", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 768, - "End Line": 772 + "Start Line": 187, + "End Line": 187 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 63, - "Sequential Logic Declarations": 52, - "Function Parameters": 46, - "Function/Method Declarations": 42, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 28, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 486, + "Sequential Logic Declarations": 312, + "Function Parameters": 59, + "Function/Method Declarations": 59, + "Class/Entity Declarations": 22, + "Defensive Programming Constructs": 323, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 409, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Exposed API / Public Exports": 45, + "State Mutations / Variable Reassignments": 158, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 101, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 18, + "Asynchronous/Concurrent Execution": 29, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 41, - "Global State Dependencies": 1, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 32, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Generic Type Abstractions": 4, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 7, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 16, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 12, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 74, + "Pointer Arithmetic & Addressing": 112, + "Manual Memory Allocation": 9, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 151, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 0, + "Bitwise Operations": 264, + "Thread Synchronization Locks": 33, + "Immutable Data Declarations": 234, + "Resource Deallocation & Cleanup": 109, + "Private / Encapsulated Scopes": 256, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 433, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1480, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -404168,15 +408950,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 43, - "Design Camel Case": 4, - "Design Snake Case": 37, - "Design Pascal Case": 1, + "Core Var Decl": 247, + "Design Camel Case": 2, + "Design Snake Case": 196, + "Design Pascal Case": 43, "Design Upper Case": 0, - "Design Short Vars": 4, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Design Short Vars": 13, + "Design Long Vars": 6, + "Duplicate Logic": 2, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -404184,7 +408966,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)": 15, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -404200,1412 +408982,847 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 13, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 5, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "./Config.js", - "./History.js", - "./Loader.js", - "./Selector.js", - "./Storage.js", - "./Strings.js", - "three" + "BuildAssociatedConfig.zig", + "DiagnosticsCollection.zig", + "DocumentScope.zig", + "TrigramStore.zig", + "Uri.zig", + "analysis.zig", + "build_runner/shared.zig", + "builtin", + "lsp", + "offsets.zig", + "std", + "tracy", + "translate_c.zig" ] }, - "javascript/threejs/GLTFLoader.js": { + "zig/zls/Server.zig": { "1. Artifact Identity": { - "Filename": "GLTFLoader.js", - "Path": "javascript/threejs/GLTFLoader.js", - "Language": "Javascript", - "Architect": "GLTFExporter", - "Indentation Style": "Tabs", - "Parent Entity": "Loader, Interpolant, GLTFCubicSplineInterpolant", + "Filename": "Server.zig", + "Path": "zig/zls/Server.zig", + "Language": "Zig", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8292.37, - "Y": -74.07, - "Z": -1119.18 + "X": 2125.03, + "Y": -185.88, + "Z": 8991.65 }, "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": 4861, - "Coding LOC": 2413, - "Documentation LOC": 613, - "Structural Magnitude": 3082.26, - "Control Flow Ratio": "66.1%", - "Popularity Rank": 0, + "Total LOC": 2030, + "Coding LOC": 1670, + "Documentation LOC": 108, + "Structural Magnitude": 1194.9, + "Control Flow Ratio": "68.6%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.529 + "Raw Cognitive Density": 0.495 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "69.16%", - "Error & Exception Exposure": "84.69%", - "Tech Debt Exposure": "46.95%", - "Testing Exposure": "80.0%", - "API Exposure": "1.63%", - "Concurrency Exposure": "100.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "4.91%", + "Cognitive Load Exposure": "17.63%", + "Error & Exception Exposure": "12.77%", + "Tech Debt Exposure": "10.38%", + "Testing Exposure": "2.56%", + "API Exposure": "0.47%", + "Concurrency Exposure": "12.42%", + "State Flux Exposure": "10.12%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "14.28%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "parse", - "Structural Impact": 77.7, - "Lines of Code (LOC)": 122, - "Control Flow Branches": 31, - "Input Parameters": 4, - "Control Flow Ratio": "86.1%", - "Start Line": 429, - "End Line": 550 + "Function Name": "initializeHandler", + "Structural Impact": 190.2, + "Lines of Code (LOC)": 244, + "Control Flow Branches": 88, + "Input Parameters": 3, + "Control Flow Ratio": "95.7%", + "Start Line": 340, + "End Line": 583 }, { - "Function Name": "_createAnimationTracks", - "Structural Impact": 71.3, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "89.7%", - "Start Line": 4514, - "End Line": 4616 + "Function Name": "sendRequestSync", + "Structural Impact": 59.9, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 25, + "Input Parameters": 4, + "Control Flow Ratio": "86.2%", + "Start Line": 1794, + "End Line": 1829 }, { - "Function Name": "getDependency", - "Structural Impact": 67.4, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 35, + "Function Name": "handleResponse", + "Structural Impact": 38.6, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 20, "Input Parameters": 2, - "Control Flow Ratio": "79.5%", - "Start Line": 2872, - "End Line": 2972 + "Control Flow Ratio": "83.3%", + "Start Line": 1974, + "End Line": 2017 }, { - "Function Name": "loadMaterial", - "Structural Impact": 50.1, - "Lines of Code (LOC)": 153, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "85.3%", - "Start Line": 3542, - "End Line": 3694 + "Function Name": "validateMessage", + "Structural Impact": 35.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 18, + "Input Parameters": 2, + "Control Flow Ratio": "69.2%", + "Start Line": 1929, + "End Line": 1972 }, { - "Function Name": "loadMesh", - "Structural Impact": 49.5, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "78.4%", - "Start Line": 3799, - "End Line": 3940 + "Function Name": "codeActionHandler", + "Structural Impact": 34.1, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 15, + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1520, + "End Line": 1562 }, { - "Function Name": "addMorphTargets", - "Structural Impact": 48.0, - "Lines of Code (LOC)": 80, - "Control Flow Branches": 21, + "Function Name": "initializedHandler", + "Structural Impact": 30.2, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 13, "Input Parameters": 3, - "Control Flow Ratio": "72.4%", - "Start Line": 2333, - "End Line": 2412 + "Control Flow Ratio": "81.2%", + "Start Line": 585, + "End Line": 629 }, { - "Function Name": "_loadNodeShallow", - "Structural Impact": 44.1, - "Lines of Code (LOC)": 146, - "Control Flow Branches": 25, - "Input Parameters": 1, - "Control Flow Ratio": "75.8%", - "Start Line": 4274, - "End Line": 4419 + "Function Name": "sendNotificationSync", + "Structural Impact": 27.9, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, + "Input Parameters": 4, + "Control Flow Ratio": "78.6%", + "Start Line": 1831, + "End Line": 1852 }, { - "Function Name": "createNodeMesh", - "Structural Impact": 40.9, - "Lines of Code (LOC)": 139, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "69.7%", - "Start Line": 1691, - "End Line": 1829 + "Function Name": "saveDocumentHandler", + "Structural Impact": 27.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 12, + "Input Parameters": 3, + "Control Flow Ratio": "70.6%", + "Start Line": 1190, + "End Line": 1223 }, { - "Function Name": "loadAccessor", - "Structural Impact": 39.2, - "Lines of Code (LOC)": 133, - "Control Flow Branches": 22, - "Input Parameters": 1, + "Function Name": "didChangeConfigurationHandler", + "Structural Impact": 25.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 11, + "Input Parameters": 3, "Control Flow Ratio": "78.6%", - "Start Line": 3071, - "End Line": 3203 + "Start Line": 939, + "End Line": 976 }, { - "Function Name": "computeBounds", - "Structural Impact": 37.5, - "Lines of Code (LOC)": 109, - "Control Flow Branches": 15, + "Function Name": "processMessage", + "Structural Impact": 25.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "83.3%", - "Start Line": 4669, - "End Line": 4777 + "Control Flow Ratio": "73.3%", + "Start Line": 1864, + "End Line": 1885 }, { - "Function Name": "loadTextureImage", - "Structural Impact": 36.6, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 16, + "Function Name": "processMessageReportError", + "Structural Impact": 24.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 3233, - "End Line": 3285 + "Control Flow Ratio": "55.6%", + "Start Line": 1887, + "End Line": 1927 }, { - "Function Name": "_loadLight", - "Structural Impact": 31.7, - "Lines of Code (LOC)": 68, - "Control Flow Branches": 19, - "Input Parameters": 1, - "Control Flow Ratio": "82.6%", - "Start Line": 694, - "End Line": 761 + "Function Name": "signatureHelpHandler", + "Structural Impact": 23.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "52.6%", + "Start Line": 1341, + "End Line": 1372 }, { - "Function Name": "assignFinalMaterial", - "Structural Impact": 29.9, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "77.3%", - "Start Line": 3439, - "End Line": 3527 + "Function Name": "didChangeWatchedFilesHandler", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "76.9%", + "Start Line": 898, + "End Line": 919 }, { - "Function Name": "constructor", - "Structural Impact": 27.9, - "Lines of Code (LOC)": 74, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "76.5%", - "Start Line": 2549, - "End Line": 2622 + "Function Name": "didChangeWorkspaceFoldersHandler", + "Structural Impact": 20.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "69.2%", + "Start Line": 921, + "End Line": 937 }, { - "Function Name": "load", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 76, + "Function Name": "inlayHintHandler", + "Structural Impact": 19.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 264, - "End Line": 339 + "Input Parameters": 3, + "Control Flow Ratio": "53.3%", + "Start Line": 1494, + "End Line": 1518 }, { - "Function Name": "loadImageSource", - "Structural Impact": 23.5, - "Lines of Code (LOC)": 88, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "52.6%", - "Start Line": 3287, - "End Line": 3374 + "Function Name": "changeDocumentHandler", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "61.5%", + "Start Line": 1166, + "End Line": 1188 }, { - "Function Name": "loadAnimation", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 90, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "70.6%", - "Start Line": 4059, - "End Line": 4148 + "Function Name": "willSaveWaitUntilHandler", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1241, + "End Line": 1261 }, { - "Function Name": "addPrimitiveAttributes", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 9, + "Function Name": "formattingHandler", + "Structural Impact": 18.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 4787, - "End Line": 4845 + "Control Flow Ratio": "57.1%", + "Start Line": 1445, + "End Line": 1460 }, { - "Function Name": "loadBufferView", - "Structural Impact": 21.7, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "63.2%", - "Start Line": 1605, - "End Line": 1671 + "Function Name": "showMessage", + "Structural Impact": 17.8, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 226, + "End Line": 267 }, { - "Function Name": "loadScene", - "Structural Impact": 21.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "61.1%", - "Start Line": 4428, - "End Line": 4512 + "Function Name": "semanticTokensRangeHandler", + "Structural Impact": 17.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1292, + "End Line": 1321 }, { - "Function Name": "assignTexture", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 42, + "Function Name": "semanticTokensFullHandler", + "Structural Impact": 17.4, + "Lines of Code (LOC)": 28, "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "70.0%", - "Start Line": 3386, - "End Line": 3427 + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1263, + "End Line": 1290 }, { - "Function Name": "extendTexture", - "Structural Impact": 19.5, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 2005, - "End Line": 2047 + "Function Name": "hoverHandler", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1409, + "End Line": 1431 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1019, - "End Line": 1071 + "Function Name": "completionHandler", + "Structural Impact": 16.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "46.7%", + "Start Line": 1323, + "End Line": 1339 }, { - "Function Name": "decodePrimitive", + "Function Name": "closeDocumentHandler", "Structural Impact": 16.8, - "Lines of Code (LOC)": 58, + "Lines of Code (LOC)": 15, "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 1929, - "End Line": 1986 + "Input Parameters": 3, + "Control Flow Ratio": "70.0%", + "Start Line": 1225, + "End Line": 1239 }, { - "Function Name": "loadNode", - "Structural Impact": 16.7, - "Lines of Code (LOC)": 79, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 4192, - "End Line": 4270 + "Function Name": "sendMessageSync", + "Structural Impact": 16.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 6, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1854, + "End Line": 1862 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 905, - "End Line": 953 + "Function Name": "documentSymbolsHandler", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "54.5%", + "Start Line": 1433, + "End Line": 1443 }, { - "Function Name": "getImageURIMimeType", - "Structural Impact": 16.0, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 10, + "Function Name": "loop", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 8, "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2533, - "End Line": 2541 - }, - { - "Function Name": "constructor", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "88.9%", - "Start Line": 1840, - "End Line": 1901 - }, - { - "Function Name": "updateMorphTargets", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 2420, - "End Line": 2457 - }, - { - "Function Name": "parse", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 66, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 2636, - "End Line": 2701 - }, - { - "Function Name": "loadSkin", - "Structural Impact": 14.5, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "63.6%", - "Start Line": 3987, - "End Line": 4050 - }, - { - "Function Name": "loadCamera", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 3949, - "End Line": 3978 + "Control Flow Ratio": "53.3%", + "Start Line": 1754, + "End Line": 1782 }, { - "Function Name": "loadGeometries", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "54.5%", - "Start Line": 3730, - "End Line": 3790 + "Function Name": "openDocumentHandler", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 1148, + "End Line": 1164 }, { - "Function Name": "_markDefs", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 2708, - "End Line": 2757 + "Function Name": "prepareRenameHandler", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1467, + "End Line": 1482 }, { - "Function Name": "extendMaterialParams", + "Function Name": "foldingRangeHandler", "Structural Impact": 12.4, - "Lines of Code (LOC)": 40, + "Lines of Code (LOC)": 9, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1099, - "End Line": 1138 + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1564, + "End Line": 1572 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 28, + "Function Name": "selectionRangeHandler", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1308, - "End Line": 1335 + "Input Parameters": 3, + "Control Flow Ratio": "55.6%", + "Start Line": 1574, + "End Line": 1582 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, + "Function Name": "removeWorkspace", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1217, - "End Line": 1240 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1458, - "End Line": 1491 - }, - { - "Function Name": "getNormalizedComponentScale", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2507, - "End Line": 2531 + "Control Flow Ratio": "80.0%", + "Start Line": 885, + "End Line": 896 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 29, + "Function Name": "formatMessage", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1410, - "End Line": 1438 - }, - { - "Function Name": "createPrimitiveKey", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2459, - "End Line": 2489 + "Control Flow Ratio": "100.0%", + "Start Line": 2019, + "End Line": 2025 }, { - "Function Name": "extendParams", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 31, + "Function Name": "renameHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "75.0%", - "Start Line": 813, - "End Line": 843 + "Start Line": 1462, + "End Line": 1465 }, { - "Function Name": "_getNodeRef", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 32, + "Function Name": "referencesHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 2795, - "End Line": 2826 - }, - { - "Function Name": "reduceAssociations", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4476, - "End Line": 4512 + "Control Flow Ratio": "75.0%", + "Start Line": 1484, + "End Line": 1487 }, { - "Function Name": "addUnknownExtensionsToUserData", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 16, + "Function Name": "documentHighlightHandler", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 3, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 2283, - "End Line": 2298 - }, - { - "Function Name": "createNodeMesh", - "Structural Impact": 8.8, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 4150, - "End Line": 4183 - }, - { - "Function Name": "loadBuffer", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3011, - "End Line": 3041 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 1511, - "End Line": 1538 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 1558, - "End Line": 1585 - }, - { - "Function Name": "extendMaterialParams", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1167, - "End Line": 1189 - }, - { - "Function Name": "extendMaterialParams", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1364, - "End Line": 1382 + "Control Flow Ratio": "75.0%", + "Start Line": 1489, + "End Line": 1492 }, { - "Function Name": "assignExtrasToUserData", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 17, + "Function Name": "isBlockingMessage", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 46, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 2306, - "End Line": 2322 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1630, + "End Line": 1675 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 13, + "Function Name": "generateDiagnostics", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, "Input Parameters": 2, "Control Flow Ratio": "60.0%", - "Start Line": 1268, - "End Line": 1280 + "Start Line": 327, + "End Line": 338 }, { - "Function Name": "constructor", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 119, - "Control Flow Branches": 0, + "Function Name": "sendManualWatchUpdate", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 253 - }, - { - "Function Name": "_markDefs", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 673, - "End Line": 692 + "Control Flow Ratio": "57.1%", + "Start Line": 784, + "End Line": 792 }, { - "Function Name": "getDependencies", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 22, + "Function Name": "create", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 33, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2981, - "End Line": 3002 + "Control Flow Ratio": "42.9%", + "Start Line": 1687, + "End Line": 1719 }, { - "Function Name": "getMaterialExtension", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 13, + "Function Name": "registerCapability", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 614, - "End Line": 626 - }, - { - "Function Name": "createNodeAttachment", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 771, - "End Line": 788 + "Control Flow Ratio": "66.7%", + "Start Line": 644, + "End Line": 662 }, { - "Function Name": "createUniqueName", + "Function Name": "requestConfiguration", "Structural Impact": 6.5, "Lines of Code (LOC)": 17, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3703, - "End Line": 3719 - }, - { - "Function Name": "interpolate_", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 2102, - "End Line": 2140 + "Control Flow Ratio": "100.0%", + "Start Line": 665, + "End Line": 681 }, { - "Function Name": "updateMappings", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 24, + "Function Name": "exitHandler", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2803, - "End Line": 2826 + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 636, + "End Line": 642 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 15, + "Function Name": "sendJsonMessageSync", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 863, - "End Line": 877 + "Control Flow Ratio": "40.0%", + "Start Line": 1784, + "End Line": 1792 }, { - "Function Name": "_addNodeRef", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, + "Function Name": "do", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 2772, - "End Line": 2784 + "Start Line": 330, + "End Line": 335 }, { - "Function Name": "extendMaterialParams", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 11, + "Function Name": "deinit", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 981, - "End Line": 991 - }, - { - "Function Name": "_getArrayFromAccessor", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 4618, - "End Line": 4639 - }, - { - "Function Name": "loadTexture", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3212, - "End Line": 3231 - }, - { - "Function Name": "_invokeAll", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2845, - "End Line": 2862 - }, - { - "Function Name": "_onError", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 295, - "End Line": 310 - }, - { - "Function Name": "_invokeOne", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2828, - "End Line": 2843 - }, - { - "Function Name": "loadBufferView", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3050, - "End Line": 3062 + "Start Line": 777, + "End Line": 782 }, { - "Function Name": "collectMorphTargets", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, + "Function Name": "destroy", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 4521, - "End Line": 4529 - }, - { - "Function Name": "constructor", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 1914, - "End Line": 1927 - }, - { - "Function Name": "getDependency", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 763, - "End Line": 769 - }, - { - "Function Name": "copySampleValue_", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2082, - "End Line": 2100 - }, - { - "Function Name": "createDefaultMaterial", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2263, - "End Line": 2281 - }, - { - "Function Name": "_createCubicSplineTrackInterpolant", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4641, - "End Line": 4658 - }, - { - "Function Name": "createAttributesKey", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2491, - "End Line": 2505 - }, - { - "Function Name": "register", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 391, - "End Line": 401 - }, - { - "Function Name": "unregister", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 409, - "End Line": 419 - }, - { - "Function Name": "InterpolantFactoryMethodGLTFCubicSpline", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4643, - "End Line": 4653 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 897, - "End Line": 903 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 973, - "End Line": 979 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1011, - "End Line": 1017 + "Start Line": 1721, + "End Line": 1732 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, + "Function Name": "keepRunning", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 1091, - "End Line": 1097 + "Start Line": 1740, + "End Line": 1745 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoTypeDefinitionHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1159, - "End Line": 1165 + "Start Line": 1382, + "End Line": 1389 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoImplementationHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1209, - "End Line": 1215 + "Start Line": 1391, + "End Line": 1398 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "gotoDeclarationHandler", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1260, - "End Line": 1266 + "Start Line": 1400, + "End Line": 1407 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "shutdownHandler", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1300, - "End Line": 1306 + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 631, + "End Line": 634 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "workspaceSymbolHandler", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 1356, - "End Line": 1362 + "Start Line": 1584, + "End Line": 1586 }, { - "Function Name": "getMaterialType", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, + "Function Name": "deinit", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1402, - "End Line": 1408 - }, - { - "Function Name": "GLTFRegistry", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 576, - "End Line": 608 + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 92, + "End Line": 95 }, { - "Function Name": "interpolate_", - "Structural Impact": 2.7, + "Function Name": "initAnalyser", + "Structural Impact": 2.5, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2148, - "End Line": 2156 + "Start Line": 269, + "End Line": 277 }, { - "Function Name": "constructor", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 5, + "Function Name": "gotoDefinitionHandler", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2076, - "End Line": 2080 + "Start Line": 1374, + "End Line": 1380 }, { - "Function Name": "parseAsync", + "Function Name": "sendToClientRequest", "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 570 + "Start Line": 164, + "End Line": 164 }, { - "Function Name": "assignAttributeAccessor", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "sendToClientInternal", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 4793, - "End Line": 4802 + "Start Line": 206, + "End Line": 206 }, { - "Function Name": "add", + "Function Name": "sendToClientResponse", "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 588, - "End Line": 592 + "Start Line": 149, + "End Line": 149 }, { - "Function Name": "constructor", + "Function Name": "sendToClientNotification", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1598, - "End Line": 1603 + "Start Line": 180, + "End Line": 180 }, { - "Function Name": "createDracoPrimitive", + "Function Name": "sendToClientResponseError", "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3736, - "End Line": 3746 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 671 - }, - { - "Function Name": "onLoad", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3331, - "End Line": 3338 - }, - { - "Function Name": "setDRACOLoader", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 348, - "End Line": 353 - }, - { - "Function Name": "setKTX2Loader", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 362, - "End Line": 367 - }, - { - "Function Name": "setMeshoptDecoder", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 376, - "End Line": 381 + "Start Line": 195, + "End Line": 195 }, { - "Function Name": "get", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "autofix", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 582, - "End Line": 586 + "Start Line": 297, + "End Line": 297 }, { - "Function Name": "remove", - "Structural Impact": 1.7, + "Function Name": "refreshBuildOnSave", + "Structural Impact": 2.0, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 594, - "End Line": 598 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 856, - "End Line": 861 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 890, - "End Line": 895 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 966, - "End Line": 971 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1009 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1084, - "End Line": 1089 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1152, - "End Line": 1157 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1202, - "End Line": 1207 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1253, - "End Line": 1258 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1293, - "End Line": 1298 + "Start Line": 794, + "End Line": 798 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "createDocumentStoreConfig", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1349, - "End Line": 1354 + "Start Line": 1136, + "End Line": 1146 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "setTransport", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1395, - "End Line": 1400 + "Start Line": 1734, + "End Line": 1738 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "autofixWorkaround", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1451, - "End Line": 1456 + "Start Line": 280, + "End Line": 289 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "handleConfiguration", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1504, - "End Line": 1509 + "Start Line": 684, + "End Line": 684 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "init", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1551, - "End Line": 1556 + "Start Line": 766, + "End Line": 766 }, { - "Function Name": "constructor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "addWorkspace", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1684, - "End Line": 1689 + "Start Line": 857, + "End Line": 857 }, { - "Function Name": "setExtensions", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "fmtMessage", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2624, - "End Line": 2628 + "Start Line": 2027, + "End Line": 2029 }, { - "Function Name": "setPlugins", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveConfiguration", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2630, - "End Line": 2634 - }, - { - "Function Name": "removeAll", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 600, - "End Line": 604 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 801, - "End Line": 805 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 807, - "End Line": 811 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1999, - "End Line": 2003 - }, - { - "Function Name": "constructor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 2060, - "End Line": 2064 - }, - { - "Function Name": "getMaterialType", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3529, - "End Line": 3533 + "Start Line": 978, + "End Line": 978 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 614, - "Sequential Logic Declarations": 315, - "Function Parameters": 207, - "Function/Method Declarations": 129, - "Class/Entity Declarations": 26, - "Defensive Programming Constructs": 247, - "Type/Safety Bypasses": 3, + "Control Flow Branches": 566, + "Sequential Logic Declarations": 259, + "Function Parameters": 71, + "Function/Method Declarations": 71, + "Class/Entity Declarations": 9, + "Defensive Programming Constructs": 330, + "Type/Safety Bypasses": 8, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 1186, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 67, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 17, + "State Mutations / Variable Reassignments": 104, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 56, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 415, + "Asynchronous/Concurrent Execution": 1, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 86, - "Global State Dependencies": 5, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 41, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 3, + "Generic Type Abstractions": 8, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 4, - "Module Dependencies (Imports)": 3, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 3, + "Metaprogramming & Reflection": 10, + "Module Dependencies (Imports)": 28, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 11, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 49, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 122, + "Pointer Arithmetic & Addressing": 80, + "Manual Memory Allocation": 33, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 11, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 14, + "Structured Telemetry & Logging": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 1, + "Fatal Aborts & Exceptions": 187, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 4, + "Bitwise Operations": 285, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 418, - "Resource Deallocation & Cleanup": 2, - "Private / Encapsulated Scopes": 0, + "Immutable Data Declarations": 190, + "Resource Deallocation & Cleanup": 50, + "Private / Encapsulated Scopes": 258, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2300, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1476, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, - "Serialization Parsing": 3, - "Regex Execution": 8, + "Serialization Parsing": 0, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -405615,15 +409832,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 546, - "Design Camel Case": 199, - "Design Snake Case": 323, - "Design Pascal Case": 8, - "Design Upper Case": 14, - "Design Short Vars": 51, - "Design Long Vars": 3, - "Duplicate Logic": 12, - "Orphaned Logic": 6, + "Core Var Decl": 250, + "Design Camel Case": 0, + "Design Snake Case": 223, + "Design Pascal Case": 23, + "Design Upper Case": 0, + "Design Short Vars": 13, + "Design Long Vars": 4, + "Duplicate Logic": 0, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -405631,7 +409848,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)": 8, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -405647,1878 +409864,2122 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 27, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 5, + "Total Downstream (Absolute Dependency Blast Radius)": 1 }, "9. Extracted Dependencies": [ - "../utils/BufferGeometryUtils.js", - "../utils/SkeletonUtils.js", - "three", - "three/addons/loaders/GLTFLoader.js" + "Config.zig", + "DiagnosticsCollection.zig", + "DocumentStore.zig", + "Uri.zig", + "analyser/analyser.zig", + "analysis.zig", + "build_options", + "build_runner/shared.zig", + "builtin", + "configuration.zig", + "diff.zig", + "features/code_actions.zig", + "features/completions.zig", + "features/diagnostics.zig", + "features/document_symbol.zig", + "features/folding_range.zig", + "features/goto.zig", + "features/hover.zig", + "features/inlay_hints.zig", + "features/references.zig", + "features/selection_range.zig", + "features/semantic_tokens.zig", + "features/signature_help.zig", + "lsp", + "offsets.zig", + "std", + "tracy" ] }, - "javascript/threejs/Matrix4.js": { + "zig/zls/analysis.zig": { "1. Artifact Identity": { - "Filename": "Matrix4.js", - "Path": "javascript/threejs/Matrix4.js", - "Language": "Javascript", + "Filename": "analysis.zig", + "Path": "zig/zls/analysis.zig", + "Language": "Zig", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", + "Folder Dominant Lang": "zig", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" + "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 8830.56, - "Y": -30.17, - "Z": -1632.92 + "X": 2417.0, + "Y": -190.97, + "Z": 8436.83 }, "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": 1315, - "Coding LOC": 597, - "Documentation LOC": 376, - "Structural Magnitude": 292.94, - "Control Flow Ratio": "44.0%", + "Total LOC": 7016, + "Coding LOC": 6099, + "Documentation LOC": 184, + "Structural Magnitude": 4134.98, + "Control Flow Ratio": "66.2%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.51 + "Raw Cognitive Density": 0.805 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.84%", - "Error & Exception Exposure": "61.0%", - "Tech Debt Exposure": "89.55%", - "Testing Exposure": "80.0%", - "API Exposure": "1.93%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "51.98%", - "Commented Logic Exposure": "5.06%", + "Cognitive Load Exposure": "45.39%", + "Error & Exception Exposure": "10.67%", + "Tech Debt Exposure": "8.72%", + "Testing Exposure": "2.51%", + "API Exposure": "1.68%", + "Concurrency Exposure": "12.2%", + "State Flux Exposure": "16.35%", + "Commented Logic Exposure": "5.29%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "29.19%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "makePerspective", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 8, - "Control Flow Ratio": "75.0%", - "Start Line": 1122, - "End Line": 1166 + "Function Name": "resolveTypeOfNodeUncached", + "Structural Impact": 799.4, + "Lines of Code (LOC)": 1092, + "Control Flow Branches": 429, + "Input Parameters": 2, + "Control Flow Ratio": "63.4%", + "Start Line": 1980, + "End Line": 3071 }, { - "Function Name": "makeOrthographic", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 8, - "Control Flow Ratio": "75.0%", - "Start Line": 1182, - "End Line": 1226 + "Function Name": "resolveExpressionTypeFromAncestors", + "Structural Impact": 311.9, + "Lines of Code (LOC)": 424, + "Control Flow Branches": 129, + "Input Parameters": 4, + "Control Flow Ratio": "62.0%", + "Start Line": 6445, + "End Line": 6868 }, { - "Function Name": "makeRotationFromEuler", - "Structural Impact": 23.0, - "Lines of Code (LOC)": 121, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "91.7%", - "Start Line": 338, - "End Line": 458 + "Function Name": "getFieldAccessType", + "Structural Impact": 216.5, + "Lines of Code (LOC)": 215, + "Control Flow Branches": 91, + "Input Parameters": 4, + "Control Flow Ratio": "65.0%", + "Start Line": 4997, + "End Line": 5211 }, { - "Function Name": "lookAt", - "Structural Impact": 12.3, + "Function Name": "resolveType", + "Structural Impact": 147.4, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 80, + "Input Parameters": 2, + "Control Flow Ratio": "77.7%", + "Start Line": 5901, + "End Line": 6042 + }, + { + "Function Name": "collectDeclarationsOfContainer", + "Structural Impact": 82.8, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 31, + "Input Parameters": 5, + "Control Flow Ratio": "91.2%", + "Start Line": 6046, + "End Line": 6133 + }, + { + "Function Name": "eql", + "Structural Impact": 75.5, + "Lines of Code (LOC)": 90, + "Control Flow Branches": 40, + "Input Parameters": 2, + "Control Flow Ratio": "53.3%", + "Start Line": 3487, + "End Line": 3576 + }, + { + "Function Name": "lookupSymbolFieldInit", + "Structural Impact": 68.7, + "Lines of Code (LOC)": 51, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "66.7%", + "Start Line": 6380, + "End Line": 6430 + }, + { + "Function Name": "resolveLangrefType", + "Structural Impact": 60.3, + "Lines of Code (LOC)": 63, + "Control Flow Branches": 32, + "Input Parameters": 2, + "Control Flow Ratio": "68.1%", + "Start Line": 4873, + "End Line": 4935 + }, + { + "Function Name": "resolveBindingOfNodeUncached", + "Structural Impact": 58.1, + "Lines of Code (LOC)": 88, + "Control Flow Branches": 30, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 3073, + "End Line": 3160 + }, + { + "Function Name": "resolveVarDeclAlias", + "Structural Impact": 56.1, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 29, + "Input Parameters": 2, + "Control Flow Ratio": "70.7%", + "Start Line": 667, + "End Line": 748 + }, + { + "Function Name": "resolveFunctionTypeFromCall", + "Structural Impact": 56.0, "Lines of Code (LOC)": 46, - "Control Flow Branches": 4, + "Control Flow Branches": 23, + "Input Parameters": 4, + "Control Flow Ratio": "85.2%", + "Start Line": 1825, + "End Line": 1870 + }, + { + "Function Name": "resolveArrayCat", + "Structural Impact": 49.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 23, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 483, - "End Line": 528 + "Control Flow Ratio": "82.1%", + "Start Line": 1394, + "End Line": 1417 }, { - "Function Name": "constructor", - "Structural Impact": 9.4, + "Function Name": "lookupSymbol", + "Structural Impact": 46.0, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 21, + "Input Parameters": 3, + "Control Flow Ratio": "70.0%", + "Start Line": 4514, + "End Line": 4552 + }, + { + "Function Name": "resolveCallsiteReferences", + "Structural Impact": 42.1, + "Lines of Code (LOC)": 80, + "Control Flow Branches": 21, + "Input Parameters": 2, + "Control Flow Ratio": "63.6%", + "Start Line": 1744, + "End Line": 1823 + }, + { + "Function Name": "getSymbolFieldAccessesArrayList", + "Structural Impact": 40.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 12, + "Input Parameters": 8, + "Control Flow Ratio": "92.3%", + "Start Line": 6922, + "End Line": 6947 + }, + { + "Function Name": "resolveReturnValueOfFuncNode", + "Structural Impact": 31.8, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 14, + "Input Parameters": 3, + "Control Flow Ratio": "58.3%", + "Start Line": 837, + "End Line": 872 + }, + { + "Function Name": "firstParamIs", + "Structural Impact": 30.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 13, + "Input Parameters": 3, + "Control Flow Ratio": "61.9%", + "Start Line": 448, + "End Line": 489 + }, + { + "Function Name": "resolveFieldAccessBinding", + "Structural Impact": 27.1, "Lines of Code (LOC)": 23, - "Control Flow Branches": 1, - "Input Parameters": 16, - "Control Flow Ratio": "100.0%", - "Start Line": 79, - "End Line": 101 + "Control Flow Branches": 12, + "Input Parameters": 3, + "Control Flow Ratio": "70.6%", + "Start Line": 756, + "End Line": 778 }, { - "Function Name": "decompose", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 2, + "Function Name": "getSymbolFieldAccessesHighlight", + "Structural Impact": 27.1, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 8, + "Input Parameters": 7, + "Control Flow Ratio": "66.7%", + "Start Line": 6949, + "End Line": 6980 + }, + { + "Function Name": "fromSlice", + "Structural Impact": 25.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "40.0%", - "Start Line": 1053, - "End Line": 1106 + "Control Flow Ratio": "84.6%", + "Start Line": 1039, + "End Line": 1069 }, { - "Function Name": "makeTranslation", - "Structural Impact": 7.5, + "Function Name": "createErrorUnion", + "Structural Impact": 25.4, "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, + "Control Flow Branches": 11, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 810, - "End Line": 838 + "Control Flow Ratio": "84.6%", + "Start Line": 3391, + "End Line": 3419 }, { - "Function Name": "setPosition", - "Structural Impact": 7.0, + "Function Name": "getDocCommentTokenIndex", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "76.5%", + "Start Line": 108, + "End Line": 127 + }, + { + "Function Name": "resolveUnionTag", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 939, + "End Line": 966 + }, + { + "Function Name": "createArray", + "Structural Impact": 23.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, + "Input Parameters": 4, + "Control Flow Ratio": "81.8%", + "Start Line": 3334, + "End Line": 3360 + }, + { + "Function Name": "instanceStdBuiltinType", + "Structural Impact": 23.6, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "63.2%", + "Start Line": 4939, + "End Line": 4960 + }, + { + "Function Name": "resolveStructInitType", + "Structural Impact": 23.1, "Lines of Code (LOC)": 21, - "Control Flow Branches": 2, + "Control Flow Branches": 10, "Input Parameters": 3, "Control Flow Ratio": "66.7%", - "Start Line": 683, - "End Line": 703 + "Start Line": 6885, + "End Line": 6905 }, { - "Function Name": "extractBasis", - "Structural Impact": 5.0, + "Function Name": "drain", + "Structural Impact": 22.9, "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 239, - "End Line": 257 + "Control Flow Ratio": "71.4%", + "Start Line": 352, + "End Line": 370 }, { - "Function Name": "equals", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1234, - "End Line": 1247 + "Function Name": "resolveArrayMult", + "Structural Impact": 22.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "76.9%", + "Start Line": 1381, + "End Line": 1392 }, { - "Function Name": "set", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 16, - "Control Flow Ratio": "0.0%", - "Start Line": 125, - "End Line": 136 + "Function Name": "resolveImportString", + "Structural Impact": 21.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "64.3%", + "Start Line": 4845, + "End Line": 4871 }, { - "Function Name": "extractRotation", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 1, + "Function Name": "createPointer", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "77.8%", + "Start Line": 3302, + "End Line": 3332 + }, + { + "Function Name": "isGeneric", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 55, + "Control Flow Branches": 12, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 289, - "End Line": 326 + "Control Flow Ratio": "50.0%", + "Start Line": 3578, + "End Line": 3632 }, { - "Function Name": "invert", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 712, - "End Line": 763 + "Function Name": "isConditional", + "Structural Impact": 20.2, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3977, + "End Line": 4013 }, { - "Function Name": "fromArray", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1256, - "End Line": 1266 + "Function Name": "typeDefinitionToken", + "Structural Impact": 20.2, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 4465, + "End Line": 4501 }, { - "Function Name": "compose", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 0, + "Function Name": "resolveCoercedIPValue", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1038 + "Control Flow Ratio": "44.4%", + "Start Line": 1428, + "End Line": 1448 }, { - "Function Name": "multiplyMatrices", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 0, + "Function Name": "resolveStringLiteral", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 562, - "End Line": 600 + "Control Flow Ratio": "60.0%", + "Start Line": 1536, + "End Line": 1570 }, { - "Function Name": "makeShear", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 6, - "Control Flow Ratio": "0.0%", - "Start Line": 980, - "End Line": 993 + "Function Name": "createTuple", + "Structural Impact": 18.3, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 9, + "Input Parameters": 2, + "Control Flow Ratio": "69.2%", + "Start Line": 3362, + "End Line": 3380 }, { - "Function Name": "toArray", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, + "Function Name": "hashWithHasher", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1276, - "End Line": 1302 + "Control Flow Ratio": "100.0%", + "Start Line": 3421, + "End Line": 3485 }, { - "Function Name": "makeRotationAxis", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 923, - "End Line": 944 + "Function Name": "pointerElementType", + "Structural Impact": 17.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "53.8%", + "Start Line": 4423, + "End Line": 4443 }, { - "Function Name": "makeScale", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "definitionToken", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 7, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 954, - "End Line": 967 + "Control Flow Ratio": "70.0%", + "Start Line": 5694, + "End Line": 5708 }, { - "Function Name": "makeBasis", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, + "Function Name": "stringLiteralContentLoc", + "Structural Impact": 16.7, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 5272, + "End Line": 5294 + }, + { + "Function Name": "resolveUnionTagAccess", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 267, - "End Line": 278 + "Control Flow Ratio": "54.5%", + "Start Line": 968, + "End Line": 982 }, { - "Function Name": "setFromMatrix3", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 229 + "Function Name": "writeAll", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "87.5%", + "Start Line": 372, + "End Line": 385 }, { - "Function Name": "makeRotationX", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 847, - "End Line": 862 + "Function Name": "isInstanceCall", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "71.4%", + "Start Line": 418, + "End Line": 437 }, { - "Function Name": "makeRotationY", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, + "Function Name": "resolveErrorSetIPIndex", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "53.8%", + "Start Line": 1572, + "End Line": 1581 + }, + { + "Function Name": "isConst", + "Structural Impact": 13.7, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 871, - "End Line": 886 + "Control Flow Ratio": "46.7%", + "Start Line": 5763, + "End Line": 5810 }, { - "Function Name": "makeRotationZ", - "Structural Impact": 2.2, + "Function Name": "findReturnStatementInternal", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 804, + "End Line": 822 + }, + { + "Function Name": "pointerSize", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 4411, + "End Line": 4421 + }, + { + "Function Name": "isNamespace", + "Structural Impact": 10.7, "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 895, - "End Line": 910 + "Control Flow Ratio": "46.2%", + "Start Line": 4298, + "End Line": 4313 }, { - "Function Name": "copy", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Function Name": "next", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 175, - "End Line": 187 + "Control Flow Ratio": "50.0%", + "Start Line": 6165, + "End Line": 6191 }, { - "Function Name": "scale", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 771, - "End Line": 783 + "Function Name": "resolveBindingOfNodeInternal", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1960, + "End Line": 1978 }, { - "Function Name": "copyPosition", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 196, - "End Line": 206 + "Function Name": "getSymbolEnumLiteral", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 6870, + "End Line": 6883 }, { - "Function Name": "multiplyScalar", - "Structural Impact": 2.0, + "Function Name": "resolveExpressionType", + "Structural Impact": 9.5, "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 608, - "End Line": 619 + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 6432, + "End Line": 6443 }, { - "Function Name": "determinant", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 628, - "End Line": 650 + "Function Name": "resolveInternPoolValue", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1450, + "End Line": 1460 }, { - "Function Name": "transpose", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 672 + "Function Name": "isStructType", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 4286, + "End Line": 4296 }, { - "Function Name": "identity", - "Structural Impact": 1.7, + "Function Name": "isErrorSetType", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 4343, + "End Line": 4352 + }, + { + "Function Name": "innermostScopeAtIndexWithTag", + "Structural Impact": 8.7, "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 156 + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 6221, + "End Line": 6234 }, { - "Function Name": "makeRotationFromQuaternion", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 468, - "End Line": 472 + "Function Name": "getSymbolFieldAccesses", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 6, + "Control Flow Ratio": "40.0%", + "Start Line": 6908, + "End Line": 6920 }, { - "Function Name": "multiply", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "resolveOptionalIPValue", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 1419, + "End Line": 1426 + }, + { + "Function Name": "isPublic", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 536, - "End Line": 540 + "Control Flow Ratio": "57.1%", + "Start Line": 5845, + "End Line": 5869 }, { - "Function Name": "premultiply", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "isGenericFunc", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 548, - "End Line": 552 + "Control Flow Ratio": "57.1%", + "Start Line": 4381, + "End Line": 4393 }, { - "Function Name": "getMaxScaleOnAxis", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 790, - "End Line": 800 + "Function Name": "createOptional", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 3382, + "End Line": 3389 }, { - "Function Name": "clone", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 163, - "End Line": 167 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 40, - "Sequential Logic Declarations": 51, - "Function Parameters": 37, - "Function/Method Declarations": 37, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 19, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 86, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 40, - "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": 1, - "Module Dependencies (Imports)": 2, - "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": 10, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 98, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 582, - "Structural Space Indentations": 0, - "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": 1, - "Core Var Decl": 140, - "Design Camel Case": 12, - "Design Snake Case": 128, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 89, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 27, - "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": 1, - "Commented-Out Executable Logic": 1, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../constants.js", - "./Vector3.js" - ] - }, - "javascript/threejs/WebGLProgram.js": { - "1. Artifact Identity": { - "Filename": "WebGLProgram.js", - "Path": "javascript/threejs/WebGLProgram.js", - "Language": "Javascript", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "javascript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" - }, - "2. Topological Coordinates": { - "X": 8380.39, - "Y": -88.2, - "Z": -1633.93 - }, - "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": 1029, - "Coding LOC": 621, - "Documentation LOC": 30, - "Structural Magnitude": 684.02, - "Control Flow Ratio": "77.6%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.852 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "60.09%", - "Error & Exception Exposure": "50.0%", - "Tech Debt Exposure": "22.59%", - "Testing Exposure": "80.0%", - "API Exposure": "0.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "50.39%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.87%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Function Name": "getContainerKind", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 4269, + "End Line": 4280 + }, { - "Function Name": "WebGLProgram", - "Structural Impact": 455.6, - "Lines of Code (LOC)": 615, - "Control Flow Branches": 189, - "Input Parameters": 4, - "Control Flow Ratio": "93.6%", - "Start Line": 412, - "End Line": 1026 + "Function Name": "resolveFieldAccess", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 751, + "End Line": 754 }, { - "Function Name": "onFirstUse", - "Structural Impact": 24.5, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 13, + "Function Name": "resolveIntegerLiteral", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1462, + "End Line": 1465 + }, + { + "Function Name": "resolveDeclLiteralResultType", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "86.7%", - "Start Line": 856, - "End Line": 949 + "Control Flow Ratio": "60.0%", + "Start Line": 4361, + "End Line": 4371 }, { - "Function Name": "getShaderErrors", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 58, - "End Line": 82 + "Function Name": "isNoreturnType", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 4402, + "End Line": 4409 }, { - "Function Name": "generatePrecision", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 5, + "Function Name": "isMetaType", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 306, - "End Line": 343 + "Control Flow Ratio": "50.0%", + "Start Line": 4335, + "End Line": 4341 }, { - "Function Name": "fetchAttributeLocations", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 4, + "Function Name": "pop", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 178, - "End Line": 206 + "Control Flow Ratio": "100.0%", + "Start Line": 5333, + "End Line": 5340 }, { - "Function Name": "getEncodingComponents", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 4, - "Input Parameters": 1, + "Function Name": "createPointerType", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, "Control Flow Ratio": "50.0%", - "Start Line": 36, - "End Line": 56 + "Start Line": 3781, + "End Line": 3792 }, { - "Function Name": "includeReplacer", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, + "Function Name": "withoutIPIndex", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 253, - "End Line": 276 + "Control Flow Ratio": "66.7%", + "Start Line": 3878, + "End Line": 3883 }, { - "Function Name": "generateDefines", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 160, - "End Line": 176 + "Function Name": "compare", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 6175, + "End Line": 6180 }, { - "Function Name": "handleSource", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 18, + "Function Name": "getFunctionSignature", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 158, + "End Line": 162 + }, + { + "Function Name": "resolveInstanceOfNode", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 32 + "Start Line": 1936, + "End Line": 1939 }, { - "Function Name": "loopReplacer", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 15, + "Function Name": "resolveTypeOfNode", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1943, + "End Line": 1946 + }, + { + "Function Name": "resolveTypeOfNodeInternal", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1948, + "End Line": 1951 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 3846, + "End Line": 3850 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 4838, + "End Line": 4842 + }, + { + "Function Name": "eql", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 5658, + "End Line": 5662 + }, + { + "Function Name": "createArrayType", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 288, - "End Line": 302 + "Control Flow Ratio": "50.0%", + "Start Line": 3794, + "End Line": 3804 }, { - "Function Name": "generateVertexExtensions", + "Function Name": "next", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 4186, + "End Line": 4195 + }, + { + "Function Name": "loc", "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 5241, + "End Line": 5265 + }, + { + "Function Name": "allDigits", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1374, + "End Line": 1379 + }, + { + "Function Name": "createErrorUnionType", + "Structural Impact": 4.5, "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 3820, + "End Line": 3829 + }, + { + "Function Name": "ipIndex", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "66.7%", - "Start Line": 149, - "End Line": 158 + "Start Line": 3871, + "End Line": 3876 }, { - "Function Name": "generateEnvMapTypeDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isRoot", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 362, - "End Line": 368 + "Start Line": 4258, + "End Line": 4263 }, { - "Function Name": "generateEnvMapModeDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isTaggedUnion", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4327, + "End Line": 4332 + }, + { + "Function Name": "isEnumLiteral", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 374, - "End Line": 380 + "Start Line": 4354, + "End Line": 4359 }, { - "Function Name": "generateEnvMapBlendingDefine", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, + "Function Name": "isTypeFunc", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4373, + "End Line": 4378 + }, + { + "Function Name": "isFunc", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4395, + "End Line": 4400 + }, + { + "Function Name": "fromIP", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 388, - "End Line": 394 + "Start Line": 3885, + "End Line": 3892 }, { - "Function Name": "getToneMappingFunction", + "Function Name": "eql", "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 4975, + "End Line": 4979 + }, + { + "Function Name": "hash", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 110, - "End Line": 123 + "Control Flow Ratio": "33.3%", + "Start Line": 3639, + "End Line": 3647 }, { - "Function Name": "generateCubeUVSize", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, + "Function Name": "isMetaType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 396, - "End Line": 410 + "Start Line": 646, + "End Line": 651 }, { - "Function Name": "generateShadowMapTypeDefine", + "Function Name": "createTupleType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3806, + "End Line": 3811 + }, + { + "Function Name": "createOptionalType", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3813, + "End Line": 3818 + }, + { + "Function Name": "isTypeFunction", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 654, + "End Line": 657 + }, + { + "Function Name": "eql", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 4991, + "End Line": 4994 + }, + { + "Function Name": "isCaptureByRef", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 5812, + "End Line": 5829 + }, + { + "Function Name": "writeString", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "100.0%", + "Start Line": 4574, + "End Line": 4576 + }, + { + "Function Name": "init", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 48, + "End Line": 64 + }, + { + "Function Name": "toNode", "Structural Impact": 3.1, "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 4827, + "End Line": 4831 + }, + { + "Function Name": "peek", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 350, - "End Line": 354 + "Start Line": 5325, + "End Line": 5330 }, { - "Function Name": "replaceLightNums", + "Function Name": "collectAllSymbolsAtSourceIndex", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 6136, + "End Line": 6144 + }, + { + "Function Name": "eql", "Structural Impact": 2.6, - "Lines of Code (LOC)": 18, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 231 + "Start Line": 3926, + "End Line": 3932 }, { - "Function Name": "getUniforms", + "Function Name": "getPositionContext", "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 955, - "End Line": 966 + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 5355, + "End Line": 5361 }, { - "Function Name": "getAttributes", + "Function Name": "eql", "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 972, - "End Line": 983 + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 7007, + "End Line": 7013 }, { - "Function Name": "getTexelEncodingFunction", + "Function Name": "renderBuiltinFunctionSignature", "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 98 + "Start Line": 392, + "End Line": 397 }, { - "Function Name": "isReady", + "Function Name": "getVariableSignature", "Structural Impact": 2.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 990, - "End Line": 1000 + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 491, + "End Line": 496 }, { - "Function Name": "replaceClippingPlaneNums", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "resolveGenericTypeInternal", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 233, - "End Line": 239 + "Start Line": 786, + "End Line": 791 }, { - "Function Name": "getLuminanceFunction", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Function Name": "resolveGeneric", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 147 + "Start Line": 3655, + "End Line": 3660 }, { - "Function Name": "filterEmptyLine", - "Structural Impact": 1.7, + "Function Name": "eql", + "Structural Impact": 2.5, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 212 + "Start Line": 3864, + "End Line": 3868 }, { - "Function Name": "resolveIncludes", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "rawStringify", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 245, - "End Line": 249 + "Start Line": 4583, + "End Line": 4588 }, { - "Function Name": "unrollLoops", - "Structural Impact": 1.7, + "Function Name": "eql", + "Structural Impact": 2.5, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 286 + "Start Line": 5672, + "End Line": 5676 }, { - "Function Name": "destroy", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 8, + "Function Name": "lookupSymbolGlobal", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 1004, - "End Line": 1011 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 229, - "Sequential Logic Declarations": 66, - "Function Parameters": 29, - "Function/Method Declarations": 28, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 38, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 70, - "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": 4, - "Global State Dependencies": 3, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 6, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 8, - "Authorship Metadata": 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": 1, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 5, - "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": 1, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 65, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 204, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 549, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 18, - "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": 1, - "Core Var Decl": 98, - "Design Camel Case": 64, - "Design Snake Case": 33, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 9, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "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)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "../../constants.js", - "../../math/ColorManagement.js", - "../../math/Matrix3.js", - "../../math/Vector3.js", - "../../utils.js", - "../shaders/ShaderChunk.js", - "./WebGLShader.js", - "./WebGLUniforms.js" - ] - }, - "javascript/threejs/WebGLRenderer.js": { - "1. Artifact Identity": { - "Filename": "WebGLRenderer.js", - "Path": "javascript/threejs/WebGLRenderer.js", - "Language": "Javascript", - "Architect": "the renderer", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, - "Alert": "TYPOSQUATTING THREAT: 'math/Vector4.js' mimics 'math/Vector3.js'", - "Folder Dominant Lang": "javascript", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .js)" - }, - "2. Topological Coordinates": { - "X": 7991.98, - "Y": -96.13, - "Z": -1037.69 - }, - "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": 3639, - "Coding LOC": 1628, - "Documentation LOC": 734, - "Structural Magnitude": 2408.76, - "Control Flow Ratio": "77.2%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.099 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.74%", - "Error & Exception Exposure": "43.07%", - "Tech Debt Exposure": "52.57%", - "Testing Exposure": "80.0%", - "API Exposure": "1.69%", - "Concurrency Exposure": "21.86%", - "State Flux Exposure": "97.79%", - "Commented Logic Exposure": "4.97%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 6312, + "End Line": 6317 + }, { - "Function Name": "constructor", - "Structural Impact": 642.0, - "Lines of Code (LOC)": 2545, - "Control Flow Branches": 363, - "Input Parameters": 1, - "Control Flow Ratio": "80.5%", - "Start Line": 70, - "End Line": 2614 + "Function Name": "of", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 6987, + "End Line": 6993 }, { - "Function Name": "setProgram", - "Structural Impact": 374.1, - "Lines of Code (LOC)": 428, - "Control Flow Branches": 143, - "Input Parameters": 5, - "Control Flow Ratio": "94.7%", - "Start Line": 2295, - "End Line": 2722 + "Function Name": "collectDocComments", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 129 }, { - "Function Name": "copyTextureToTexture", - "Structural Impact": 141.4, - "Lines of Code (LOC)": 235, - "Control Flow Branches": 48, - "Input Parameters": 6, - "Control Flow Ratio": "90.6%", - "Start Line": 3205, - "End Line": 3439 + "Function Name": "iterateLabels", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 6202, + "End Line": 6202 }, { - "Function Name": "renderBufferDirect", - "Structural Impact": 108.5, - "Lines of Code (LOC)": 159, - "Control Flow Branches": 37, - "Input Parameters": 6, - "Control Flow Ratio": "78.7%", - "Start Line": 1175, - "End Line": 1333 + "Function Name": "rawStringifyParameter", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 186 }, { - "Function Name": "render", - "Structural Impact": 94.2, - "Lines of Code (LOC)": 221, - "Control Flow Branches": 47, - "Input Parameters": 2, - "Control Flow Ratio": "92.2%", - "Start Line": 1600, - "End Line": 1820 + "Function Name": "rawStringifyFunction", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 248, + "End Line": 252 }, { - "Function Name": "projectObject", - "Structural Impact": 81.7, - "Lines of Code (LOC)": 113, - "Control Flow Branches": 33, - "Input Parameters": 4, - "Control Flow Ratio": "91.7%", - "Start Line": 1822, - "End Line": 1934 + "Function Name": "next", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1878, + "End Line": 1882 }, { - "Function Name": "setRenderTarget", - "Structural Impact": 80.4, - "Lines of Code (LOC)": 168, - "Control Flow Branches": 35, + "Function Name": "eql", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "87.5%", - "Start Line": 2823, - "End Line": 2990 + "Control Flow Ratio": "0.0%", + "Start Line": 3649, + "End Line": 3652 }, { - "Function Name": "getProgram", - "Structural Impact": 51.8, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 22, + "Function Name": "lookupLabel", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 2142, - "End Line": 2257 + "Control Flow Ratio": "0.0%", + "Start Line": 6290, + "End Line": 6294 }, { - "Function Name": "readRenderTargetPixels", - "Structural Impact": 51.2, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 15, - "Input Parameters": 8, - "Control Flow Ratio": "78.9%", - "Start Line": 3004, - "End Line": 3068 + "Function Name": "lookupSymbolContainer", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 6355, + "End Line": 6359 }, { - "Function Name": "readRenderTargetPixelsAsync", - "Structural Impact": 48.9, - "Lines of Code (LOC)": 78, - "Control Flow Branches": 14, - "Input Parameters": 8, - "Control Flow Ratio": "82.4%", - "Start Line": 3086, - "End Line": 3163 + "Function Name": "init", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 338, + "End Line": 350 }, { - "Function Name": "renderTransmissionPass", - "Structural Impact": 44.2, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 16, - "Input Parameters": 4, - "Control Flow Ratio": "84.2%", - "Start Line": 1960, - "End Line": 2082 + "Function Name": "hash", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 4967, + "End Line": 4973 }, { - "Function Name": "compile", - "Structural Impact": 38.6, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 16, + "Function Name": "iterateEnclosingScopes", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6194, + "End Line": 6200 + }, + { + "Function Name": "hash", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6998, + "End Line": 7005 + }, + { + "Function Name": "getDocCommentsBeforeToken", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "84.2%", - "Start Line": 1371, - "End Line": 1462 + "Control Flow Ratio": "0.0%", + "Start Line": 77, + "End Line": 77 }, { - "Function Name": "clear", - "Structural Impact": 23.8, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 9, + "Function Name": "getDocComments", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 944, - "End Line": 1018 + "Control Flow Ratio": "0.0%", + "Start Line": 83, + "End Line": 83 }, { - "Function Name": "renderObject", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "100.0%", - "Start Line": 2111, - "End Line": 2140 + "Function Name": "trimCommonIndentation", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 583, + "End Line": 583 }, { - "Function Name": "renderScene", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 1936, - "End Line": 1958 + "Function Name": "resolveGenericType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 780, + "End Line": 780 }, { - "Function Name": "renderObjects", - "Structural Impact": 13.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, + "Function Name": "resolveOrelseType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 2084, - "End Line": 2109 + "Control Flow Ratio": "0.0%", + "Start Line": 897, + "End Line": 897 }, { - "Function Name": "compileAsync", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 4, + "Function Name": "resolveAddressOf", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1478, - "End Line": 1536 + "Control Flow Ratio": "0.0%", + "Start Line": 909, + "End Line": 909 }, { - "Function Name": "initTexture", - "Structural Impact": 12.5, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 3464, - "End Line": 3486 + "Function Name": "resolveUnwrapErrorUnionType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 917, + "End Line": 917 }, { - "Function Name": "setSize", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, + "Function Name": "resolveBracketAccessType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 650, - "End Line": 680 + "Control Flow Ratio": "0.0%", + "Start Line": 1076, + "End Line": 1076 }, { - "Function Name": "setEffects", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 726, - "End Line": 752 + "Function Name": "resolveBracketAccess", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1133, + "End Line": 1133 }, { - "Function Name": "prepareMaterial", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 4, + "Function Name": "resolvePropertyType", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 1337, - "End Line": 1357 + "Control Flow Ratio": "0.0%", + "Start Line": 1246, + "End Line": 1246 }, { - "Function Name": "materialNeedsLights", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 2742, - "End Line": 2748 + "Function Name": "coerceIP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1583, + "End Line": 1583 }, { - "Function Name": "setViewport", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 787, - "End Line": 801 + "Function Name": "resolvePeerTypes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1593, + "End Line": 1593 }, { - "Function Name": "setScissor", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 824, - "End Line": 838 + "Function Name": "resolvePeerTypesIP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1608, + "End Line": 1608 }, { - "Function Name": "setRenderTargetTextures", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 2, + "Function Name": "resolvePeerErrorSets", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 2784, - "End Line": 2802 + "Control Flow Ratio": "0.0%", + "Start Line": 1614, + "End Line": 1614 }, { - "Function Name": "copyFramebufferToTexture", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, + "Function Name": "resolvePeerTypesInternal", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 3172, - "End Line": 3187 + "Control Flow Ratio": "0.0%", + "Start Line": 1627, + "End Line": 1627 }, { - "Function Name": "releaseMaterialProgramReferences", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1151, - "End Line": 1171 + "Function Name": "resolveBindingOfNode", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1953, + "End Line": 1958 }, { - "Function Name": "initGLContext", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 423, - "End Line": 538 + "Function Name": "of", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3166, + "End Line": 3171 }, { - "Function Name": "checkMaterialsReady", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1487, - "End Line": 1516 + "Function Name": "hash", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3920, + "End Line": 3924 }, { - "Function Name": "getUniformList", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2259, - "End Line": 2270 + "Function Name": "getAllTypesWithHandlesArraySet", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4016, + "End Line": 4016 }, { - "Function Name": "setPixelRatio", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 619, - "End Line": 627 + "Function Name": "stringifyTypeOf", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4554, + "End Line": 4554 }, { - "Function Name": "initRenderTarget", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 3448, - "End Line": 3456 + "Function Name": "stringifyTypeVal", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 4564, + "End Line": 4564 }, { - "Function Name": "setAnimationLoop", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1572, - "End Line": 1579 + "Function Name": "push", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 5321, + "End Line": 5321 }, { - "Function Name": "onAnimationFrame", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1542, - "End Line": 1546 + "Function Name": "tokenLocAppend", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 5343, + "End Line": 5348 }, { - "Function Name": "updateCommonMaterialProperties", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, + "Function Name": "hash", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2272, - "End Line": 2293 + "Start Line": 5665, + "End Line": 5670 }, { - "Function Name": "setDrawingBufferSize", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 13, + "Function Name": "innermostScopeAtIndex", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 6214, + "End Line": 6219 + }, + { + "Function Name": "innermostContainer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 707, - "End Line": 719 + "Start Line": 6236, + "End Line": 6236 }, { - "Function Name": "markUniformsLightsNeedsUpdate", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, + "Function Name": "findReturnStatement", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2726, - "End Line": 2740 + "Start Line": 824, + "End Line": 827 }, { - "Function Name": "forceContextLoss", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 586, - "End Line": 591 + "Function Name": "hashWithHasher", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3841, + "End Line": 3844 }, { - "Function Name": "forceContextRestore", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 596, - "End Line": 601 + "Function Name": "hash", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3859, + "End Line": 3862 }, { - "Function Name": "getTargetPixelRatio", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 349, - "End Line": 353 + "Function Name": "init", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 4164, + "End Line": 4167 }, { - "Function Name": "setRenderTargetFramebuffer", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "isContainerKind", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2804, - "End Line": 2810 + "Start Line": 4282, + "End Line": 4284 }, { - "Function Name": "getContext", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "hashWithHasher", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 363 + "Start Line": 4833, + "End Line": 4836 }, { - "Function Name": "onContextLost", + "Function Name": "of", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1092, - "End Line": 1100 + "Start Line": 4987, + "End Line": 4989 }, { - "Function Name": "onMaterialDispose", + "Function Name": "deinit", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1130, - "End Line": 1138 + "Start Line": 5317, + "End Line": 5319 }, { - "Function Name": "outputColorSpace", + "Function Name": "hashWithHasher", "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3539, - "End Line": 3547 + "Start Line": 5653, + "End Line": 5656 }, { - "Function Name": "deallocateMaterial", + "Function Name": "eql", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 5685, + "End Line": 5687 + }, + { + "Function Name": "allocType", "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1142, - "End Line": 1148 + "Start Line": 71, + "End Line": 71 }, { - "Function Name": "getSize", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "stringifyParameter", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 635, - "End Line": 639 + "Start Line": 173, + "End Line": 173 }, { - "Function Name": "getDrawingBufferSize", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "stringifyFunction", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 688, - "End Line": 692 + "Start Line": 239, + "End Line": 239 }, { - "Function Name": "getCurrentViewport", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "hasSelfParam", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 760, - "End Line": 764 + "Start Line": 439, + "End Line": 439 }, { - "Function Name": "getViewport", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveReturnType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 772, - "End Line": 776 + "Start Line": 831, + "End Line": 831 }, { - "Function Name": "getScissor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveOptionalUnwrap", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 813 + "Start Line": 875, + "End Line": 875 }, { - "Function Name": "setScissorTest", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveFuncProtoOfCallable", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 858, - "End Line": 862 + "Start Line": 984, + "End Line": 984 }, { - "Function Name": "setOpaqueSort", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveDerefType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 870, - "End Line": 874 + "Start Line": 992, + "End Line": 992 }, { - "Function Name": "setTransparentSort", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "resolveDerefBinding", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 886 + "Start Line": 997, + "End Line": 997 }, { - "Function Name": "getClearColor", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "bracketAccessTypeFromIPIndex", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 896, - "End Line": 900 + "Start Line": 1082, + "End Line": 1082 }, { - "Function Name": "setNodesHandler", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "resolvePrimitive", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1054, - "End Line": 1059 + "Start Line": 1512, + "End Line": 1512 }, { - "Function Name": "onContextCreationError", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "fromEither", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1124, - "End Line": 1128 + "Start Line": 3899, + "End Line": 3899 }, { - "Function Name": "dispose", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 24, + "Function Name": "getAllTypesWithHandles", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1065, - "End Line": 1088 + "Start Line": 3971, + "End Line": 3971 }, { - "Function Name": "onContextRestore", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 21, + "Function Name": "instanceTypeVal", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1122 + "Start Line": 4198, + "End Line": 4198 }, { - "Function Name": "resetState", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, + "Function Name": "instanceUnchecked", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3493, - "End Line": 3502 + "Start Line": 4203, + "End Line": 4203 }, { - "Function Name": "getContext", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "typeOf", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 566, - "End Line": 570 + "Start Line": 4226, + "End Line": 4226 }, { - "Function Name": "getContextAttributes", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "arrayInfo", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 581 + "Start Line": 4445, + "End Line": 4445 }, { - "Function Name": "getPixelRatio", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "docComments", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 608, - "End Line": 612 + "Start Line": 4503, + "End Line": 4503 }, { - "Function Name": "getScissorTest", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "initCapacity", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 845, - "End Line": 849 + "Start Line": 5312, + "End Line": 5312 }, { - "Function Name": "setClearColor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "docComments", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 908, - "End Line": 912 + "Start Line": 5831, + "End Line": 5831 }, { - "Function Name": "getClearAlpha", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "root", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 919, - "End Line": 923 + "Start Line": 3263, + "End Line": 3268 }, { - "Function Name": "setClearAlpha", - "Structural Impact": 1.2, + "Function Name": "hash64", + "Structural Impact": 1.7, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 930, - "End Line": 934 + "Start Line": 3835, + "End Line": 3839 }, { - "Function Name": "clearColor", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "deinit", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1023, - "End Line": 1027 + "Start Line": 66, + "End Line": 69 }, { - "Function Name": "clearDepth", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "fmtEscapedSnippet", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1032, - "End Line": 1036 + "Start Line": 388, + "End Line": 390 }, { - "Function Name": "clearStencil", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "hash32", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1041, - "End Line": 1045 + "Start Line": 3831, + "End Line": 3833 }, { - "Function Name": "onXRSessionStart", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "ArrayMap", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1548, - "End Line": 1552 + "Start Line": 3854, + "End Line": 3856 }, { - "Function Name": "onXRSessionEnd", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isGenericType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1554, - "End Line": 1558 + "Start Line": 4265, + "End Line": 4267 }, { - "Function Name": "getActiveCubeFace", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isEnumType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2755, - "End Line": 2759 + "Start Line": 4315, + "End Line": 4317 }, { - "Function Name": "getActiveMipmapLevel", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isUnionType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2766, - "End Line": 2770 + "Start Line": 4319, + "End Line": 4321 }, { - "Function Name": "getRenderTarget", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isOpaqueType", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2778, - "End Line": 2782 + "Start Line": 4323, + "End Line": 4325 }, { - "Function Name": "coordinateSystem", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "isErrSetDef", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3521, - "End Line": 3525 + "Start Line": 5307, + "End Line": 5309 }, { - "Function Name": "outputColorSpace", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Function Name": "nameToken", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3533, - "End Line": 3537 + "Start Line": 5690, + "End Line": 5692 + }, + { + "Function Name": "typeDeclarationNode", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 5710, + "End Line": 5710 + }, + { + "Function Name": "isStatic", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 5871, + "End Line": 5871 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 515, - "Sequential Logic Declarations": 152, - "Function Parameters": 83, - "Function/Method Declarations": 77, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 204, - "Type/Safety Bypasses": 1, + "Control Flow Branches": 2284, + "Sequential Logic Declarations": 1166, + "Function Parameters": 197, + "Function/Method Declarations": 197, + "Class/Entity Declarations": 37, + "Defensive Programming Constructs": 1439, + "Type/Safety Bypasses": 55, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 338, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 78, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 15, - "UI / View Layer Components": 3, - "Closures and Anonymous Functions": 54, - "Global State Dependencies": 0, + "Exposed API / Public Exports": 168, + "State Mutations / Variable Reassignments": 567, + "Commented-out Code (Dead Logic)": 9, + "Structured Documentation Blocks": 111, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 2, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 39, "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 37, - "Authorship Metadata": 2, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Generic Type Abstractions": 114, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 10, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 15, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 15, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, - "Dependency Injection Constructs": 2, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 49, + "Pointer Arithmetic & Addressing": 269, + "Manual Memory Allocation": 20, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 1, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 9, - "Thread Sleeps & Blocking Waits": 2, - "Bitwise Operations": 0, + "Explicit Type Casts": 5, + "Fatal Aborts & Exceptions": 951, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 974, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 172, - "Resource Deallocation & Cleanup": 20, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 6, + "Immutable Data Declarations": 900, + "Resource Deallocation & Cleanup": 27, + "Private / Encapsulated Scopes": 990, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1587, - "Structural Space Indentations": 0, - "Hardware Bridge": 26, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 5819, + "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 2, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -407527,15 +411988,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 391, - "Design Camel Case": 195, - "Design Snake Case": 141, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 21, - "Design Long Vars": 6, + "Core Var Decl": 1104, + "Design Camel Case": 0, + "Design Snake Case": 984, + "Design Pascal Case": 96, + "Design Upper Case": 0, + "Design Short Vars": 71, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 27, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -407543,12 +412004,12 @@ "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)": 32, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, - "Non-Standard Unicode / Homoglyphs": 1, + "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, @@ -407559,79 +412020,30 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 37, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 5, + "Total Downstream (Absolute Dependency Blast Radius)": 4 }, "9. Extracted Dependencies": [ - "../constants.js", - "../math/Color.js", - "../math/ColorManagement.js", - "../math/Frustum.js", - "../math/Matrix4.js", - "../math/Vector3.js", - "../math/Vector4.js", - "../utils.js", - "./WebGLRenderTarget.js", - "./shaders/DFGLUTData.js", - "./webgl/WebGLAnimation.js", - "./webgl/WebGLAttributes.js", - "./webgl/WebGLBackground.js", - "./webgl/WebGLBindingStates.js", - "./webgl/WebGLBufferRenderer.js", - "./webgl/WebGLCapabilities.js", - "./webgl/WebGLClipping.js", - "./webgl/WebGLEnvironments.js", - "./webgl/WebGLExtensions.js", - "./webgl/WebGLGeometries.js", - "./webgl/WebGLIndexedBufferRenderer.js", - "./webgl/WebGLInfo.js", - "./webgl/WebGLMaterials.js", - "./webgl/WebGLMorphtargets.js", - "./webgl/WebGLObjects.js", - "./webgl/WebGLOutput.js", - "./webgl/WebGLPrograms.js", - "./webgl/WebGLProperties.js", - "./webgl/WebGLRenderLists.js", - "./webgl/WebGLRenderStates.js", - "./webgl/WebGLShadowMap.js", - "./webgl/WebGLState.js", - "./webgl/WebGLTextures.js", - "./webgl/WebGLUniforms.js", - "./webgl/WebGLUniformsGroups.js", - "./webgl/WebGLUtils.js", - "./webxr/WebXRManager.js" + "DocumentScope.zig", + "DocumentStore.zig", + "Uri.zig", + "analyser/InternPool.zig", + "analyser/error_msg.zig", + "ast.zig", + "builtin", + "features/references.zig", + "offsets.zig", + "std", + "tracy", + "version_data" ] - } - } - }, - "zig/zls": { - "Directory Group Magnitude": 7673.62, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "24.58%", - "Error & Exception Exposure": "22.16%", - "Tech Debt Exposure": "10.53%", - "Testing Exposure": "28.32%", - "API Exposure": "1.81%", - "Concurrency Exposure": "11.37%", - "State Flux Exposure": "9.18%", - "Commented Logic Exposure": "2.66%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.54%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "zig/zls/DocumentScope.zig": { + }, + "zig/zls/ast.zig": { "1. Artifact Identity": { - "Filename": "DocumentScope.zig", - "Path": "zig/zls/DocumentScope.zig", + "Filename": "ast.zig", + "Path": "zig/zls/ast.zig", "Language": "Zig", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -407641,9 +412053,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 2886.6, - "Y": -131.83, - "Z": 8302.31 + "X": 2440.2, + "Y": -143.55, + "Z": 8037.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -407652,535 +412064,645 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1346, - "Coding LOC": 1130, - "Documentation LOC": 46, - "Structural Magnitude": 249.9, - "Control Flow Ratio": "76.9%", + "Total LOC": 1847, + "Coding LOC": 1631, + "Documentation LOC": 73, + "Structural Magnitude": 764.82, + "Control Flow Ratio": "62.5%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.407 + "Raw Cognitive Density": 0.466 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.44%", - "Error & Exception Exposure": "30.86%", - "Tech Debt Exposure": "16.9%", + "Cognitive Load Exposure": "19.24%", + "Error & Exception Exposure": "47.02%", + "Tech Debt Exposure": "8.14%", "Testing Exposure": "80.0%", - "API Exposure": "2.91%", - "Concurrency Exposure": "13.45%", + "API Exposure": "2.17%", + "Concurrency Exposure": "14.1%", "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "Commented Logic Exposure": "5.71%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.16%", + "Documentation Exposure": "27.73%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "nameToken", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 51, + "Function Name": "lastToken", + "Structural Impact": 164.3, + "Lines of Code (LOC)": 410, + "Control Flow Branches": 82, + "Input Parameters": 2, + "Control Flow Ratio": "81.2%", + "Start Line": 422, + "End Line": 831 + }, + { + "Function Name": "indexOfBreakTarget", + "Structural Impact": 57.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 27, + "Input Parameters": 3, + "Control Flow Ratio": "79.4%", + "Start Line": 1812, + "End Line": 1846 + }, + { + "Function Name": "next", + "Structural Impact": 39.0, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 19, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1416, + "End Line": 1502 + }, + { + "Function Name": "fullPtrTypeComponents", + "Structural Impact": 37.1, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 19, + "Input Parameters": 2, + "Control Flow Ratio": "82.6%", + "Start Line": 11, + "End Line": 59 + }, + { + "Function Name": "next", + "Structural Impact": 31.6, + "Lines of Code (LOC)": 94, + "Control Flow Branches": 18, + "Input Parameters": 1, + "Control Flow Ratio": "64.3%", + "Start Line": 966, + "End Line": 1059 + }, + { + "Function Name": "init", + "Structural Impact": 25.2, + "Lines of Code (LOC)": 334, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "13.3%", + "Start Line": 1081, + "End Line": 1414 + }, + { + "Function Name": "fullAsmComponents", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 119, + "End Line": 140 + }, + { + "Function Name": "fullWhileComponents", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 45, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 223, + "End Line": 267 + }, + { + "Function Name": "paramFirstToken", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "83.3%", + "Start Line": 865, + "End Line": 870 + }, + { + "Function Name": "fullIfComponents", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 173, - "End Line": 223 + "Control Flow Ratio": "66.7%", + "Start Line": 166, + "End Line": 198 }, { - "Function Name": "getScopeDeclarationsConst", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 21, + "Function Name": "fullForComponents", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 28, "Control Flow Branches": 4, "Input Parameters": 2, "Control Flow Ratio": "57.1%", - "Start Line": 1303, - "End Line": 1323 + "Start Line": 269, + "End Line": 296 }, { - "Function Name": "getScopeChildScopesConst", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 21, + "Function Name": "initArray", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 22, "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1504, + "End Line": 1525 + }, + { + "Function Name": "blockLabel", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1325, - "End Line": 1345 + "Control Flow Ratio": "42.9%", + "Start Line": 929, + "End Line": 936 }, { - "Function Name": "get", + "Function Name": "isContainer", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 897, + "End Line": 916 + }, + { + "Function Name": "forFull", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 343, + "End Line": 354 + }, + { + "Function Name": "isTaggedUnion", "Structural Impact": 5.7, "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "28.6%", - "Start Line": 110, - "End Line": 119 + "Control Flow Ratio": "33.3%", + "Start Line": 886, + "End Line": 895 }, { - "Function Name": "getScopeDeclaration", + "Function Name": "isBuiltinCall", + "Structural Impact": 5.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 918, + "End Line": 927 + }, + { + "Function Name": "fullPtrType", "Structural Impact": 5.6, "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1293, - "End Line": 1301 + "Start Line": 356, + "End Line": 364 }, { - "Function Name": "getScopeAstNode", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, + "Function Name": "fullWhile", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1279, - "End Line": 1291 + "Control Flow Ratio": "66.7%", + "Start Line": 374, + "End Line": 381 }, { - "Function Name": "isContainer", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 236, - "End Line": 241 + "Function Name": "fullIf", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 366, + "End Line": 372 }, { - "Function Name": "unwrap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 162, - "End Line": 165 + "Function Name": "fullFor", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 383, + "End Line": 389 }, { - "Function Name": "unwrap", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, + "Function Name": "fullAsm", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 391, + "End Line": 397 + }, + { + "Function Name": "findMatchingRBrace", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 399, + "End Line": 401 + }, + { + "Function Name": "errorSetFieldCount", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 303, - "End Line": 306 + "Start Line": 938, + "End Line": 946 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "identifierTokenFromIdentifierNode", + "Structural Impact": 3.7, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 47 + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 854, + "End Line": 858 }, { - "Function Name": "pushDeclaration", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 332, - "End Line": 337 + "Function Name": "hasInferredError", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 860, + "End Line": 863 }, { - "Function Name": "walkNodeEnsureScope", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 540, - "End Line": 545 + "Function Name": "paramLastToken", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 872, + "End Line": 874 }, { - "Function Name": "walkBlockNodeKeepOpen", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 902, - "End Line": 907 + "Function Name": "isKeyword", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 403, + "End Line": 412 }, { - "Function Name": "startScope", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, + "Function Name": "ptrTypeSimple", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 426, - "End Line": 426 + "Start Line": 61, + "End Line": 74 }, { - "Function Name": "pushChildScope", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeSentinel", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 457, - "End Line": 461 + "Start Line": 76, + "End Line": 88 }, { - "Function Name": "walkNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeAligned", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 568, - "End Line": 572 + "Start Line": 90, + "End Line": 102 }, { - "Function Name": "walkContainerDecl", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ptrTypeBitRange", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 764, - "End Line": 768 + "Start Line": 104, + "End Line": 117 }, { - "Function Name": "walkErrorSetNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "asmFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 830, - "End Line": 834 + "Start Line": 153, + "End Line": 164 }, { - "Function Name": "walkFuncNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "ifFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 852, - "End Line": 856 + "Start Line": 200, + "End Line": 210 }, { - "Function Name": "walkBlockNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "whileCont", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 893, - "End Line": 897 + "Start Line": 309, + "End Line": 319 }, { - "Function Name": "walkIfNode", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "whileFull", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 959, - "End Line": 963 + "Start Line": 321, + "End Line": 331 }, { - "Function Name": "walkCatchNode", + "Function Name": "asmSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 998, - "End Line": 1002 + "Start Line": 142, + "End Line": 151 }, { - "Function Name": "walkWhileNode", + "Function Name": "ifSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1024, - "End Line": 1028 + "Start Line": 212, + "End Line": 221 }, { - "Function Name": "walkForNode", + "Function Name": "whileSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1106 + "Start Line": 298, + "End Line": 307 }, { - "Function Name": "walkSwitchNode", + "Function Name": "forSimple", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1155, - "End Line": 1159 + "Start Line": 333, + "End Line": 341 }, { - "Function Name": "walkErrdeferNode", + "Function Name": "paramLoc", "Structural Impact": 2.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1212, - "End Line": 1216 + "Start Line": 876, + "End Line": 880 }, { - "Function Name": "walkOtherNode", + "Function Name": "init", "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1254, - "End Line": 1258 + "Start Line": 955, + "End Line": 963 }, { - "Function Name": "hash", + "Function Name": "paramSlice", "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 41 + "Start Line": 882, + "End Line": 884 }, { - "Function Name": "getCase", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "lessThan", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 143, - "End Line": 147 + "Start Line": 1627, + "End Line": 1629 }, { - "Function Name": "deinit", + "Function Name": "init", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 523, - "End Line": 528 + "Start Line": 1531, + "End Line": 1531 }, { - "Function Name": "walkUnaryOpNode", + "Function Name": "next", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1232, - "End Line": 1232 + "Start Line": 1550, + "End Line": 1550 }, { - "Function Name": "walkBinOpNode", + "Function Name": "nextIgnoreClose", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1236, - "End Line": 1236 + "Start Line": 1567, + "End Line": 1567 }, { - "Function Name": "walkOptNodeAndOptNode", + "Function Name": "nodesOverlappingIndex", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1242, - "End Line": 1242 + "Start Line": 1594, + "End Line": 1594 }, { - "Function Name": "walkNodeAndOptNode", + "Function Name": "nodesOverlappingIndexIncludingParseErrors", "Structural Impact": 2.0, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1248, - "End Line": 1248 + "Start Line": 1622, + "End Line": 1622 }, { - "Function Name": "getScopeTag", + "Function Name": "nodesAtLoc", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1265, - "End Line": 1270 + "Start Line": 1653, + "End Line": 1653 }, { - "Function Name": "getScopeParent", + "Function Name": "append", "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1272, - "End Line": 1277 + "Start Line": 1661, + "End Line": 1661 }, { - "Function Name": "getVarDeclNode", + "Function Name": "deinit", "Structural Impact": 1.9, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 127, - "End Line": 130 - }, - { - "Function Name": "getFullVarDecl", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 134 + "Start Line": 1540, + "End Line": 1543 }, { - "Function Name": "eql", + "Function Name": "smallestEnclosingSubrange", "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 170 + "Start Line": 1707, + "End Line": 1710 }, { - "Function Name": "init", + "Function Name": "testDeclNameAndToken", "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 488, - "End Line": 488 - }, - { - "Function Name": "locToSmallLoc", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 535 + "Start Line": 833, + "End Line": 833 }, { - "Function Name": "toOptional", + "Function Name": "skip", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 155 + "Start Line": 1576, + "End Line": 1578 }, { - "Function Name": "toOptional", + "Function Name": "parentNode", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 293, - "End Line": 295 - }, - { - "Function Name": "deinit", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 319, - "End Line": 322 - }, - { - "Function Name": "finalize", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 384, - "End Line": 384 + "Start Line": 1581, + "End Line": 1583 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 223, - "Sequential Logic Declarations": 67, - "Function Parameters": 45, - "Function/Method Declarations": 45, - "Class/Entity Declarations": 19, - "Defensive Programming Constructs": 165, - "Type/Safety Bypasses": 45, + "Control Flow Branches": 295, + "Sequential Logic Declarations": 177, + "Function Parameters": 56, + "Function/Method Declarations": 56, + "Class/Entity Declarations": 7, + "Defensive Programming Constructs": 120, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 48, - "State Mutations / Variable Reassignments": 46, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 38, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 2, + "Exposed API / Public Exports": 52, + "State Mutations / Variable Reassignments": 110, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 34, + "Unit Test Assertions": 9, + "Asynchronous/Concurrent Execution": 4, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 12, + "Global State Dependencies": 8, "Decorators and Annotations": 0, "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 4, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Scientific & Mathematical Operations": 3, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 2, "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, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 53, - "Manual Memory Allocation": 1, + "Pointer Arithmetic & Addressing": 64, + "Manual Memory Allocation": 6, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 25, - "Fatal Aborts & Exceptions": 47, + "Explicit Type Casts": 3, + "Fatal Aborts & Exceptions": 132, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 129, + "Bitwise Operations": 113, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 160, - "Resource Deallocation & Cleanup": 10, - "Private / Encapsulated Scopes": 130, + "Immutable Data Declarations": 246, + "Resource Deallocation & Cleanup": 7, + "Private / Encapsulated Scopes": 201, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 7, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1034, + "Structural Space Indentations": 1528, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -408197,14 +412719,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 139, - "Design Camel Case": 1, - "Design Snake Case": 109, - "Design Pascal Case": 26, + "Core Var Decl": 228, + "Design Camel Case": 0, + "Design Snake Case": 215, + "Design Pascal Case": 13, "Design Upper Case": 0, - "Design Short Vars": 3, - "Design Long Vars": 0, - "Duplicate Logic": 4, + "Design Short Vars": 28, + "Design Long Vars": 2, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -408213,7 +412735,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 7, + "Dynamic Code Execution (Eval/Exec)": 22, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -408229,22 +412751,20 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 5 }, "9. Extracted Dependencies": [ - "ast.zig", "offsets.zig", - "std", - "tracy" + "std" ] }, - "zig/zls/DocumentStore.zig": { + "zig/zls/print_ast.zig": { "1. Artifact Identity": { - "Filename": "DocumentStore.zig", - "Path": "zig/zls/DocumentStore.zig", + "Filename": "print_ast.zig", + "Path": "zig/zls/print_ast.zig", "Language": "Zig", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -408254,9 +412774,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": 2689.14, - "Y": -190.63, - "Z": 8988.89 + "X": 1817.13, + "Y": -155.75, + "Z": 8649.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -408265,681 +412785,291 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2059, - "Coding LOC": 1604, - "Documentation LOC": 133, - "Structural Magnitude": 761.58, - "Control Flow Ratio": "60.9%", - "Popularity Rank": 2, + "Total LOC": 950, + "Coding LOC": 897, + "Documentation LOC": 4, + "Structural Magnitude": 525.44, + "Control Flow Ratio": "81.4%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.764 + "Raw Cognitive Density": 0.494 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.68%", - "Error & Exception Exposure": "18.85%", - "Tech Debt Exposure": "19.03%", - "Testing Exposure": "2.42%", - "API Exposure": "1.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "20.14%", - "Commented Logic Exposure": "4.94%", + "Cognitive Load Exposure": "26.13%", + "Error & Exception Exposure": "12.8%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.46%", + "API Exposure": "0.75%", + "Concurrency Exposure": "16.07%", + "State Flux Exposure": "8.49%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.05%", + "Documentation Exposure": "21.16%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "createAndStoreDocument", - "Structural Impact": 59.0, - "Lines of Code (LOC)": 107, - "Control Flow Branches": 23, - "Input Parameters": 4, - "Control Flow Ratio": "62.2%", - "Start Line": 1567, - "End Line": 1673 - }, - { - "Function Name": "invalidateBuildFileWorker", - "Structural Impact": 42.8, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 21, + "Function Name": "renderNode", + "Structural Impact": 256.0, + "Lines of Code (LOC)": 444, + "Control Flow Branches": 134, "Input Parameters": 2, - "Control Flow Ratio": "65.6%", - "Start Line": 1192, - "End Line": 1285 + "Control Flow Ratio": "87.6%", + "Start Line": 79, + "End Line": 522 }, { - "Function Name": "loadBuildConfiguration", - "Structural Impact": 40.5, - "Lines of Code (LOC)": 89, - "Control Flow Branches": 17, - "Input Parameters": 3, - "Control Flow Ratio": "56.7%", - "Start Line": 1364, - "End Line": 1452 + "Function Name": "renderOptField", + "Structural Impact": 25.6, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 10, + "Input Parameters": 4, + "Control Flow Ratio": "90.9%", + "Start Line": 561, + "End Line": 580 }, { - "Function Name": "publishCimportDiagnostics", - "Structural Impact": 39.3, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 20, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1897, - "End Line": 1955 + "Function Name": "renderOptTokenField", + "Structural Impact": 21.1, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 590, + "End Line": 608 }, { - "Function Name": "loadDirectoryRecursive", - "Structural Impact": 32.4, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 974, - "End Line": 1033 + "Function Name": "renderNodeSliceField", + "Structural Impact": 18.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 8, + "Input Parameters": 3, + "Control Flow Ratio": "88.9%", + "Start Line": 610, + "End Line": 627 }, { - "Function Name": "readFile", - "Structural Impact": 22.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "68.8%", - "Start Line": 740, - "End Line": 773 + "Function Name": "renderToFile", + "Structural Impact": 18.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "58.3%", + "Start Line": 14, + "End Line": 29 }, { - "Function Name": "notifyBuildStart", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 43, + "Function Name": "main", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 34, "Control Flow Branches": 9, "Input Parameters": 1, "Control Flow Ratio": "56.2%", - "Start Line": 1112, - "End Line": 1154 + "Start Line": 845, + "End Line": 878 }, { - "Function Name": "notifyBuildEnd", - "Structural Impact": 15.5, - "Lines of Code (LOC)": 33, + "Function Name": "moveSourceCursor", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 25, "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 1158, - "End Line": 1190 - }, - { - "Function Name": "Lazy", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 595, - "End Line": 643 - }, - { - "Function Name": "deinit", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "87.5%", - "Start Line": 697, - "End Line": 723 + "Control Flow Ratio": "77.8%", + "Start Line": 629, + "End Line": 653 }, { - "Function Name": "buildDotZigExists", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 6, + "Function Name": "renderTrailing", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 5, "Input Parameters": 2, - "Control Flow Ratio": "46.2%", - "Start Line": 1455, - "End Line": 1466 - }, - { - "Function Name": "loadBuildAssociatedConfiguration", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "44.4%", - "Start Line": 1302, - "End Line": 1325 + "Control Flow Ratio": "83.3%", + "Start Line": 529, + "End Line": 539 }, { - "Function Name": "invalidateBuildFile", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 12, + "Function Name": "renderOptItem", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 5, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 959, - "End Line": 970 + "Control Flow Ratio": "100.0%", + "Start Line": 545, + "End Line": 550 }, { - "Function Name": "closeLspSyncedDocument", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 23, + "Function Name": "renderOptNode", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 867, - "End Line": 889 - }, - { - "Function Name": "deinit", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 562, - "End Line": 582 - }, - { - "Function Name": "next", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 676, - "End Line": 688 + "Control Flow Ratio": "100.0%", + "Start Line": 71, + "End Line": 77 }, { - "Function Name": "sendMessageToClient", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, + "Function Name": "renderCustomField", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1096, - "End Line": 1110 - }, - { - "Function Name": "getHandle", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "37.5%", - "Start Line": 728, - "End Line": 735 - }, - { - "Function Name": "deinit", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, "Control Flow Ratio": "100.0%", - "Start Line": 154, - "End Line": 159 - }, - { - "Function Name": "getOrLoadHandleVoid", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 988, - "End Line": 998 + "Start Line": 552, + "End Line": 555 }, { - "Function Name": "getOrNull", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 628, - "End Line": 637 + "Function Name": "nodeTagName", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 188, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 656, + "End Line": 843 }, { - "Function Name": "loadTrigramStore", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1066, - "End Line": 1076 + "Function Name": "renderToWriter", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 31, + "End Line": 42 }, { - "Function Name": "deinit", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, + "Function Name": "renderRoot", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 1962, - "End Line": 1971 - }, - { - "Function Name": "tryLockConfig", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 66, + "End Line": 69 }, { - "Function Name": "await", - "Structural Impact": 5.4, + "Function Name": "newline", + "Structural Impact": 4.4, "Lines of Code (LOC)": 4, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 589, - "End Line": 592 - }, - { - "Function Name": "deinit", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 607, - "End Line": 611 - }, - { - "Function Name": "deinit", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 221, - "End Line": 233 - }, - { - "Function Name": "deinit", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "100.0%", - "Start Line": 325, - "End Line": 333 + "Start Line": 524, + "End Line": 527 }, { - "Function Name": "collectImports", - "Structural Impact": 2.8, + "Function Name": "renderTokenField", + "Structural Impact": 4.3, "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 482, - "End Line": 488 - }, - { - "Function Name": "refresh", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 406, - "End Line": 413 - }, - { - "Function Name": "collectIncludeDirs", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1690, - "End Line": 1695 - }, - { - "Function Name": "collectCMacros", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1757, - "End Line": 1762 - }, - { - "Function Name": "uriFromImportStr", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1978, - "End Line": 1983 - }, - { - "Function Name": "isAssociatedWith", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 99 - }, - { - "Function Name": "parseTree", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 463, - "End Line": 463 - }, - { - "Function Name": "getBuildFile", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 800, - "End Line": 805 - }, - { - "Function Name": "openLspSyncedDocument", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 840, - "End Line": 840 - }, - { - "Function Name": "refreshLspSyncedDocument", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 894, - "End Line": 894 - }, - { - "Function Name": "refreshDocumentFromFileSystem", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 922, - "End Line": 922 + "Control Flow Ratio": "100.0%", + "Start Line": 582, + "End Line": 588 }, { - "Function Name": "resolveCImport", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, + "Function Name": "renderField", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1790, - "End Line": 1790 + "Control Flow Ratio": "100.0%", + "Start Line": 557, + "End Line": 559 }, { - "Function Name": "unlockConfig", - "Structural Impact": 1.9, + "Function Name": "format", + "Structural Impact": 3.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 88 + "Control Flow Ratio": "100.0%", + "Start Line": 52, + "End Line": 54 }, { - "Function Name": "deinit", - "Structural Impact": 1.9, + "Function Name": "renderItem", + "Structural Impact": 3.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 659 + "Control Flow Ratio": "100.0%", + "Start Line": 541, + "End Line": 543 }, { - "Function Name": "deinit", + "Function Name": "fmt", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 666, - "End Line": 668 - }, - { - "Function Name": "loadTrigramStores", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1035, - "End Line": 1038 - }, - { - "Function Name": "getAssociatedBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 241 - }, - { - "Function Name": "getAssociatedCompilationUnits", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 337, - "End Line": 337 - }, - { - "Function Name": "get", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 613, - "End Line": 613 - }, - { - "Function Name": "create", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 646, - "End Line": 646 - }, - { - "Function Name": "create", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 663 - }, - { - "Function Name": "getOrLoadHandle", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 779, - "End Line": 779 - }, - { - "Function Name": "getOrLoadBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 810, - "End Line": 810 - }, - { - "Function Name": "prepareBuildRunnerArgs", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1327, - "End Line": 1327 - }, - { - "Function Name": "collectPotentialBuildFiles", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1473, - "End Line": 1473 - }, - { - "Function Name": "createBuildFile", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1522, - "End Line": 1522 - }, - { - "Function Name": "getCached", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 639, - "End Line": 641 - }, - { - "Function Name": "isBuildFile", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1287, - "End Line": 1289 - }, - { - "Function Name": "isBuiltinFile", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1291, - "End Line": 1293 - }, - { - "Function Name": "isInStd", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1295, - "End Line": 1298 - }, - { - "Function Name": "getDocumentScope", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 187, - "End Line": 187 + "Start Line": 44, + "End Line": 46 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 486, - "Sequential Logic Declarations": 312, - "Function Parameters": 59, - "Function/Method Declarations": 59, - "Class/Entity Declarations": 22, - "Defensive Programming Constructs": 323, - "Type/Safety Bypasses": 37, + "Control Flow Branches": 215, + "Sequential Logic Declarations": 49, + "Function Parameters": 21, + "Function/Method Declarations": 20, + "Class/Entity Declarations": 3, + "Defensive Programming Constructs": 193, + "Type/Safety Bypasses": 15, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 56, - "State Mutations / Variable Reassignments": 158, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 101, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 29, + "Exposed API / Public Exports": 11, + "State Mutations / Variable Reassignments": 48, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 4, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 32, + "Global State Dependencies": 6, "Decorators and Annotations": 0, - "Generic Type Abstractions": 4, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 1, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 16, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, - "Planned Work (TODOs)": 12, + "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": 112, - "Manual Memory Allocation": 9, + "Pointer Arithmetic & Addressing": 22, + "Manual Memory Allocation": 1, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, - "Fatal Aborts & Exceptions": 151, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 28, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 264, - "Thread Synchronization Locks": 33, - "Immutable Data Declarations": 234, - "Resource Deallocation & Cleanup": 109, - "Private / Encapsulated Scopes": 256, + "Bitwise Operations": 46, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 95, + "Resource Deallocation & Cleanup": 6, + "Private / Encapsulated Scopes": 95, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1480, + "Structural Space Indentations": 874, "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": 0, "Cloud LLM API Integrations": 0, @@ -408950,14 +413080,14 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 247, - "Design Camel Case": 2, - "Design Snake Case": 196, - "Design Pascal Case": 43, + "Core Var Decl": 81, + "Design Camel Case": 1, + "Design Snake Case": 72, + "Design Pascal Case": 8, "Design Upper Case": 0, - "Design Short Vars": 13, - "Design Long Vars": 6, - "Duplicate Logic": 2, + "Design Short Vars": 2, + "Design Long Vars": 0, + "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, @@ -408966,7 +413096,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 15, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -408982,840 +413112,143 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 13, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 5, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Direct Upstream (Fragility)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "BuildAssociatedConfig.zig", - "DiagnosticsCollection.zig", - "DocumentScope.zig", - "TrigramStore.zig", - "Uri.zig", - "analysis.zig", - "build_runner/shared.zig", - "builtin", - "lsp", - "offsets.zig", "std", - "tracy", - "translate_c.zig" + "testing.zig" ] - }, - "zig/zls/Server.zig": { + } + } + }, + "cpp/NVDA": { + "Directory Group Magnitude": 7599.44, + "File Count": 12, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "66.7%", + "Static: Literature & Documentation": "33.3%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "32.3%", + "Error & Exception Exposure": "45.9%", + "Tech Debt Exposure": "32.23%", + "Testing Exposure": "40.42%", + "API Exposure": "2.45%", + "Concurrency Exposure": "3.35%", + "State Flux Exposure": "55.39%", + "Commented Logic Exposure": "0.81%", + "Specification Exposure": "66.67%", + "Instability Exposure": "33.33%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "10.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "cpp/NVDA/CODE_OF_CONDUCT.md": { "1. Artifact Identity": { - "Filename": "Server.zig", - "Path": "zig/zls/Server.zig", - "Language": "Zig", + "Filename": "CODE_OF_CONDUCT.md", + "Path": "cpp/NVDA/CODE_OF_CONDUCT.md", + "Language": "Markdown", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2124.91, - "Y": -185.87, - "Z": 8991.71 + "X": 4629.3, + "Y": -1.05, + "Z": 5094.36 }, "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": 2030, - "Coding LOC": 1670, - "Documentation LOC": 108, - "Structural Magnitude": 1197.9, - "Control Flow Ratio": "68.6%", + "Total LOC": 83, + "Coding LOC": 0, + "Documentation LOC": 58, + "Structural Magnitude": 1.66, + "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.495 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.63%", - "Error & Exception Exposure": "12.77%", - "Tech Debt Exposure": "10.38%", - "Testing Exposure": "2.56%", - "API Exposure": "0.58%", - "Concurrency Exposure": "12.42%", - "State Flux Exposure": "10.12%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.17%", - "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": "initializeHandler", - "Structural Impact": 190.2, - "Lines of Code (LOC)": 244, - "Control Flow Branches": 88, - "Input Parameters": 3, - "Control Flow Ratio": "95.7%", - "Start Line": 340, - "End Line": 583 - }, - { - "Function Name": "sendRequestSync", - "Structural Impact": 59.9, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 25, - "Input Parameters": 4, - "Control Flow Ratio": "86.2%", - "Start Line": 1794, - "End Line": 1829 - }, - { - "Function Name": "handleResponse", - "Structural Impact": 38.6, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 20, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 1974, - "End Line": 2017 - }, - { - "Function Name": "validateMessage", - "Structural Impact": 35.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 18, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 1929, - "End Line": 1972 - }, - { - "Function Name": "codeActionHandler", - "Structural Impact": 34.1, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 15, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1520, - "End Line": 1562 - }, - { - "Function Name": "initializedHandler", - "Structural Impact": 30.2, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 13, - "Input Parameters": 3, - "Control Flow Ratio": "81.2%", - "Start Line": 585, - "End Line": 629 - }, - { - "Function Name": "sendNotificationSync", - "Structural Impact": 27.9, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 4, - "Control Flow Ratio": "78.6%", - "Start Line": 1831, - "End Line": 1852 - }, - { - "Function Name": "saveDocumentHandler", - "Structural Impact": 27.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 12, - "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 1190, - "End Line": 1223 - }, - { - "Function Name": "didChangeConfigurationHandler", - "Structural Impact": 25.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "78.6%", - "Start Line": 939, - "End Line": 976 - }, - { - "Function Name": "processMessage", - "Structural Impact": 25.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "73.3%", - "Start Line": 1864, - "End Line": 1885 - }, - { - "Function Name": "processMessageReportError", - "Structural Impact": 24.1, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1887, - "End Line": 1927 - }, - { - "Function Name": "signatureHelpHandler", - "Structural Impact": 23.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "52.6%", - "Start Line": 1341, - "End Line": 1372 - }, - { - "Function Name": "didChangeWatchedFilesHandler", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 898, - "End Line": 919 - }, - { - "Function Name": "didChangeWorkspaceFoldersHandler", - "Structural Impact": 20.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "69.2%", - "Start Line": 921, - "End Line": 937 - }, - { - "Function Name": "inlayHintHandler", - "Structural Impact": 19.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "53.3%", - "Start Line": 1494, - "End Line": 1518 - }, - { - "Function Name": "changeDocumentHandler", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "61.5%", - "Start Line": 1166, - "End Line": 1188 - }, - { - "Function Name": "willSaveWaitUntilHandler", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1241, - "End Line": 1261 - }, - { - "Function Name": "formattingHandler", - "Structural Impact": 18.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 1445, - "End Line": 1460 - }, - { - "Function Name": "showMessage", - "Structural Impact": 17.8, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 226, - "End Line": 267 - }, - { - "Function Name": "semanticTokensRangeHandler", - "Structural Impact": 17.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1292, - "End Line": 1321 - }, - { - "Function Name": "semanticTokensFullHandler", - "Structural Impact": 17.4, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1263, - "End Line": 1290 - }, - { - "Function Name": "hoverHandler", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1409, - "End Line": 1431 - }, - { - "Function Name": "completionHandler", - "Structural Impact": 16.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "46.7%", - "Start Line": 1323, - "End Line": 1339 - }, - { - "Function Name": "closeDocumentHandler", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 1225, - "End Line": 1239 - }, - { - "Function Name": "sendMessageSync", - "Structural Impact": 16.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 6, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1854, - "End Line": 1862 - }, - { - "Function Name": "documentSymbolsHandler", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "54.5%", - "Start Line": 1433, - "End Line": 1443 - }, - { - "Function Name": "loop", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "53.3%", - "Start Line": 1754, - "End Line": 1782 - }, - { - "Function Name": "openDocumentHandler", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 1148, - "End Line": 1164 - }, - { - "Function Name": "prepareRenameHandler", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1467, - "End Line": 1482 - }, - { - "Function Name": "foldingRangeHandler", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1564, - "End Line": 1572 - }, - { - "Function Name": "selectionRangeHandler", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "55.6%", - "Start Line": 1574, - "End Line": 1582 - }, - { - "Function Name": "removeWorkspace", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 885, - "End Line": 896 - }, - { - "Function Name": "formatMessage", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 2019, - "End Line": 2025 - }, - { - "Function Name": "renameHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1462, - "End Line": 1465 - }, - { - "Function Name": "referencesHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1484, - "End Line": 1487 - }, - { - "Function Name": "documentHighlightHandler", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 1489, - "End Line": 1492 - }, - { - "Function Name": "isBlockingMessage", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1630, - "End Line": 1675 - }, - { - "Function Name": "generateDiagnostics", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 327, - "End Line": 338 - }, - { - "Function Name": "sendManualWatchUpdate", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 784, - "End Line": 792 - }, - { - "Function Name": "create", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1687, - "End Line": 1719 - }, - { - "Function Name": "registerCapability", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 644, - "End Line": 662 - }, - { - "Function Name": "requestConfiguration", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 665, - "End Line": 681 - }, - { - "Function Name": "exitHandler", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 636, - "End Line": 642 - }, - { - "Function Name": "sendJsonMessageSync", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1784, - "End Line": 1792 - }, - { - "Function Name": "do", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 330, - "End Line": 335 - }, - { - "Function Name": "deinit", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 777, - "End Line": 782 - }, - { - "Function Name": "destroy", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 1721, - "End Line": 1732 - }, - { - "Function Name": "keepRunning", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1740, - "End Line": 1745 - }, - { - "Function Name": "gotoTypeDefinitionHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1382, - "End Line": 1389 - }, - { - "Function Name": "gotoImplementationHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1391, - "End Line": 1398 - }, - { - "Function Name": "gotoDeclarationHandler", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1400, - "End Line": 1407 - }, - { - "Function Name": "shutdownHandler", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 631, - "End Line": 634 - }, - { - "Function Name": "workspaceSymbolHandler", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1584, - "End Line": 1586 - }, - { - "Function Name": "deinit", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 92, - "End Line": 95 - }, - { - "Function Name": "initAnalyser", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 269, - "End Line": 277 - }, - { - "Function Name": "gotoDefinitionHandler", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1374, - "End Line": 1380 - }, - { - "Function Name": "sendToClientRequest", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 164 - }, - { - "Function Name": "sendToClientInternal", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 206, - "End Line": 206 - }, - { - "Function Name": "sendToClientResponse", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 149 - }, - { - "Function Name": "sendToClientNotification", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 180, - "End Line": 180 - }, - { - "Function Name": "sendToClientResponseError", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 195, - "End Line": 195 - }, - { - "Function Name": "autofix", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 297 - }, - { - "Function Name": "refreshBuildOnSave", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 794, - "End Line": 798 - }, - { - "Function Name": "createDocumentStoreConfig", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1136, - "End Line": 1146 - }, - { - "Function Name": "setTransport", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1734, - "End Line": 1738 - }, - { - "Function Name": "autofixWorkaround", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 280, - "End Line": 289 - }, - { - "Function Name": "handleConfiguration", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 684, - "End Line": 684 - }, - { - "Function Name": "init", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 766, - "End Line": 766 - }, - { - "Function Name": "addWorkspace", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 857, - "End Line": 857 - }, - { - "Function Name": "fmtMessage", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2027, - "End Line": 2029 - }, - { - "Function Name": "resolveConfiguration", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 978, - "End Line": 978 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 566, - "Sequential Logic Declarations": 259, - "Function Parameters": 71, - "Function/Method Declarations": 71, - "Class/Entity Declarations": 9, - "Defensive Programming Constructs": 330, - "Type/Safety Bypasses": 8, + "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": 20, - "State Mutations / Variable Reassignments": 104, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 56, + "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": 41, + "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 8, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 10, - "Module Dependencies (Imports)": 28, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 11, + "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": 80, - "Manual Memory Allocation": 33, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 187, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 285, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 190, - "Resource Deallocation & Cleanup": 50, - "Private / Encapsulated Scopes": 258, + "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": 1476, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -409832,23 +413265,23 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 250, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 223, - "Design Pascal Case": 23, + "Design Snake Case": 0, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 13, - "Design Long Vars": 4, + "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": 11, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 8, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -409864,2114 +413297,2066 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 27, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 5, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 1 }, + "9. Extracted Dependencies": [] + }, + "cpp/NVDA/readme.md": { + "1. Artifact Identity": { + "Filename": "readme.md", + "Path": "cpp/NVDA/readme.md", + "Language": "Markdown", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.md)" + }, + "2. Topological Coordinates": { + "X": 4556.45, + "Y": -83.52, + "Z": 6056.13 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 40, + "Coding LOC": 0, + "Documentation LOC": 27, + "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.0 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 0, + "Instructional Code Examples": 0, + "Architectural Diagrams (Mermaid/PlantUML)": 0, + "Structured Literature Headers": 5, + "Hyperlinked Literature References": 16, + "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)": 7, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, "9. Extracted Dependencies": [ - "Config.zig", - "DiagnosticsCollection.zig", - "DocumentStore.zig", - "Uri.zig", - "analyser/analyser.zig", - "analysis.zig", - "build_options", - "build_runner/shared.zig", - "builtin", - "configuration.zig", - "diff.zig", - "features/code_actions.zig", - "features/completions.zig", - "features/diagnostics.zig", - "features/document_symbol.zig", - "features/folding_range.zig", - "features/goto.zig", - "features/hover.zig", - "features/inlay_hints.zig", - "features/references.zig", - "features/selection_range.zig", - "features/semantic_tokens.zig", - "features/signature_help.zig", - "lsp", - "offsets.zig", - "std", - "tracy" + "./.github/CONTRIBUTING.md", + "./copying.txt", + "./projectDocs/community/expertsList.md", + "./projectDocs/community/readme.md", + "./projectDocs/issues/readme.md", + "./projectDocs/product_vision.md", + "CODE_OF_CONDUCT.md" ] }, - "zig/zls/analysis.zig": { + "cpp/NVDA/contributors.txt": { "1. Artifact Identity": { - "Filename": "analysis.zig", - "Path": "zig/zls/analysis.zig", - "Language": "Zig", + "Filename": "contributors.txt", + "Path": "cpp/NVDA/contributors.txt", + "Language": "Plaintext", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 2416.99, - "Y": -190.97, - "Z": 8436.79 + "X": 3801.87, + "Y": -53.3, + "Z": 5662.11 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 243, + "Coding LOC": 0, + "Documentation LOC": 241, + "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.0 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 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": [] + }, + "cpp/NVDA/copying.txt": { + "1. Artifact Identity": { + "Filename": "copying.txt", + "Path": "cpp/NVDA/copying.txt", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1, + "Identity Proof": "Prose Extension (.txt)" + }, + "2. Topological Coordinates": { + "X": 4927.66, + "Y": -49.26, + "Z": 5699.68 + }, + "3. Architectural Profile": { + "Repository Archetype": "Static: Literature & Documentation", + "Repository Drift (Z-Score)": 0.0, + "Repository Fingerprint": {}, + "File Archetype": "N/A", + "File Drift (Z-Score)": 0.0, + "File Fingerprint": {}, + "Total LOC": 1034, + "Coding LOC": 0, + "Documentation LOC": 849, + "Structural Magnitude": 20.68, + "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 + }, + "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]" + }, + "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, + "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": 0, + "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": 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": 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": [] + }, + "cpp/NVDA/__init__.py": { + "1. Artifact Identity": { + "Filename": "__init__.py", + "Path": "cpp/NVDA/__init__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Parent Entity": "textInfos.TextInfo, Window, EditableTextBase, UIA", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 4420.2, + "Y": -37.12, + "Z": 5172.67 }, "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": 7016, - "Coding LOC": 6099, - "Documentation LOC": 184, - "Structural Magnitude": 4159.98, - "Control Flow Ratio": "66.2%", - "Popularity Rank": 2, + "Total LOC": 2794, + "Coding LOC": 2236, + "Documentation LOC": 316, + "Structural Magnitude": 1967.82, + "Control Flow Ratio": "56.6%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.805 + "Raw Cognitive Density": 0.762 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "45.39%", - "Error & Exception Exposure": "10.67%", - "Tech Debt Exposure": "8.72%", - "Testing Exposure": "2.51%", - "API Exposure": "1.94%", - "Concurrency Exposure": "12.2%", - "State Flux Exposure": "16.35%", - "Commented Logic Exposure": "5.29%", + "Cognitive Load Exposure": "43.67%", + "Error & Exception Exposure": "54.34%", + "Tech Debt Exposure": "97.75%", + "Testing Exposure": "80.0%", + "API Exposure": "1.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "95.91%", + "Commented Logic Exposure": "4.89%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.68%", + "Documentation Exposure": "18.43%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "resolveTypeOfNodeUncached", - "Structural Impact": 799.4, - "Lines of Code (LOC)": 1092, - "Control Flow Branches": 429, - "Input Parameters": 2, - "Control Flow Ratio": "63.4%", - "Start Line": 1980, - "End Line": 3071 - }, - { - "Function Name": "resolveExpressionTypeFromAncestors", - "Structural Impact": 311.9, - "Lines of Code (LOC)": 424, - "Control Flow Branches": 129, - "Input Parameters": 4, - "Control Flow Ratio": "62.0%", - "Start Line": 6445, - "End Line": 6868 + "Function Name": "_getTextWithFieldsForUIARange", + "Structural Impact": 297.5, + "Lines of Code (LOC)": 310, + "Control Flow Branches": 93, + "Input Parameters": 8, + "Control Flow Ratio": "86.1%", + "Start Line": 720, + "End Line": 1029 }, { - "Function Name": "getFieldAccessType", - "Structural Impact": 216.5, - "Lines of Code (LOC)": 215, + "Function Name": "findOverlayClasses", + "Structural Impact": 173.0, + "Lines of Code (LOC)": 273, "Control Flow Branches": 91, - "Input Parameters": 4, - "Control Flow Ratio": "65.0%", - "Start Line": 4997, - "End Line": 5211 - }, - { - "Function Name": "resolveType", - "Structural Impact": 147.4, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 80, - "Input Parameters": 2, - "Control Flow Ratio": "77.7%", - "Start Line": 5901, - "End Line": 6042 - }, - { - "Function Name": "collectDeclarationsOfContainer", - "Structural Impact": 82.8, - "Lines of Code (LOC)": 88, - "Control Flow Branches": 31, - "Input Parameters": 5, - "Control Flow Ratio": "91.2%", - "Start Line": 6046, - "End Line": 6133 - }, - { - "Function Name": "eql", - "Structural Impact": 75.5, - "Lines of Code (LOC)": 90, - "Control Flow Branches": 40, - "Input Parameters": 2, - "Control Flow Ratio": "53.3%", - "Start Line": 3487, - "End Line": 3576 - }, - { - "Function Name": "lookupSymbolFieldInit", - "Structural Impact": 68.7, - "Lines of Code (LOC)": 51, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "66.7%", - "Start Line": 6380, - "End Line": 6430 - }, - { - "Function Name": "resolveLangrefType", - "Structural Impact": 60.3, - "Lines of Code (LOC)": 63, - "Control Flow Branches": 32, "Input Parameters": 2, - "Control Flow Ratio": "68.1%", - "Start Line": 4873, - "End Line": 4935 + "Control Flow Ratio": "71.1%", + "Start Line": 1194, + "End Line": 1466 }, { - "Function Name": "resolveBindingOfNodeUncached", - "Structural Impact": 58.1, - "Lines of Code (LOC)": 88, + "Function Name": "_getFormatFieldAtRange", + "Structural Impact": 74.0, + "Lines of Code (LOC)": 94, "Control Flow Branches": 30, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 3073, - "End Line": 3160 - }, - { - "Function Name": "resolveVarDeclAlias", - "Structural Impact": 56.1, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 29, - "Input Parameters": 2, - "Control Flow Ratio": "70.7%", - "Start Line": 667, - "End Line": 748 - }, - { - "Function Name": "resolveFunctionTypeFromCall", - "Structural Impact": 56.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 23, "Input Parameters": 4, - "Control Flow Ratio": "85.2%", - "Start Line": 1825, - "End Line": 1870 + "Control Flow Ratio": "88.2%", + "Start Line": 351, + "End Line": 444 }, { - "Function Name": "resolveArrayCat", - "Structural Impact": 49.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 23, - "Input Parameters": 3, - "Control Flow Ratio": "82.1%", - "Start Line": 1394, - "End Line": 1417 + "Function Name": "_get_states", + "Structural Impact": 58.7, + "Lines of Code (LOC)": 100, + "Control Flow Branches": 37, + "Input Parameters": 1, + "Control Flow Ratio": "94.9%", + "Start Line": 1907, + "End Line": 2006 }, { - "Function Name": "lookupSymbol", - "Structural Impact": 46.0, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 21, - "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 4514, - "End Line": 4552 + "Function Name": "_getTextWithFields_text", + "Structural Impact": 54.5, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 22, + "Input Parameters": 4, + "Control Flow Ratio": "91.7%", + "Start Line": 654, + "End Line": 715 }, { - "Function Name": "resolveCallsiteReferences", - "Structural Impact": 42.1, - "Lines of Code (LOC)": 80, + "Function Name": "__init__", + "Structural Impact": 52.2, + "Lines of Code (LOC)": 60, "Control Flow Branches": 21, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1744, - "End Line": 1823 - }, - { - "Function Name": "getSymbolFieldAccessesArrayList", - "Structural Impact": 40.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 12, - "Input Parameters": 8, - "Control Flow Ratio": "92.3%", - "Start Line": 6922, - "End Line": 6947 + "Input Parameters": 4, + "Control Flow Ratio": "95.5%", + "Start Line": 468, + "End Line": 527 }, { - "Function Name": "resolveReturnValueOfFuncNode", - "Structural Impact": 31.8, + "Function Name": "_getFormatFieldAnnotationTypes", + "Structural Impact": 39.8, "Lines of Code (LOC)": 36, - "Control Flow Branches": 14, - "Input Parameters": 3, - "Control Flow Ratio": "58.3%", - "Start Line": 837, - "End Line": 872 + "Control Flow Branches": 16, + "Input Parameters": 4, + "Control Flow Ratio": "94.1%", + "Start Line": 305, + "End Line": 340 }, { - "Function Name": "firstParamIs", - "Structural Impact": 30.1, - "Lines of Code (LOC)": 42, + "Function Name": "kwargsFromSuper", + "Structural Impact": 34.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 13, - "Input Parameters": 3, - "Control Flow Ratio": "61.9%", - "Start Line": 448, - "End Line": 489 + "Input Parameters": 4, + "Control Flow Ratio": "68.4%", + "Start Line": 1469, + "End Line": 1521 }, { - "Function Name": "resolveFieldAccessBinding", - "Structural Impact": 27.1, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 12, + "Function Name": "_getFormatFieldIndent", + "Structural Impact": 33.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 15, "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 756, - "End Line": 778 + "Control Flow Ratio": "93.8%", + "Start Line": 233, + "End Line": 267 }, { - "Function Name": "getSymbolFieldAccessesHighlight", - "Structural Impact": 27.1, - "Lines of Code (LOC)": 32, + "Function Name": "__init__", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 35, "Control Flow Branches": 8, - "Input Parameters": 7, - "Control Flow Ratio": "66.7%", - "Start Line": 6949, - "End Line": 6980 + "Input Parameters": 4, + "Control Flow Ratio": "88.9%", + "Start Line": 1527, + "End Line": 1561 }, { - "Function Name": "fromSlice", - "Structural Impact": 25.6, - "Lines of Code (LOC)": 31, + "Function Name": "_get_devInfo", + "Structural Impact": 19.3, + "Lines of Code (LOC)": 46, "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 1039, - "End Line": 1069 + "Input Parameters": 1, + "Control Flow Ratio": "61.1%", + "Start Line": 1759, + "End Line": 1804 }, { - "Function Name": "createErrorUnion", - "Structural Impact": 25.4, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 11, - "Input Parameters": 3, - "Control Flow Ratio": "84.6%", - "Start Line": 3391, - "End Line": 3419 + "Function Name": "_getControlFieldForUIAObject", + "Structural Impact": 17.7, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 5, + "Input Parameters": 5, + "Control Flow Ratio": "55.6%", + "Start Line": 585, + "End Line": 645 }, { - "Function Name": "getDocCommentTokenIndex", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 13, + "Function Name": "_prefetchUIACacheForPropertyIDs", + "Structural Impact": 16.9, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "76.5%", - "Start Line": 108, - "End Line": 127 + "Control Flow Ratio": "72.7%", + "Start Line": 1163, + "End Line": 1189 }, { - "Function Name": "resolveUnionTag", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 939, - "End Line": 966 + "Function Name": "event_UIA_notification", + "Structural Impact": 16.2, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 5, + "Input Parameters": 5, + "Control Flow Ratio": "71.4%", + "Start Line": 2430, + "End Line": 2459 }, { - "Function Name": "createArray", - "Structural Impact": 23.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, + "Function Name": "find", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 5, "Input Parameters": 4, - "Control Flow Ratio": "81.8%", - "Start Line": 3334, - "End Line": 3360 - }, - { - "Function Name": "instanceStdBuiltinType", - "Structural Impact": 23.6, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "63.2%", - "Start Line": 4939, - "End Line": 4960 + "Control Flow Ratio": "55.6%", + "Start Line": 155, + "End Line": 184 }, { - "Function Name": "resolveStructInitType", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, + "Function Name": "_getFormatFieldSuperscriptsAndSubscripts", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 6885, - "End Line": 6905 + "Control Flow Ratio": "85.7%", + "Start Line": 211, + "End Line": 226 }, { - "Function Name": "drain", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 10, - "Input Parameters": 3, + "Function Name": "move", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 4, "Control Flow Ratio": "71.4%", - "Start Line": 352, - "End Line": 370 - }, - { - "Function Name": "resolveArrayMult", - "Structural Impact": 22.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 1381, - "End Line": 1392 + "Start Line": 1062, + "End Line": 1086 }, { - "Function Name": "resolveImportString", - "Structural Impact": 21.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "64.3%", - "Start Line": 4845, - "End Line": 4871 + "Function Name": "_get_positionInfo", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2321, + "End Line": 2343 }, { - "Function Name": "createPointer", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 31, + "Function Name": "_get_positionInfo", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 25, "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "77.8%", - "Start Line": 3302, - "End Line": 3332 + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 2549, + "End Line": 2573 }, { - "Function Name": "isGeneric", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 55, - "Control Flow Branches": 12, + "Function Name": "event_UIA_dropTargetEffect", + "Structural Impact": 12.5, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3578, - "End Line": 3632 + "Control Flow Ratio": "70.0%", + "Start Line": 2468, + "End Line": 2490 }, { - "Function Name": "isConditional", - "Structural Impact": 20.2, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3977, - "End Line": 4013 + "Function Name": "doAction", + "Structural Impact": 11.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 2293, + "End Line": 2306 }, { - "Function Name": "typeDefinitionToken", - "Structural Impact": 20.2, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 12, + "Function Name": "_get_role", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, "Input Parameters": 1, "Control Flow Ratio": "75.0%", - "Start Line": 4465, - "End Line": 4501 - }, - { - "Function Name": "resolveCoercedIPValue", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "44.4%", - "Start Line": 1428, - "End Line": 1448 - }, - { - "Function Name": "resolveStringLiteral", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1536, - "End Line": 1570 + "Start Line": 1838, + "End Line": 1857 }, { - "Function Name": "createTuple", - "Structural Impact": 18.3, + "Function Name": "event_stateChange", + "Structural Impact": 10.8, "Lines of Code (LOC)": 19, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 3362, - "End Line": 3380 + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 2629, + "End Line": 2647 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 3421, - "End Line": 3485 + "Function Name": "_getFormatFieldFontAttributes", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "80.0%", + "Start Line": 197, + "End Line": 209 }, { - "Function Name": "pointerElementType", - "Structural Impact": 17.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, + "Function Name": "compareEndPoints", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "53.8%", - "Start Line": 4423, - "End Line": 4443 + "Control Flow Ratio": "66.7%", + "Start Line": 1105, + "End Line": 1114 }, { - "Function Name": "definitionToken", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, + "Function Name": "setEndPoint", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, "Input Parameters": 3, - "Control Flow Ratio": "70.0%", - "Start Line": 5694, - "End Line": 5708 + "Control Flow Ratio": "80.0%", + "Start Line": 1116, + "End Line": 1125 }, { - "Function Name": "stringLiteralContentLoc", - "Structural Impact": 16.7, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 5272, - "End Line": 5294 + "Function Name": "_get_parent", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 2040, + "End Line": 2058 }, { - "Function Name": "resolveUnionTagAccess", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "54.5%", - "Start Line": 968, - "End Line": 982 + "Function Name": "_getReadOnlyState", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2008, + "End Line": 2023 }, { - "Function Name": "writeAll", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "87.5%", - "Start Line": 372, - "End Line": 385 + "Function Name": "_getUIAPattern", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "60.0%", + "Start Line": 1599, + "End Line": 1602 }, { - "Function Name": "isInstanceCall", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 418, - "End Line": 437 + "Function Name": "_getFormatFieldCulture", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 342, + "End Line": 349 }, { - "Function Name": "resolveErrorSetIPIndex", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "53.8%", - "Start Line": 1572, - "End Line": 1581 + "Function Name": "_get_controllerFor", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2369, + "End Line": 2394 }, { - "Function Name": "isConst", - "Structural Impact": 13.7, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 7, + "Function Name": "_get_UIAElementAtStart", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "46.7%", - "Start Line": 5763, - "End Line": 5810 + "Control Flow Ratio": "50.0%", + "Start Line": 547, + "End Line": 570 }, { - "Function Name": "findReturnStatementInternal", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, + "Function Name": "correctAPIForRelation", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 804, - "End Line": 822 + "Start Line": 2034, + "End Line": 2038 }, { - "Function Name": "pointerSize", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 5, + "Function Name": "isDescendantOf", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 4411, - "End Line": 4421 + "Control Flow Ratio": "60.0%", + "Start Line": 2348, + "End Line": 2367 }, { - "Function Name": "isNamespace", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, + "Function Name": "_get_keyboardShortcut", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 4298, - "End Line": 4313 + "Control Flow Ratio": "66.7%", + "Start Line": 1874, + "End Line": 1887 }, { - "Function Name": "next", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, + "Function Name": "_get_rowHeaderText", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 4, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 6165, - "End Line": 6191 + "Start Line": 2170, + "End Line": 2184 }, { - "Function Name": "resolveBindingOfNodeInternal", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 19, + "Function Name": "_get_columnHeaderText", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 15, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1960, - "End Line": 1978 - }, - { - "Function Name": "getSymbolEnumLiteral", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 6870, - "End Line": 6883 + "Start Line": 2198, + "End Line": 2212 }, { - "Function Name": "resolveExpressionType", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 6432, - "End Line": 6443 + "Function Name": "_get_TextInfo", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 1742, + "End Line": 1754 }, { - "Function Name": "resolveInternPoolValue", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, + "Function Name": "_get__level", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1450, - "End Line": 1460 + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2509, + "End Line": 2518 }, { - "Function Name": "isStructType", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, + "Function Name": "_get_description", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 4286, - "End Line": 4296 + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2537, + "End Line": 2543 }, { - "Function Name": "isErrorSetType", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, + "Function Name": "getActionName", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 4343, - "End Line": 4352 + "Control Flow Ratio": "60.0%", + "Start Line": 2286, + "End Line": 2291 }, { - "Function Name": "innermostScopeAtIndexWithTag", - "Structural Impact": 8.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "_getUIACacheablePropertyValue", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 6221, - "End Line": 6234 + "Start Line": 1149, + "End Line": 1161 }, { - "Function Name": "getSymbolFieldAccesses", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 13, + "Function Name": "_getFormatFieldHeadings", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, - "Input Parameters": 6, - "Control Flow Ratio": "40.0%", - "Start Line": 6908, - "End Line": 6920 + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 295, + "End Line": 303 }, { - "Function Name": "resolveOptionalIPValue", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 8, + "Function Name": "_get_selectionContainer", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 1419, - "End Line": 1426 + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 1673, + "End Line": 1686 }, { - "Function Name": "isPublic", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 4, + "Function Name": "_get_children", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 5845, - "End Line": 5869 + "Control Flow Ratio": "42.9%", + "Start Line": 2124, + "End Line": 2137 }, { - "Function Name": "isGenericFunc", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 4381, - "End Line": 4393 + "Function Name": "_getFormatFieldColor", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 275, + "End Line": 281 }, { - "Function Name": "createOptional", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, + "Function Name": "_get_labeledBy", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 3382, - "End Line": 3389 + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 2396, + "End Line": 2407 }, { - "Function Name": "getContainerKind", + "Function Name": "_get_value", "Structural Impact": 6.3, "Lines of Code (LOC)": 12, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4269, - "End Line": 4280 + "Control Flow Ratio": "42.9%", + "Start Line": 2782, + "End Line": 2793 }, { - "Function Name": "resolveFieldAccess", + "Function Name": "_getFormatFieldLineSpacing", "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 751, - "End Line": 754 + "Control Flow Ratio": "66.7%", + "Start Line": 283, + "End Line": 287 }, { - "Function Name": "resolveIntegerLiteral", + "Function Name": "_getFormatFieldLinks", "Structural Impact": 6.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1462, - "End Line": 1465 + "Control Flow Ratio": "66.7%", + "Start Line": 289, + "End Line": 293 }, { - "Function Name": "resolveDeclLiteralResultType", + "Function Name": "_get__shouldAllowUIALiveRegionChangeEvent", "Structural Impact": 6.2, "Lines of Code (LOC)": 11, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4361, - "End Line": 4371 + "Control Flow Ratio": "50.0%", + "Start Line": 1587, + "End Line": 1597 }, { - "Function Name": "isNoreturnType", + "Function Name": "_getIndentValueDisplayString", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 446, + "End Line": 463 + }, + { + "Function Name": "_get_presentationType", "Structural Impact": 6.1, "Lines of Code (LOC)": 8, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "60.0%", - "Start Line": 4402, - "End Line": 4409 + "Start Line": 2025, + "End Line": 2032 }, { - "Function Name": "isMetaType", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, + "Function Name": "event_UIA_window_windowOpen", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4335, - "End Line": 4341 - }, - { - "Function Name": "pop", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 5333, - "End Line": 5340 + "Control Flow Ratio": "60.0%", + "Start Line": 2669, + "End Line": 2677 }, { - "Function Name": "createPointerType", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, + "Function Name": "_get_focusRedirect", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 3781, - "End Line": 3792 + "Start Line": 2753, + "End Line": 2761 }, { - "Function Name": "withoutIPIndex", - "Structural Impact": 5.5, + "Function Name": "_get_hasIrrelevantLocation", + "Structural Impact": 6.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 3878, - "End Line": 3883 + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2314, + "End Line": 2319 }, { - "Function Name": "compare", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_name", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2739, + "End Line": 2745 + }, + { + "Function Name": "_getBoundingRectsFromUIARange", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "40.0%", - "Start Line": 6175, - "End Line": 6180 + "Start Line": 1040, + "End Line": 1053 }, { - "Function Name": "getFunctionSignature", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "collapse", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, "Control Flow Branches": 2, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 158, - "End Line": 162 + "Start Line": 1091, + "End Line": 1103 }, { - "Function Name": "resolveInstanceOfNode", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "__eq__", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1936, - "End Line": 1939 + "Control Flow Ratio": "33.3%", + "Start Line": 529, + "End Line": 534 }, { - "Function Name": "resolveTypeOfNode", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "_isEqual", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1943, - "End Line": 1946 + "Control Flow Ratio": "33.3%", + "Start Line": 1563, + "End Line": 1569 }, { - "Function Name": "resolveTypeOfNodeInternal", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 4, + "Function Name": "_get_UIAAnnotationObjects", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 1948, - "End Line": 1951 + "Start Line": 1691, + "End Line": 1704 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_previous", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 3846, - "End Line": 3850 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2060, + "End Line": 2071 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_next", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 4838, - "End Line": 4842 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2076, + "End Line": 2087 }, { - "Function Name": "eql", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, + "Function Name": "_get_firstChild", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 5658, - "End Line": 5662 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2089, + "End Line": 2100 }, { - "Function Name": "createArrayType", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 3794, - "End Line": 3804 + "Function Name": "_get_lastChild", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2102, + "End Line": 2113 }, { - "Function Name": "next", + "Function Name": "_get__controlFieldUIACacheRequest", "Structural Impact": 4.7, "Lines of Code (LOC)": 10, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "40.0%", - "Start Line": 4186, - "End Line": 4195 + "Start Line": 137, + "End Line": 146 }, { - "Function Name": "loc", + "Function Name": "_get_childCount", "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 5241, - "End Line": 5265 + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2139, + "End Line": 2147 }, { - "Function Name": "allDigits", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_location", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1374, - "End Line": 1379 + "Control Flow Ratio": "33.3%", + "Start Line": 2252, + "End Line": 2260 }, { - "Function Name": "createErrorUnionType", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 3, + "Function Name": "_get_description", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 3820, - "End Line": 3829 + "Start Line": 2594, + "End Line": 2602 }, { - "Function Name": "ipIndex", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_description", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3871, - "End Line": 3876 + "Control Flow Ratio": "40.0%", + "Start Line": 2527, + "End Line": 2533 }, { - "Function Name": "isRoot", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Function Name": "_get_UIASelectionPattern", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 4258, - "End Line": 4263 + "Start Line": 2613, + "End Line": 2619 }, { - "Function Name": "isTaggedUnion", + "Function Name": "_get_NVDAObjectAtStart", "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4327, - "End Line": 4332 + "Control Flow Ratio": "40.0%", + "Start Line": 541, + "End Line": 545 }, { - "Function Name": "isEnumLiteral", + "Function Name": "_get_UIAFullDescription", "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 4354, - "End Line": 4359 + "Control Flow Ratio": "40.0%", + "Start Line": 1859, + "End Line": 1863 }, { - "Function Name": "isTypeFunc", + "Function Name": "_get_UIAHelpText", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1865, + "End Line": 1869 + }, + { + "Function Name": "_get_value", "Structural Impact": 4.5, "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4373, - "End Line": 4378 + "Control Flow Ratio": "33.3%", + "Start Line": 2274, + "End Line": 2279 }, { - "Function Name": "isFunc", + "Function Name": "event_valueChange", "Structural Impact": 4.5, "Lines of Code (LOC)": 6, "Control Flow Branches": 2, "Input Parameters": 1, "Control Flow Ratio": "66.7%", - "Start Line": 4395, - "End Line": 4400 + "Start Line": 2585, + "End Line": 2590 }, { - "Function Name": "fromIP", + "Function Name": "_get_TextInfo", "Structural Impact": 4.4, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2770, + "End Line": 2773 + }, + { + "Function Name": "_getFormatFieldFontName", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 3885, - "End Line": 3892 + "Start Line": 186, + "End Line": 189 }, { - "Function Name": "eql", + "Function Name": "_getFormatFieldFontSize", "Structural Impact": 4.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 4975, - "End Line": 4979 - }, - { - "Function Name": "hash", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 3639, - "End Line": 3647 + "Control Flow Ratio": "50.0%", + "Start Line": 191, + "End Line": 195 }, { - "Function Name": "isMetaType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getFormatFieldStyle", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 646, - "End Line": 651 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 228, + "End Line": 231 }, { - "Function Name": "createTupleType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getFormatFieldAlignment", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "50.0%", - "Start Line": 3806, - "End Line": 3811 + "Start Line": 269, + "End Line": 273 }, { - "Function Name": "createOptionalType", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, + "Function Name": "_getTextFromHeaderElement", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3813, - "End Line": 3818 + "Control Flow Ratio": "25.0%", + "Start Line": 2161, + "End Line": 2168 }, { - "Function Name": "isTypeFunction", + "Function Name": "getTextWithFields", "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 2, "Control Flow Ratio": "33.3%", - "Start Line": 654, - "End Line": 657 + "Start Line": 1031, + "End Line": 1035 }, { - "Function Name": "eql", + "Function Name": "getSelectedItemsCount", "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 4991, - "End Line": 4994 + "Control Flow Ratio": "25.0%", + "Start Line": 1664, + "End Line": 1668 }, { - "Function Name": "isCaptureByRef", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 18, + "Function Name": "event_UIA_layoutInvalidated", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 16, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 5812, - "End Line": 5829 + "Control Flow Ratio": "33.3%", + "Start Line": 2710, + "End Line": 2725 }, { - "Function Name": "writeString", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_processID", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 4574, - "End Line": 4576 + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2240, + "End Line": 2250 }, { - "Function Name": "init", + "Function Name": "_get_UIASelectionPattern2", "Structural Impact": 3.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 48, - "End Line": 64 + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1653, + "End Line": 1662 }, { - "Function Name": "toNode", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, + "Function Name": "_get_UIATextEditPattern", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "25.0%", - "Start Line": 4827, - "End Line": 4831 + "Start Line": 1722, + "End Line": 1730 }, { - "Function Name": "peek", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, + "Function Name": "_get_liveRegionPoliteness", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 5325, - "End Line": 5330 - }, - { - "Function Name": "collectAllSymbolsAtSourceIndex", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6136, - "End Line": 6144 - }, - { - "Function Name": "eql", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3926, - "End Line": 3932 - }, - { - "Function Name": "getPositionContext", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 5355, - "End Line": 5361 + "Control Flow Ratio": "25.0%", + "Start Line": 1829, + "End Line": 1836 }, { - "Function Name": "eql", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 7007, - "End Line": 7013 + "Function Name": "_get_UIAChildren", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 2115, + "End Line": 2122 }, { - "Function Name": "renderBuiltinFunctionSignature", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 392, - "End Line": 397 + "Function Name": "_get_table", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2226, + "End Line": 2233 }, { - "Function Name": "getVariableSignature", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 491, - "End Line": 496 + "Function Name": "_get_shouldAllowUIAFocusEvent", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1579, + "End Line": 1583 }, { - "Function Name": "resolveGenericTypeInternal", - "Structural Impact": 2.5, + "Function Name": "_get_UIAAutomationId", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 786, - "End Line": 791 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1806, + "End Line": 1811 }, { - "Function Name": "resolveGeneric", - "Structural Impact": 2.5, + "Function Name": "_get_UIAFrameworkId", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3655, - "End Line": 3660 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1813, + "End Line": 1818 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "_get_name", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 3864, - "End Line": 3868 - }, - { - "Function Name": "rawStringify", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 4583, - "End Line": 4588 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1823, + "End Line": 1827 }, { - "Function Name": "eql", - "Structural Impact": 2.5, + "Function Name": "_get_rowNumber", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 5672, - "End Line": 5676 - }, - { - "Function Name": "lookupSymbolGlobal", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6312, - "End Line": 6317 - }, - { - "Function Name": "of", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6987, - "End Line": 6993 - }, - { - "Function Name": "collectDocComments", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 129 - }, - { - "Function Name": "iterateLabels", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 6202, - "End Line": 6202 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2149, + "End Line": 2153 }, { - "Function Name": "rawStringifyParameter", - "Structural Impact": 2.2, + "Function Name": "_get_rowSpan", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 186 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2155, + "End Line": 2159 }, { - "Function Name": "rawStringifyFunction", - "Structural Impact": 2.2, + "Function Name": "_get_columnNumber", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 248, - "End Line": 252 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2186, + "End Line": 2190 }, { - "Function Name": "next", - "Structural Impact": 2.2, + "Function Name": "_get_columnSpan", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1878, - "End Line": 1882 - }, - { - "Function Name": "eql", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 3649, - "End Line": 3652 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2192, + "End Line": 2196 }, { - "Function Name": "lookupLabel", - "Structural Impact": 2.2, + "Function Name": "_get_rowCount", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6290, - "End Line": 6294 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2214, + "End Line": 2218 }, { - "Function Name": "lookupSymbolContainer", - "Structural Impact": 2.2, + "Function Name": "_get_columnCount", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6355, - "End Line": 6359 - }, - { - "Function Name": "init", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 338, - "End Line": 350 - }, - { - "Function Name": "hash", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4967, - "End Line": 4973 - }, - { - "Function Name": "iterateEnclosingScopes", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6194, - "End Line": 6200 - }, - { - "Function Name": "hash", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6998, - "End Line": 7005 - }, - { - "Function Name": "getDocCommentsBeforeToken", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 77, - "End Line": 77 - }, - { - "Function Name": "getDocComments", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 83, - "End Line": 83 - }, - { - "Function Name": "trimCommonIndentation", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 583, - "End Line": 583 - }, - { - "Function Name": "resolveGenericType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 780, - "End Line": 780 - }, - { - "Function Name": "resolveOrelseType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 897, - "End Line": 897 - }, - { - "Function Name": "resolveAddressOf", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 909, - "End Line": 909 - }, - { - "Function Name": "resolveUnwrapErrorUnionType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 917, - "End Line": 917 - }, - { - "Function Name": "resolveBracketAccessType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1076, - "End Line": 1076 - }, - { - "Function Name": "resolveBracketAccess", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1133, - "End Line": 1133 - }, - { - "Function Name": "resolvePropertyType", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1246, - "End Line": 1246 - }, - { - "Function Name": "coerceIP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1583, - "End Line": 1583 - }, - { - "Function Name": "resolvePeerTypes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1593, - "End Line": 1593 - }, - { - "Function Name": "resolvePeerTypesIP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1608, - "End Line": 1608 - }, - { - "Function Name": "resolvePeerErrorSets", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1614, - "End Line": 1614 - }, - { - "Function Name": "resolvePeerTypesInternal", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1627, - "End Line": 1627 - }, - { - "Function Name": "resolveBindingOfNode", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1953, - "End Line": 1958 - }, - { - "Function Name": "of", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3166, - "End Line": 3171 + "Control Flow Ratio": "33.3%", + "Start Line": 2220, + "End Line": 2224 }, { - "Function Name": "hash", - "Structural Impact": 2.0, + "Function Name": "_get_UIAValue", + "Structural Impact": 3.1, "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3920, - "End Line": 3924 - }, - { - "Function Name": "getAllTypesWithHandlesArraySet", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4016, - "End Line": 4016 - }, - { - "Function Name": "stringifyTypeOf", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4554, - "End Line": 4554 - }, - { - "Function Name": "stringifyTypeVal", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 4564, - "End Line": 4564 - }, - { - "Function Name": "push", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 5321, - "End Line": 5321 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2262, + "End Line": 2266 }, { - "Function Name": "tokenLocAppend", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5343, - "End Line": 5348 + "Function Name": "_get_UIARangeValue", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2268, + "End Line": 2272 }, { - "Function Name": "hash", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5665, - "End Line": 5670 + "Function Name": "_get_hasFocus", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2308, + "End Line": 2312 }, { - "Function Name": "innermostScopeAtIndex", - "Structural Impact": 2.0, + "Function Name": "event_UIA_dragDropEffect", + "Structural Impact": 3.1, "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 6214, - "End Line": 6219 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2461, + "End Line": 2466 }, { - "Function Name": "innermostContainer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 6236, - "End Line": 6236 + "Function Name": "_get_value", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2621, + "End Line": 2625 }, { - "Function Name": "findReturnStatement", - "Structural Impact": 1.9, + "Function Name": "_get_tableID", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 824, - "End Line": 827 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2235, + "End Line": 2238 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, + "Function Name": "_get_actionCount", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3841, - "End Line": 3844 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2281, + "End Line": 2284 }, { - "Function Name": "hash", - "Structural Impact": 1.9, + "Function Name": "event_valueChange", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3859, - "End Line": 3862 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2415, + "End Line": 2418 }, { - "Function Name": "init", - "Structural Impact": 1.9, + "Function Name": "_get_positionInfo", + "Structural Impact": 3.0, "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4164, - "End Line": 4167 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2520, + "End Line": 2523 }, { - "Function Name": "isContainerKind", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 4282, - "End Line": 4284 + "Function Name": "_get_description", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1871, + "End Line": 1872 }, { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_getTextFromUIARange", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4833, - "End Line": 4836 + "Start Line": 647, + "End Line": 652 }, { - "Function Name": "of", + "Function Name": "expand", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4987, - "End Line": 4989 + "Start Line": 1058, + "End Line": 1060 }, { - "Function Name": "deinit", + "Function Name": "getNormalizedUIATextRangeFromElement", "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 5317, - "End Line": 5319 - }, - { - "Function Name": "hashWithHasher", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5653, - "End Line": 5656 + "Start Line": 1523, + "End Line": 1525 }, { - "Function Name": "eql", + "Function Name": "event_UIA_systemAlert", "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 5685, - "End Line": 5687 - }, - { - "Function Name": "allocType", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 71, - "End Line": 71 - }, - { - "Function Name": "stringifyParameter", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 173, - "End Line": 173 - }, - { - "Function Name": "stringifyFunction", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 239, - "End Line": 239 + "Start Line": 2420, + "End Line": 2428 }, { - "Function Name": "hasSelfParam", + "Function Name": "_get_UIATextPattern", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 439, - "End Line": 439 + "Start Line": 1706, + "End Line": 1712 }, { - "Function Name": "resolveReturnType", + "Function Name": "_get_UIATableItemPattern", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 831, - "End Line": 831 + "Start Line": 1714, + "End Line": 1720 }, { - "Function Name": "resolveOptionalUnwrap", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_controlFieldNVDAObjectClass", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 875, - "End Line": 875 + "Start Line": 92, + "End Line": 97 }, { - "Function Name": "resolveFuncProtoOfCallable", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get__coreCycleUIAPropertyCacheElementCache", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 984, - "End Line": 984 + "Start Line": 1142, + "End Line": 1147 }, { - "Function Name": "resolveDerefType", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAInvokePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 992, - "End Line": 992 + "Start Line": 1604, + "End Line": 1609 }, { - "Function Name": "resolveDerefBinding", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAGridPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 997, - "End Line": 997 + "Start Line": 1611, + "End Line": 1616 }, { - "Function Name": "bracketAccessTypeFromIPIndex", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIARangeValuePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1082, - "End Line": 1082 + "Start Line": 1618, + "End Line": 1623 }, { - "Function Name": "resolvePrimitive", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIAValuePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1512, - "End Line": 1512 + "Start Line": 1625, + "End Line": 1630 }, { - "Function Name": "fromEither", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIATogglePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3899, - "End Line": 3899 + "Start Line": 1632, + "End Line": 1637 }, { - "Function Name": "getAllTypesWithHandles", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIASelectionItemPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3971, - "End Line": 3971 + "Start Line": 1639, + "End Line": 1644 }, { - "Function Name": "instanceTypeVal", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIASelectionPattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4198, - "End Line": 4198 + "Start Line": 1646, + "End Line": 1651 }, { - "Function Name": "instanceUnchecked", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "_get_UIALegacyIAccessiblePattern", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4203, - "End Line": 4203 + "Start Line": 1732, + "End Line": 1737 }, { - "Function Name": "typeOf", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "updateCaret", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4226, - "End Line": 4226 + "Start Line": 1130, + "End Line": 1133 }, { - "Function Name": "arrayInfo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "event_gainFocus", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4445, - "End Line": 4445 + "Start Line": 1571, + "End Line": 1573 }, { - "Function Name": "docComments", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "event_loseFocus", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4503, - "End Line": 4503 + "Start Line": 1575, + "End Line": 1577 }, { - "Function Name": "initCapacity", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "fetch", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5312, - "End Line": 5312 + "Start Line": 415, + "End Line": 416 }, { - "Function Name": "docComments", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, + "Function Name": "__hash__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5831, - "End Line": 5831 + "Start Line": 538, + "End Line": 539 }, { - "Function Name": "root", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "_get_bookmark", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3263, - "End Line": 3268 + "Start Line": 572, + "End Line": 573 }, { - "Function Name": "hash64", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "_get_text", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3835, - "End Line": 3839 + "Start Line": 1037, + "End Line": 1038 }, { - "Function Name": "deinit", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Function Name": "_get_boundingRects", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 69 + "Start Line": 1055, + "End Line": 1056 }, { - "Function Name": "fmtEscapedSnippet", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "copy", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 390 + "Start Line": 1088, + "End Line": 1089 }, { - "Function Name": "hash32", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "updateSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3831, - "End Line": 3833 + "Start Line": 1127, + "End Line": 1128 }, { - "Function Name": "ArrayMap", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "setFocus", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3854, - "End Line": 3856 + "Start Line": 1756, + "End Line": 1757 }, { - "Function Name": "isGenericType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "scrollIntoView", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4265, - "End Line": 4267 + "Start Line": 2345, + "End Line": 2346 }, { - "Function Name": "isEnumType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_UIA_controllerFor", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4315, - "End Line": 4317 + "Start Line": 2409, + "End Line": 2410 }, { - "Function Name": "isUnionType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_UIA_elementSelected", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4319, - "End Line": 4321 + "Start Line": 2412, + "End Line": 2413 }, { - "Function Name": "isOpaqueType", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_value", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4323, - "End Line": 4325 + "Start Line": 2506, + "End Line": 2507 }, { - "Function Name": "isErrSetDef", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "_get_value", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5307, - "End Line": 5309 + "Start Line": 2575, + "End Line": 2576 }, { - "Function Name": "nameToken", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "event_focusEntered", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5690, - "End Line": 5692 + "Start Line": 2582, + "End Line": 2583 }, { - "Function Name": "typeDeclarationNode", + "Function Name": "event_nameChange", "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5710, - "End Line": 5710 + "Start Line": 2691, + "End Line": 2692 }, { - "Function Name": "isStatic", + "Function Name": "event_stateChange", "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 5871, - "End Line": 5871 + "Start Line": 2694, + "End Line": 2695 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2284, - "Sequential Logic Declarations": 1166, - "Function Parameters": 197, - "Function/Method Declarations": 197, - "Class/Entity Declarations": 37, - "Defensive Programming Constructs": 1439, - "Type/Safety Bypasses": 55, + "Control Flow Branches": 620, + "Sequential Logic Declarations": 475, + "Function Parameters": 147, + "Function/Method Declarations": 147, + "Class/Entity Declarations": 24, + "Defensive Programming Constructs": 177, + "Type/Safety Bypasses": 37, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 193, - "State Mutations / Variable Reassignments": 567, - "Commented-out Code (Dead Logic)": 9, - "Structured Documentation Blocks": 111, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 2, + "Exposed API / Public Exports": 61, + "State Mutations / Variable Reassignments": 311, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 33, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 39, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 114, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 10, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 54, + "Collection Iterators / Comprehensions": 10, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 15, + "Module Dependencies (Imports)": 50, "Authorship Metadata": 0, - "Planned Work (TODOs)": 15, - "Acknowledged Tech Debt (FIXMEs)": 1, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 4, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 269, - "Manual Memory Allocation": 20, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 5, - "Fatal Aborts & Exceptions": 951, + "Explicit Type Casts": 16, + "Fatal Aborts & Exceptions": 21, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 974, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 900, - "Resource Deallocation & Cleanup": 27, - "Private / Encapsulated Scopes": 990, - "Event Listeners & Subscribers": 0, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 325, + "Event Listeners & Subscribers": 79, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 5819, + "Structural Tab Indentations": 2171, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -411979,32 +415364,32 @@ "Feature Flags": 0, "Serialization Parsing": 0, "Regex Execution": 0, - "Time Date Logic": 0, + "Time Date Logic": 2, "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": 1104, - "Design Camel Case": 0, - "Design Snake Case": 984, - "Design Pascal Case": 96, + "Lazy Evaluation & Generators (O(1) Memory)": 12, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 410, + "Design Camel Case": 182, + "Design Snake Case": 183, + "Design Pascal Case": 28, "Design Upper Case": 0, - "Design Short Vars": 71, - "Design Long Vars": 2, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Design Short Vars": 27, + "Design Long Vars": 9, + "Duplicate Logic": 2, + "Orphaned Logic": 82, "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)": 32, + "External Network & I/O Hooks": 21, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -412020,712 +415405,1885 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 12, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 5, - "Total Downstream (Absolute Dependency Blast Radius)": 4 + "Direct Upstream (Fragility)": 34, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 9, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "DocumentScope.zig", - "DocumentStore.zig", - "Uri.zig", - "analyser/InternPool.zig", - "analyser/error_msg.zig", - "ast.zig", - "builtin", - "features/references.zig", - "offsets.zig", - "std", - "tracy", - "version_data" + ".", + ".excel", + ".wordDocument", + "NVDAObjects", + "NVDAObjects.behaviors", + "NVDAObjects.window", + "NVDAObjects.window.edit", + "NVDAState", + "UIAHandler", + "UIAHandler.customAnnotations", + "UIAHandler.customProps", + "UIAHandler.types", + "UIAHandler.utils", + "__future__", + "api", + "array", + "braille", + "colors", + "comtypes", + "config", + "config.configFlags", + "controlTypes", + "ctypes.wintypes", + "displayModel", + "languageHandler", + "locationHelper", + "logHandler", + "numbers", + "speech", + "textInfos", + "time", + "typing", + "ui", + "winVersion" ] }, - "zig/zls/ast.zig": { + "cpp/NVDA/braille.py": { "1. Artifact Identity": { - "Filename": "ast.zig", - "Path": "zig/zls/ast.zig", - "Language": "Zig", + "Filename": "braille.py", + "Path": "cpp/NVDA/braille.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", + "Indentation Style": "Tabs", + "Parent Entity": "StrEnum, NamedTuple, object", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2440.22, - "Y": -143.56, - "Z": 8036.73 + "X": 4330.03, + "Y": 4.61, + "Z": 5552.06 }, "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": 1847, - "Coding LOC": 1631, - "Documentation LOC": 73, - "Structural Magnitude": 778.82, - "Control Flow Ratio": "62.5%", + "Total LOC": 4054, + "Coding LOC": 2617, + "Documentation LOC": 1062, + "Structural Magnitude": 2563.34, + "Control Flow Ratio": "60.4%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.466 + "Raw Cognitive Density": 0.807 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "19.24%", - "Error & Exception Exposure": "47.02%", - "Tech Debt Exposure": "8.14%", + "Cognitive Load Exposure": "34.85%", + "Error & Exception Exposure": "78.81%", + "Tech Debt Exposure": "8.73%", "Testing Exposure": "80.0%", - "API Exposure": "2.76%", - "Concurrency Exposure": "14.1%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "5.71%", + "API Exposure": "2.52%", + "Concurrency Exposure": "13.6%", + "State Flux Exposure": "99.91%", + "Commented Logic Exposure": "4.84%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "35.01%", + "Documentation Exposure": "15.75%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "lastToken", - "Structural Impact": 164.3, - "Lines of Code (LOC)": 410, - "Control Flow Branches": 82, - "Input Parameters": 2, - "Control Flow Ratio": "81.2%", - "Start Line": 422, - "End Line": 831 + "Function Name": "_addTextWithFields", + "Structural Impact": 88.5, + "Lines of Code (LOC)": 116, + "Control Flow Branches": 36, + "Input Parameters": 4, + "Control Flow Ratio": "87.8%", + "Start Line": 1397, + "End Line": 1512 }, { - "Function Name": "indexOfBreakTarget", - "Structural Impact": 57.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 27, - "Input Parameters": 3, - "Control Flow Ratio": "79.4%", - "Start Line": 1812, - "End Line": 1846 + "Function Name": "getPropertiesBraille", + "Structural Impact": 87.8, + "Lines of Code (LOC)": 144, + "Control Flow Branches": 56, + "Input Parameters": 1, + "Control Flow Ratio": "96.6%", + "Start Line": 712, + "End Line": 855 }, { - "Function Name": "next", - "Structural Impact": 39.0, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1416, - "End Line": 1502 + "Function Name": "getFormatFieldBraille", + "Structural Impact": 77.4, + "Lines of Code (LOC)": 72, + "Control Flow Branches": 32, + "Input Parameters": 4, + "Control Flow Ratio": "94.1%", + "Start Line": 1190, + "End Line": 1261 }, { - "Function Name": "fullPtrTypeComponents", - "Structural Impact": 37.1, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "82.6%", - "Start Line": 11, - "End Line": 59 + "Function Name": "getControlFieldBraille", + "Structural Impact": 64.3, + "Lines of Code (LOC)": 110, + "Control Flow Branches": 23, + "Input Parameters": 5, + "Control Flow Ratio": "74.2%", + "Start Line": 956, + "End Line": 1065 }, { - "Function Name": "next", - "Structural Impact": 31.6, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 18, + "Function Name": "_getControlFieldForReportStart", + "Structural Impact": 63.3, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 15, + "Input Parameters": 13, + "Control Flow Ratio": "78.9%", + "Start Line": 1119, + "End Line": 1187 + }, + { + "Function Name": "update", + "Structural Impact": 36.9, + "Lines of Code (LOC)": 60, + "Control Flow Branches": 23, "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 966, - "End Line": 1059 + "Control Flow Ratio": "88.5%", + "Start Line": 875, + "End Line": 934 }, { - "Function Name": "init", - "Structural Impact": 25.2, - "Lines of Code (LOC)": 334, - "Control Flow Branches": 4, + "Function Name": "getFocusRegions", + "Structural Impact": 36.7, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 19, "Input Parameters": 2, - "Control Flow Ratio": "13.3%", - "Start Line": 1081, - "End Line": 1414 + "Control Flow Ratio": "65.5%", + "Start Line": 2281, + "End Line": 2321 }, { - "Function Name": "fullAsmComponents", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 7, + "Function Name": "getFocusContextRegions", + "Structural Impact": 33.2, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 16, "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 119, - "End Line": 140 + "Control Flow Ratio": "64.0%", + "Start Line": 2204, + "End Line": 2278 }, { - "Function Name": "fullWhileComponents", - "Structural Impact": 14.4, + "Function Name": "setDisplayByName", + "Structural Impact": 31.3, "Lines of Code (LOC)": 45, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 223, - "End Line": 267 + "Control Flow Branches": 12, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 2772, + "End Line": 2816 }, { - "Function Name": "paramFirstToken", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "83.3%", - "Start Line": 865, - "End Line": 870 + "Function Name": "_get_script", + "Structural Impact": 30.0, + "Lines of Code (LOC)": 63, + "Control Flow Branches": 18, + "Input Parameters": 1, + "Control Flow Ratio": "72.0%", + "Start Line": 3858, + "End Line": 3920 }, { - "Function Name": "fullIfComponents", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, + "Function Name": "update", + "Structural Impact": 28.6, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "89.5%", + "Start Line": 590, + "End Line": 651 + }, + { + "Function Name": "update", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 111, + "Control Flow Branches": 15, + "Input Parameters": 1, + "Control Flow Ratio": "78.9%", + "Start Line": 1517, + "End Line": 1627 + }, + { + "Function Name": "_normalizeCellArraySize", + "Structural Impact": 28.2, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 9, + "Input Parameters": 6, + "Control Flow Ratio": "81.8%", + "Start Line": 2891, + "End Line": 2924 + }, + { + "Function Name": "_getTryPorts", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 14, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 166, - "End Line": 198 + "Control Flow Ratio": "87.5%", + "Start Line": 3680, + "End Line": 3709 }, { - "Function Name": "fullForComponents", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, + "Function Name": "_set_windowEndPos", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 13, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 269, - "End Line": 296 + "Control Flow Ratio": "65.0%", + "Start Line": 1997, + "End Line": 2049 }, { - "Function Name": "initArray", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, + "Function Name": "_handlePendingUpdate", + "Structural Impact": 24.5, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 15, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1504, - "End Line": 1525 + "Control Flow Ratio": "71.4%", + "Start Line": 3138, + "End Line": 3174 }, { - "Function Name": "blockLabel", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 929, - "End Line": 936 + "Function Name": "handlePostConfigProfileSwitch", + "Structural Impact": 23.8, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "93.3%", + "Start Line": 3265, + "End Line": 3316 }, { - "Function Name": "isContainer", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 897, - "End Line": 916 + "Function Name": "handleCaretMove", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 10, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 3116, + "End Line": 3136 }, { - "Function Name": "forFull", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "handleUpdate", + "Structural Impact": 20.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 10, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 343, - "End Line": 354 + "Control Flow Ratio": "55.6%", + "Start Line": 3206, + "End Line": 3233 }, { - "Function Name": "isTaggedUnion", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, + "Function Name": "_getModifierGestures", + "Structural Impact": 20.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 10, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 886, - "End Line": 895 + "Control Flow Ratio": "83.3%", + "Start Line": 3715, + "End Line": 3742 }, { - "Function Name": "isBuiltinCall", - "Structural Impact": 5.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "_getControlFieldForLayoutPresentation", + "Structural Impact": 19.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 6, "Control Flow Ratio": "66.7%", - "Start Line": 918, - "End Line": 927 + "Start Line": 1068, + "End Line": 1088 }, { - "Function Name": "fullPtrType", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "handleGainFocus", + "Structural Impact": 19.1, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, + "Input Parameters": 3, "Control Flow Ratio": "66.7%", - "Start Line": 356, - "End Line": 364 + "Start Line": 3066, + "End Line": 3086 }, { - "Function Name": "fullWhile", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, + "Function Name": "_doNewObject", + "Structural Impact": 18.7, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 374, - "End Line": 381 + "Control Flow Ratio": "90.0%", + "Start Line": 3088, + "End Line": 3114 }, { - "Function Name": "fullIf", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "_onSecureDesktopStateChanged", + "Structural Impact": 18.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 366, - "End Line": 372 + "Control Flow Ratio": "81.8%", + "Start Line": 2541, + "End Line": 2566 }, { - "Function Name": "fullFor", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 383, - "End Line": 389 + "Function Name": "_appendFormattingMarker", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 5, + "Control Flow Ratio": "85.7%", + "Start Line": 1304, + "End Line": 1324 }, { - "Function Name": "fullAsm", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "handleReviewMove", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 391, - "End Line": 397 + "Control Flow Ratio": "75.0%", + "Start Line": 3235, + "End Line": 3249 }, { - "Function Name": "findMatchingRBrace", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, + "Function Name": "getTextInfoForBraillePos", + "Structural Impact": 17.3, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 8, "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 399, - "End Line": 401 + "Start Line": 1629, + "End Line": 1663 }, { - "Function Name": "errorSetFieldCount", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "previousLine", + "Structural Impact": 16.8, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 938, - "End Line": 946 + "Control Flow Ratio": "72.7%", + "Start Line": 1724, + "End Line": 1747 }, { - "Function Name": "identifierTokenFromIdentifierNode", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, + "Function Name": "_showSpeechInBraille", + "Structural Impact": 16.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 8, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 854, - "End Line": 858 + "Control Flow Ratio": "72.7%", + "Start Line": 2591, + "End Line": 2611 }, { - "Function Name": "hasInferredError", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "_calculateWindowRowBufferOffsets", + "Structural Impact": 15.5, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 860, - "End Line": 863 + "Control Flow Ratio": "63.6%", + "Start Line": 1956, + "End Line": 1988 }, { - "Function Name": "paramLastToken", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, + "Function Name": "_bgThreadExecutor", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 872, - "End Line": 874 + "Control Flow Ratio": "63.6%", + "Start Line": 3376, + "End Line": 3406 }, { - "Function Name": "isKeyword", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 403, - "End Line": 412 + "Function Name": "message", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "77.8%", + "Start Line": 3011, + "End Line": 3036 }, { - "Function Name": "ptrTypeSimple", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 74 + "Function Name": "bufferPositionsToRawText", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 1907, + "End Line": 1926 }, { - "Function Name": "ptrTypeSentinel", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 76, - "End Line": 88 + "Function Name": "_getAutoPorts", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 3649, + "End Line": 3668 }, { - "Function Name": "ptrTypeAligned", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, + "Function Name": "getDisplayTextForIdentifier", + "Structural Impact": 15.0, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 102 + "Control Flow Ratio": "63.6%", + "Start Line": 3944, + "End Line": 3966 }, { - "Function Name": "ptrTypeBitRange", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "_routeToTextInfo", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 7, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 117 + "Control Flow Ratio": "63.6%", + "Start Line": 1767, + "End Line": 1783 }, { - "Function Name": "asmFull", - "Structural Impact": 2.3, + "Function Name": "_setDisplay", + "Structural Impact": 14.7, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "71.4%", + "Start Line": 2843, + "End Line": 2868 + }, + { + "Function Name": "_switchDisplay", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "62.5%", + "Start Line": 2818, + "End Line": 2841 + }, + { + "Function Name": "regionPosToBufferPos", + "Structural Impact": 14.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1890, + "End Line": 1905 + }, + { + "Function Name": "getDisplayList", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 516, + "End Line": 539 + }, + { + "Function Name": "_writeCells", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2926, + "End Line": 2959 + }, + { + "Function Name": "getPossiblePorts", + "Structural Impact": 13.1, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 3612, + "End Line": 3646 + }, + { + "Function Name": "_getDisplayDriver", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "54.5%", + "Start Line": 496, + "End Line": 513 + }, + { + "Function Name": "_get_displayDimensions", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 2671, + "End Line": 2701 + }, + { + "Function Name": "_getTypeformFromFormatField", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 1370, + "End Line": 1386 + }, + { + "Function Name": "_getControlFieldForTableCell", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 3, + "Input Parameters": 7, + "Control Flow Ratio": "60.0%", + "Start Line": 1091, + "End Line": 1116 + }, + { + "Function Name": "getSerialPorts", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 3972, + "End Line": 3997 + }, + { + "Function Name": "_refreshEnabled", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 2728, + "End Line": 2745 + }, + { + "Function Name": "_handleProgressBarUpdate", + "Structural Impact": 11.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 3189, + "End Line": 3204 + }, + { + "Function Name": "scrollToCursorOrSelection", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "83.3%", + "Start Line": 3176, + "End Line": 3185 + }, + { + "Function Name": "getDisplayDrivers", + "Structural Impact": 10.9, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 4000, + "End Line": 4020 + }, + { + "Function Name": "nextLine", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1706, + "End Line": 1722 + }, + { + "Function Name": "scrollTo", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "57.1%", + "Start Line": 2082, + "End Line": 2089 + }, + { + "Function Name": "setTether", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "57.1%", + "Start Line": 2631, + "End Line": 2639 + }, + { + "Function Name": "routeTo", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1665, + "End Line": 1686 + }, + { + "Function Name": "terminate", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 2507, + "End Line": 2532 + }, + { + "Function Name": "_getAnnotationProperty", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 682, + "End Line": 706 + }, + { + "Function Name": "update", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 2108, + "End Line": 2127 + }, + { + "Function Name": "check", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3523, + "End Line": 3539 + }, + { + "Function Name": "_updateDisplay", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2875, + "End Line": 2889 + }, + { + "Function Name": "formatCellsForLog", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2324, + "End Line": 2336 + }, + { + "Function Name": "initialDisplay", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 3251, + "End Line": 3263 + }, + { + "Function Name": "_displayWithCursor", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 2965, + "End Line": 2974 + }, + { + "Function Name": "_ackTimeoutResetter", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 3408, + "End Line": 3412 + }, + { + "Function Name": "NVDAObjectHasUsefulText", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 478, + "End Line": 493 + }, + { + "Function Name": "_getFormattingTags", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1283, + "End Line": 1301 + }, + { + "Function Name": "_routeToTextInfo", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1688, + "End Line": 1704 + }, + { + "Function Name": "focus", + "Structural Impact": 7.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 2091, + "End Line": 2106 + }, + { + "Function Name": "_set_numCells", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 3583, + "End Line": 3588 + }, + { + "Function Name": "routeTo", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 950, + "End Line": 953 + }, + { + "Function Name": "_addFieldText", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1388, + "End Line": 1395 + }, + { + "Function Name": "rindex", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1807, + "End Line": 1811 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2457, + "End Line": 2505 + }, + { + "Function Name": "_enableDetection", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 3332, + "End Line": 3368 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 864, + "End Line": 873 + }, + { + "Function Name": "terminate", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3554, + "End Line": 3570 + }, + { + "Function Name": "_resetMessageTimer", + "Structural Impact": 6.3, "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 3038, + "End Line": 3049 + }, + { + "Function Name": "_get_visibleRegions", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1846, + "End Line": 1853 + }, + { + "Function Name": "scrollForward", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 2058, + "End Line": 2065 + }, + { + "Function Name": "scrollBack", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 2073, + "End Line": 2080 + }, + { + "Function Name": "_dismissMessage", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 153, - "End Line": 164 + "Control Flow Ratio": "66.7%", + "Start Line": 3051, + "End Line": 3064 }, { - "Function Name": "ifFull", - "Structural Impact": 2.3, + "Function Name": "windowPosToBufferPos", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 1934, + "End Line": 1945 + }, + { + "Function Name": "getTextInfoForWindowPos", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2161, + "End Line": 2168 + }, + { + "Function Name": "__init__", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1331, + "End Line": 1335 + }, + { + "Function Name": "bufferPosToRegionPos", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1884, + "End Line": 1888 + }, + { + "Function Name": "bufferPosToWindowPos", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1928, + "End Line": 1932 + }, + { + "Function Name": "handleDisplayUnavailable", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3318, + "End Line": 3330 + }, + { + "Function Name": "_get_identifiers", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 3829, + "End Line": 3841 + }, + { + "Function Name": "getParagraphStartMarker", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1264, + "End Line": 1280 + }, + { + "Function Name": "_isMultiline", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 1337, + "End Line": 1348 + }, + { + "Function Name": "_routingShouldMoveSystemCaret", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 1792, + "End Line": 1804 + }, + { + "Function Name": "_get_brailleToRawPos", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1873, + "End Line": 1882 + }, + { + "Function Name": "_get_windowBrailleCells", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2144, + "End Line": 2152 + }, + { + "Function Name": "_handleEnabledDecisionFalse", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2752, + "End Line": 2761 + }, + { + "Function Name": "_get_speechEffectWhenExecuted", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 3928, + "End Line": 3936 + }, + { + "Function Name": "_get_rawToBraillePos", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1862, + "End Line": 1869 + }, + { + "Function Name": "_get_cursorWindowPos", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2133, + "End Line": 2139 + }, + { + "Function Name": "_handleAck", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 3744, + "End Line": 3751 + }, + { + "Function Name": "_get_displayName", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 3843, + "End Line": 3850 + }, + { + "Function Name": "_getReadingUnit", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1514, + "End Line": 1515 + }, + { + "Function Name": "_speakOnNavigatingByUnit", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 4037, + "End Line": 4053 + }, + { + "Function Name": "shouldBeUsed", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 415, + "End Line": 423 + }, + { + "Function Name": "_setCursor", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1361, + "End Line": 1368 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2154, + "End Line": 2159 + }, + { + "Function Name": "_onSessionLockStateChanged", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2568, + "End Line": 2574 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 936, + "End Line": 940 + }, + { + "Function Name": "_set_enabled", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2747, + "End Line": 2750 + }, + { + "Function Name": "_onBrailleViewerChangedState", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2870, + "End Line": 2873 + }, + { + "Function Name": "routeTo", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3001, + "End Line": 3004 + }, + { + "Function Name": "getTextInfoForWindowPos", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 3006, + "End Line": 3009 + }, + { + "Function Name": "_speakOnRouting", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 4023, + "End Line": 4034 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 1350, + "End Line": 1359 + }, + { + "Function Name": "update", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2980, + "End Line": 2989 + }, + { + "Function Name": "_get_regionsWithPositions", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1855, + "End Line": 1860 + }, + { + "Function Name": "_nextWindow", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2051, + "End Line": 2056 + }, + { + "Function Name": "_previousWindow", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2067, + "End Line": 2071 + }, + { + "Function Name": "_clearAll", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2534, + "End Line": 2539 + }, + { + "Function Name": "_disableDetection", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 3370, + "End Line": 3374 + }, + { + "Function Name": "_get_scriptableObject", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 3852, + "End Line": 3856 + }, + { + "Function Name": "updateDisplay", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2129, + "End Line": 2131 + }, + { + "Function Name": "clearBrailleRegions", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2623, + "End Line": 2626 + }, + { + "Function Name": "scrollForward", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2991, + "End Line": 2994 + }, + { + "Function Name": "scrollBack", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2996, + "End Line": 2999 + }, + { + "Function Name": "DotFirmnessSetting", + "Structural Impact": 3.0, "Lines of Code (LOC)": 11, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 200, - "End Line": 210 + "Start Line": 3754, + "End Line": 3764 }, { - "Function Name": "whileCont", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Function Name": "__init__", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 550, + "End Line": 588 + }, + { + "Function Name": "_get_shouldAutoTether", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2641, + "End Line": 2642 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 319 + "Start Line": 1815, + "End Line": 1828 }, { - "Function Name": "whileFull", + "Function Name": "registerAutomaticDetection", "Structural Impact": 2.3, "Lines of Code (LOC)": 11, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 331 + "Start Line": 3542, + "End Line": 3552 }, { - "Function Name": "asmSimple", + "Function Name": "_set_displaySize", "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 151 + "Start Line": 2658, + "End Line": 2666 }, { - "Function Name": "ifSimple", + "Function Name": "__init__", "Structural Impact": 2.2, "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 212, - "End Line": 221 + "Start Line": 3511, + "End Line": 3520 }, { - "Function Name": "whileSimple", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "_set_displayDimensions", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 298, - "End Line": 307 + "Start Line": 2703, + "End Line": 2710 }, { - "Function Name": "forSimple", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "BrailleInputSetting", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 333, - "End Line": 341 + "Start Line": 3767, + "End Line": 3774 }, { - "Function Name": "paramLoc", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, + "Function Name": "HIDInputSetting", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 876, - "End Line": 880 + "Start Line": 3777, + "End Line": 3784 }, { - "Function Name": "init", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "suppressClearBrailleRegions", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 955, - "End Line": 963 + "Start Line": 2616, + "End Line": 2621 }, { - "Function Name": "paramSlice", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, + "Function Name": "_get_enabled", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 882, - "End Line": 884 + "Start Line": 2715, + "End Line": 2726 }, { - "Function Name": "lessThan", - "Structural Impact": 2.1, + "Function Name": "__init__", + "Structural Impact": 1.9, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1627, - "End Line": 1629 + "Start Line": 677, + "End Line": 679 }, { - "Function Name": "init", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "clear", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1531, - "End Line": 1531 + "Start Line": 1835, + "End Line": 1844 }, { - "Function Name": "next", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "invalidateCachedFocusAncestors", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1550, - "End Line": 1550 + "Start Line": 2192, + "End Line": 2201 }, { - "Function Name": "nextIgnoreClose", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_set_table", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1567, - "End Line": 1567 + "Start Line": 2583, + "End Line": 2585 }, { - "Function Name": "nodesOverlappingIndex", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_get_displaySize", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1594, - "End Line": 1594 + "Start Line": 2647, + "End Line": 2656 }, { - "Function Name": "nodesOverlappingIndexIncludingParseErrors", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "_get_source", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1622, - "End Line": 1622 + "Start Line": 3798, + "End Line": 3806 }, { - "Function Name": "nodesAtLoc", - "Structural Impact": 2.0, + "Function Name": "_get_model", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3808, + "End Line": 3817 + }, + { + "Function Name": "routeTo", + "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1653, - "End Line": 1653 + "Start Line": 653, + "End Line": 653 }, { - "Function Name": "append", - "Structural Impact": 2.0, + "Function Name": "previousLine", + "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1661, - "End Line": 1661 + "Start Line": 664, + "End Line": 664 }, { - "Function Name": "deinit", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_setCursor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1540, - "End Line": 1543 + "Start Line": 1757, + "End Line": 1758 }, { - "Function Name": "smallestEnclosingSubrange", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, + "Function Name": "_setCursor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1707, - "End Line": 1710 + "Start Line": 1785, + "End Line": 1786 }, { - "Function Name": "testDeclNameAndToken", + "Function Name": "_set_windowStartPos", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1953, + "End Line": 1954 + }, + { + "Function Name": "saveWindow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2170, + "End Line": 2177 + }, + { + "Function Name": "restoreWindow", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2179, + "End Line": 2186 + }, + { + "Function Name": "_get_numCells", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3575, + "End Line": 3581 + }, + { + "Function Name": "display", "Structural Impact": 1.8, "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 833, - "End Line": 833 + "Start Line": 3601, + "End Line": 3601 }, { - "Function Name": "skip", + "Function Name": "getManualPorts", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3671, + "End Line": 3677 + }, + { + "Function Name": "_get_id", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3819, + "End Line": 3823 + }, + { + "Function Name": "_get_keyNames", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3922, + "End Line": 3926 + }, + { + "Function Name": "_get_windowEndPos", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1576, - "End Line": 1578 + "Start Line": 1993, + "End Line": 1995 }, { - "Function Name": "parentNode", + "Function Name": "_get_table", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1581, - "End Line": 1583 + "Start Line": 2579, + "End Line": 2581 + }, + { + "Function Name": "_writeCellsInBackground", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2961, + "End Line": 2963 + }, + { + "Function Name": "_blink", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2976, + "End Line": 2978 + }, + { + "Function Name": "nextLine", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 661, + "End Line": 661 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 670, + "End Line": 671 + }, + { + "Function Name": "_isMultiline", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1751, + "End Line": 1752 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1754, + "End Line": 1755 + }, + { + "Function Name": "_getSelection", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1764, + "End Line": 1765 + }, + { + "Function Name": "_get_windowStartPos", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1950, + "End Line": 1951 + }, + { + "Function Name": "_get_windowRawText", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2141, + "End Line": 2142 + }, + { + "Function Name": "displaySize", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2372, + "End Line": 2373 + }, + { + "Function Name": "getTether", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2628, + "End Line": 2629 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3598, + "End Line": 3599 + }, + { + "Function Name": "initialize", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3428, + "End Line": 3436 + }, + { + "Function Name": "terminate", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3444, + "End Line": 3447 + }, + { + "Function Name": "pumpAll", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 3439, + "End Line": 3441 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 295, - "Sequential Logic Declarations": 177, - "Function Parameters": 56, - "Function/Method Declarations": 56, - "Class/Entity Declarations": 7, - "Defensive Programming Constructs": 120, - "Type/Safety Bypasses": 37, + "Control Flow Branches": 755, + "Sequential Logic Declarations": 495, + "Function Parameters": 172, + "Function/Method Declarations": 171, + "Class/Entity Declarations": 15, + "Defensive Programming Constructs": 108, + "Type/Safety Bypasses": 64, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 66, - "State Mutations / Variable Reassignments": 110, - "Commented-out Code (Dead Logic)": 4, - "Structured Documentation Blocks": 34, - "Unit Test Assertions": 9, - "Asynchronous/Concurrent Execution": 4, + "Exposed API / Public Exports": 122, + "State Mutations / Variable Reassignments": 617, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 98, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 8, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 8, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 2, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, + "Decorators and Annotations": 13, + "Generic Type Abstractions": 102, + "Collection Iterators / Comprehensions": 17, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 20, + "Module Dependencies (Imports)": 76, "Authorship Metadata": 0, - "Planned Work (TODOs)": 2, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 4, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 64, - "Manual Memory Allocation": 6, + "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": 3, - "Fatal Aborts & Exceptions": 132, + "Explicit Type Casts": 19, + "Fatal Aborts & Exceptions": 21, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 113, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 246, - "Resource Deallocation & Cleanup": 7, - "Private / Encapsulated Scopes": 201, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 7, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1528, + "Bitwise Operations": 1, + "Thread Synchronization Locks": 2, + "Immutable Data Declarations": 2, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 439, + "Event Listeners & Subscribers": 44, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 2471, + "Structural Space Indentations": 0, "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, + "Regex Execution": 1, + "Time Date Logic": 3, "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": 228, - "Design Camel Case": 0, - "Design Snake Case": 215, - "Design Pascal Case": 13, - "Design Upper Case": 0, - "Design Short Vars": 28, - "Design Long Vars": 2, + "Lazy Evaluation & Generators (O(1) Memory)": 24, + "Vectorized Math & Tensor Operations": 13, + "Core Var Decl": 570, + "Design Camel Case": 272, + "Design Snake Case": 252, + "Design Pascal Case": 7, + "Design Upper Case": 23, + "Design Short Vars": 1, + "Design Long Vars": 17, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -412735,7 +417293,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 22, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -412751,327 +417309,525 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 59, "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 5 + "Total Upstream (Absolute Fragility)": 7, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "offsets.zig", - "std" + "NVDAObjects", + "annotation", + "api", + "autoSettingsUtils.driverSetting", + "baseObject", + "bdDetect", + "brailleDisplayDrivers", + "brailleInput", + "brailleTables", + "brailleViewer", + "collections", + "config", + "config.configFlags", + "config.featureFlagEnums", + "contextlib", + "controlTypes", + "controlTypes.state", + "ctypes.wintypes", + "cursorManager", + "displayModel", + "driverHandler", + "easeOfAccess", + "editableText", + "enum", + "extensionPoints", + "globalCommands", + "gui", + "gui.guiHelper", + "hwIo", + "hwPortUtils", + "importlib", + "inputCore", + "itertools", + "keyboardHandler", + "locale", + "logHandler", + "louis", + "louisHelper", + "mathPres", + "pkgutil", + "queueHandler", + "re", + "scriptHandler", + "serial", + "speech.extensions", + "speech.speech", + "speech.types", + "textInfos", + "textUtils", + "threading", + "time", + "to", + "treeInterceptorHandler", + "typing", + "utils.security", + "winAPI.secureDesktop", + "winBindings.kernel32", + "winKernel", + "wx" ] }, - "zig/zls/print_ast.zig": { + "cpp/NVDA/core.py": { "1. Artifact Identity": { - "Filename": "print_ast.zig", - "Path": "zig/zls/print_ast.zig", - "Language": "Zig", + "Filename": "core.py", + "Path": "cpp/NVDA/core.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "zig", + "Indentation Style": "Tabs", + "Parent Entity": "Enum, wx.App, wx.Timer", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "python", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .zig)" + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 1817.01, - "Y": -155.75, - "Z": 8649.07 + "X": 4713.67, + "Y": -44.49, + "Z": 5951.19 }, "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": 950, - "Coding LOC": 897, - "Documentation LOC": 4, - "Structural Magnitude": 525.44, - "Control Flow Ratio": "81.4%", + "Total LOC": 1198, + "Coding LOC": 826, + "Documentation LOC": 183, + "Structural Magnitude": 409.92, + "Control Flow Ratio": "39.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.494 + "Raw Cognitive Density": 0.38 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.13%", - "Error & Exception Exposure": "12.8%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.46%", - "API Exposure": "0.75%", - "Concurrency Exposure": "16.07%", - "State Flux Exposure": "8.49%", + "Cognitive Load Exposure": "14.73%", + "Error & Exception Exposure": "60.58%", + "Tech Debt Exposure": "10.0%", + "Testing Exposure": "80.0%", + "API Exposure": "1.73%", + "Concurrency Exposure": "26.64%", + "State Flux Exposure": "68.91%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.16%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "renderNode", - "Structural Impact": 256.0, - "Lines of Code (LOC)": 444, - "Control Flow Branches": 134, - "Input Parameters": 2, - "Control Flow Ratio": "87.6%", - "Start Line": 79, - "End Line": 522 - }, - { - "Function Name": "renderOptField", - "Structural Impact": 25.6, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 10, - "Input Parameters": 4, - "Control Flow Ratio": "90.9%", - "Start Line": 561, - "End Line": 580 + "Function Name": "main", + "Structural Impact": 79.1, + "Lines of Code (LOC)": 462, + "Control Flow Branches": 55, + "Input Parameters": 0, + "Control Flow Ratio": "43.0%", + "Start Line": 672, + "End Line": 1133 }, { - "Function Name": "renderOptTokenField", - "Structural Impact": 21.1, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 590, - "End Line": 608 + "Function Name": "doStartupDialogs", + "Structural Impact": 21.2, + "Lines of Code (LOC)": 85, + "Control Flow Branches": 16, + "Input Parameters": 0, + "Control Flow Ratio": "51.6%", + "Start Line": 125, + "End Line": 209 }, { - "Function Name": "renderNodeSliceField", - "Structural Impact": 18.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "88.9%", - "Start Line": 610, - "End Line": 627 + "Function Name": "restart", + "Structural Impact": 13.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 281, + "End Line": 308 }, { - "Function Name": "renderToFile", - "Structural Impact": 18.7, - "Lines of Code (LOC)": 16, + "Function Name": "Notify", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 34, "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "58.3%", - "Start Line": 14, - "End Line": 29 + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 991, + "End Line": 1024 }, { - "Function Name": "main", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 34, + "Function Name": "_closeAllWindows", + "Structural Impact": 12.6, + "Lines of Code (LOC)": 52, "Control Flow Branches": 9, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "56.2%", - "Start Line": 845, - "End Line": 878 + "Start Line": 496, + "End Line": 547 }, { - "Function Name": "moveSourceCursor", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 25, + "Function Name": "computeRestartCLIArgs", + "Structural Impact": 12.3, + "Lines of Code (LOC)": 20, "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 629, - "End Line": 653 + "Input Parameters": 1, + "Control Flow Ratio": "58.3%", + "Start Line": 219, + "End Line": 238 }, { - "Function Name": "renderTrailing", + "Function Name": "resetConfiguration", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "19.0%", + "Start Line": 311, + "End Line": 403 + }, + { + "Function Name": "requestPump", "Structural Impact": 10.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 529, - "End Line": 539 + "Lines of Code (LOC)": 20, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1150, + "End Line": 1169 }, { - "Function Name": "renderOptItem", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 6, + "Function Name": "callLater", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "42.9%", + "Start Line": 1176, + "End Line": 1191 + }, + { + "Function Name": "_showAddonsErrors", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 47, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 545, - "End Line": 550 + "Input Parameters": 0, + "Control Flow Ratio": "62.5%", + "Start Line": 76, + "End Line": 122 }, { - "Function Name": "renderOptNode", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 7, + "Function Name": "triggerNVDAExit", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 71, - "End Line": 77 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 470, + "End Line": 493 }, { - "Function Name": "renderCustomField", + "Function Name": "_setUpWxApp", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 57, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 613, + "End Line": 669 + }, + { + "Function Name": "getWxLangOrNone", "Structural Impact": 6.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "100.0%", - "Start Line": 552, - "End Line": 555 + "Lines of Code (LOC)": 18, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "62.5%", + "Start Line": 422, + "End Line": 439 }, { - "Function Name": "nodeTagName", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 188, - "Control Flow Branches": 1, + "Function Name": "onEndSession", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 653, + "End Line": 665 + }, + { + "Function Name": "processRequest", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 981, + "End Line": 989 + }, + { + "Function Name": "restartUnsafely", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 3, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 656, - "End Line": 843 + "Start Line": 241, + "End Line": 278 }, { - "Function Name": "renderToWriter", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 3, + "Function Name": "_terminate", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1136, + "End Line": 1143 + }, + { + "Function Name": "_doLoseFocus", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 601, + "End Line": 610 + }, + { + "Function Name": "__getattr__", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 31, - "End Line": 42 + "Start Line": 39, + "End Line": 49 }, { - "Function Name": "renderRoot", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, + "Function Name": "_setInitialFocus", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "42.9%", + "Start Line": 406, + "End Line": 419 + }, + { + "Function Name": "onResult", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 66, - "End Line": 69 + "Control Flow Ratio": "40.0%", + "Start Line": 198, + "End Line": 205 }, { - "Function Name": "newline", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, + "Function Name": "queueRequest", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 2, "Input Parameters": 1, - "Control Flow Ratio": "100.0%", - "Start Line": 524, - "End Line": 527 + "Control Flow Ratio": "50.0%", + "Start Line": 972, + "End Line": 979 }, { - "Function Name": "renderTokenField", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, + "Function Name": "_handleNVDAModuleCleanupBeforeGUIExit", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 582, - "End Line": 588 + "Input Parameters": 0, + "Control Flow Ratio": "12.5%", + "Start Line": 550, + "End Line": 574 }, { - "Function Name": "renderField", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, + "Function Name": "_doShutdown", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "100.0%", - "Start Line": 557, - "End Line": 559 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 463, + "End Line": 467 }, { - "Function Name": "format", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 3, + "Function Name": "onQueryEndSession", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 52, - "End Line": 54 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 646, + "End Line": 649 }, { - "Function Name": "renderItem", - "Structural Impact": 3.6, + "Function Name": "OnAssert", + "Structural Impact": 2.6, "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "100.0%", - "Start Line": 541, - "End Line": 543 + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 627, + "End Line": 629 }, { - "Function Name": "fmt", + "Function Name": "_startNewInstance", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 442, + "End Line": 460 + }, + { + "Function Name": "_callLaterExec", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1194, + "End Line": 1197 + }, + { + "Function Name": "_initializeObjectCaches", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 598 + }, + { + "Function Name": "InitLocale", "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 631, + "End Line": 640 + }, + { + "Function Name": "handleReplaceCLIArg", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 129, + "End Line": 135 + }, + { + "Function Name": "__bool__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 68, + "End Line": 69 + }, + { + "Function Name": "_doPostNvdaStartupAction", + "Structural Impact": 1.1, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 + "Start Line": 1053, + "End Line": 1055 + }, + { + "Function Name": "isMainThread", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1146, + "End Line": 1147 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 215, - "Sequential Logic Declarations": 49, - "Function Parameters": 21, - "Function/Method Declarations": 20, - "Class/Entity Declarations": 3, - "Defensive Programming Constructs": 193, - "Type/Safety Bypasses": 15, + "Control Flow Branches": 141, + "Sequential Logic Declarations": 218, + "Function Parameters": 34, + "Function/Method Declarations": 34, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 48, + "Type/Safety Bypasses": 30, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 11, - "State Mutations / Variable Reassignments": 48, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 26, + "State Mutations / Variable Reassignments": 66, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 4, + "Structured Documentation Blocks": 17, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 12, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, - "Global State Dependencies": 6, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Global State Dependencies": 3, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 18, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 126, "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, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 22, - "Manual Memory Allocation": 1, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 28, + "Fatal Aborts & Exceptions": 11, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 46, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 95, - "Resource Deallocation & Cleanup": 6, - "Private / Encapsulated Scopes": 95, - "Event Listeners & Subscribers": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 1, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 114, + "Event Listeners & Subscribers": 8, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 874, + "Structural Tab Indentations": 771, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, + "Ipc Rpc Bridges": 4, "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, @@ -413079,14 +417835,14 @@ "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": 81, - "Design Camel Case": 1, - "Design Snake Case": 72, - "Design Pascal Case": 8, - "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 0, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 88, + "Design Camel Case": 35, + "Design Snake Case": 44, + "Design Pascal Case": 1, + "Design Upper Case": 4, + "Design Short Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -413112,121 +417868,440 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "Direct Upstream (Fragility)": 74, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, + "Total Upstream (Absolute Fragility)": 10, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "std", - "testing.zig" + "IAccessibleHandler", + "JABHandler", + "NVDAHelper", + "NVDAObjects", + "NVDAState", + "UIAHandler", + "_remoteClient", + "addonHandler", + "addonStore", + "api", + "appModuleHandler", + "argsParsing", + "audio", + "audioDucking", + "baseObject", + "bdDetect", + "braille", + "brailleInput", + "brailleTables", + "brailleViewer", + "buildVersion", + "characterProcessing", + "comtypes", + "config", + "configobj", + "dataclasses", + "displayModel", + "enum", + "eventHandler", + "extensionPoints", + "garbageHandler", + "globalPluginHandler", + "globalVars", + "gui", + "gui.installerGui", + "gui.message", + "gui.settingsDialogs", + "gui.startupDialogs", + "hwIo", + "inputCore", + "keyboardHandler", + "languageHandler", + "logHandler", + "mathPres", + "mouseHandler", + "nvwave", + "os", + "queueHandler", + "screenCurtain", + "shellapi", + "socket", + "speech", + "speechDictHandler", + "subprocess", + "sys", + "threading", + "time", + "tones", + "touchHandler", + "treeInterceptorHandler", + "typing", + "updateCheck", + "utils", + "utils.security", + "vision", + "watchdog", + "winAPI", + "winAPI.dpiAwareness", + "winAPI.messageWindow", + "winBindings.kernel32", + "winConsoleHandler", + "winUser", + "winVersion", + "wx" ] - } - } - }, - "cpp/NVDA": { - "Directory Group Magnitude": 7618.44, - "File Count": 12, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "66.7%", - "Static: Literature & Documentation": "33.3%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "32.3%", - "Error & Exception Exposure": "45.9%", - "Tech Debt Exposure": "32.23%", - "Testing Exposure": "40.42%", - "API Exposure": "2.51%", - "Concurrency Exposure": "3.35%", - "State Flux Exposure": "55.39%", - "Commented Logic Exposure": "0.81%", - "Specification Exposure": "66.67%", - "Instability Exposure": "33.33%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.24%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "cpp/NVDA/CODE_OF_CONDUCT.md": { + }, + "cpp/NVDA/espeak.py": { "1. Artifact Identity": { - "Filename": "CODE_OF_CONDUCT.md", - "Path": "cpp/NVDA/CODE_OF_CONDUCT.md", - "Language": "Markdown", + "Filename": "espeak.py", + "Path": "cpp/NVDA/espeak.py", + "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", + "Parent Entity": "SynthDriver", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" }, "2. Topological Coordinates": { - "X": 4629.5, - "Y": -1.04, - "Z": 5094.49 + "X": 3832.94, + "Y": 3.64, + "Z": 5596.96 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 83, - "Coding LOC": 0, - "Documentation LOC": 58, - "Structural Magnitude": 1.66, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Total LOC": 497, + "Coding LOC": 269, + "Documentation LOC": 185, + "Structural Magnitude": 222.48, + "Control Flow Ratio": "41.5%", + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 1.042 }, "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": "67.75%", + "Error & Exception Exposure": "77.07%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "80.0%", + "API Exposure": "0.34%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.96%", + "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": [], + "5. Function Analysis": [ + { + "Function Name": "speak", + "Structural Impact": 44.8, + "Lines of Code (LOC)": 64, + "Control Flow Branches": 23, + "Input Parameters": 2, + "Control Flow Ratio": "69.7%", + "Start Line": 323, + "End Line": 386 + }, + { + "Function Name": "_normalizeLangCommand", + "Structural Impact": 22.9, + "Lines of Code (LOC)": 43, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "84.6%", + "Start Line": 252, + "End Line": 294 + }, + { + "Function Name": "_handleLangChangeCommand", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "60.0%", + "Start Line": 296, + "End Line": 318 + }, + { + "Function Name": "_set_voice", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 464, + "End Line": 477 + }, + { + "Function Name": "_onIndexReached", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 479, + "End Line": 483 + }, + { + "Function Name": "_set_variant", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 491, + "End Line": 493 + }, + { + "Function Name": "_get_voice", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 454, + "End Line": 462 + }, + { + "Function Name": "_set_rateBoost", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 401, + "End Line": 406 + }, + { + "Function Name": "_set_rate", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 414, + "End Line": 419 + }, + { + "Function Name": "_getAvailableVoices", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 443, + "End Line": 452 + }, + { + "Function Name": "_get_rate", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 408, + "End Line": 412 + }, + { + "Function Name": "_getAvailableVariants", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 495, + "End Line": 496 + }, + { + "Function Name": "_processText", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 250 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 214, + "End Line": 224 + }, + { + "Function Name": "_set_pitch", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 425, + "End Line": 427 + }, + { + "Function Name": "_set_inflection", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 433, + "End Line": 435 + }, + { + "Function Name": "pause", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 391, + "End Line": 392 + }, + { + "Function Name": "_set_volume", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 440, + "End Line": 441 + }, + { + "Function Name": "_get_pitch", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 421, + "End Line": 423 + }, + { + "Function Name": "_get_inflection", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 429, + "End Line": 431 + }, + { + "Function Name": "check", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 211, + "End Line": 212 + }, + { + "Function Name": "_get_language", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 226, + "End Line": 227 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 388, + "End Line": 389 + }, + { + "Function Name": "_get_rateBoost", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 398, + "End Line": 399 + }, + { + "Function Name": "_get_volume", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 438 + }, + { + "Function Name": "terminate", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 485, + "End Line": 486 + }, + { + "Function Name": "_get_variant", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 488, + "End Line": 489 + } + ], "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, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 51, + "Sequential Logic Declarations": 72, + "Function Parameters": 28, + "Function/Method Declarations": 27, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 13, + "Type/Safety Bypasses": 4, "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": 2, + "Exposed API / Public Exports": 6, + "State Mutations / Variable Reassignments": 69, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 3, "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, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 3, "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, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -413237,17 +418312,17 @@ "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": 4, + "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, + "Private / Encapsulated Scopes": 104, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 256, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413264,19 +418339,19 @@ "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": 0, - "Design Camel Case": 0, - "Design Snake Case": 0, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 50, + "Design Camel Case": 22, + "Design Snake Case": 23, "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Upper Case": 3, + "Design Short Vars": 1, "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": 11, + "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, @@ -413297,89 +418372,120 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 1 + "Direct Upstream (Fragility)": 9, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [] + "9. Extracted Dependencies": [ + ".", + "collections", + "languageHandler", + "logHandler", + "os", + "speech.commands", + "speech.types", + "synthDriverHandler", + "typing" + ] }, - "cpp/NVDA/readme.md": { + "cpp/NVDA/ensureuv.ps1": { "1. Artifact Identity": { - "Filename": "readme.md", - "Path": "cpp/NVDA/readme.md", - "Language": "Markdown", + "Filename": "ensureuv.ps1", + "Path": "cpp/NVDA/ensureuv.ps1", + "Language": "Powershell", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.md)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .ps1)" }, "2. Topological Coordinates": { - "X": 4556.63, - "Y": -83.53, - "Z": 6056.42 + "X": 4209.4, + "Y": -92.37, + "Z": 6161.41 }, "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": 40, - "Coding LOC": 0, - "Documentation LOC": 27, - "Structural Magnitude": 1.0, - "Control Flow Ratio": "0.0%", + "Total LOC": 119, + "Coding LOC": 105, + "Documentation LOC": 1, + "Structural Magnitude": 70.0, + "Control Flow Ratio": "78.4%", "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.914 }, "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": "65.86%", + "Error & Exception Exposure": "82.98%", + "Tech Debt Exposure": "47.03%", + "Testing Exposure": "2.48%", + "API Exposure": "2.9%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.99%", + "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": [], + "5. Function Analysis": [ + { + "Function Name": "Install-Uv", + "Structural Impact": 34.7, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 21, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 16, + "End Line": 86 + }, + { + "Function Name": "Invoke-Uv", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 14 + } + ], "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, + "Control Flow Branches": 29, + "Sequential Logic Declarations": 8, + "Function Parameters": 2, + "Function/Method Declarations": 2, "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, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 2, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 31, "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, + "Closures and Anonymous Functions": 21, + "Global State Dependencies": 4, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 1, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, + "Metaprogramming & Reflection": 1, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, @@ -413392,10 +418498,10 @@ "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, + "Structured Telemetry & Logging": 4, + "Ad-hoc Print / Debug Statements": 12, + "Explicit Type Casts": 2, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -413404,14 +418510,14 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 89, "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, + "Serialization Parsing": 1, "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, @@ -413430,11 +418536,11 @@ "Design Short Vars": 0, "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": 5, - "Hyperlinked Literature References": 16, + "Structured Literature Headers": 0, + "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, @@ -413447,92 +418553,185 @@ "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, - "Sec Tainted Injection": 0, + "Sec Tainted Injection": 2, "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)": 7, + "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": [ - "./.github/CONTRIBUTING.md", - "./copying.txt", - "./projectDocs/community/expertsList.md", - "./projectDocs/community/readme.md", - "./projectDocs/issues/readme.md", - "./projectDocs/product_vision.md", - "CODE_OF_CONDUCT.md" - ] + "9. Extracted Dependencies": [] }, - "cpp/NVDA/contributors.txt": { + "cpp/NVDA/inProcess.cpp": { "1. Artifact Identity": { - "Filename": "contributors.txt", - "Path": "cpp/NVDA/contributors.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "inProcess.cpp", + "Path": "cpp/NVDA/inProcess.cpp", + "Language": "Cpp", + "Architect": "2006-2010 NVDA contributers", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 3801.96, - "Y": -53.3, - "Z": 5662.35 + "X": 4840.47, + "Y": 3.08, + "Z": 5288.74 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 243, - "Coding LOC": 0, - "Documentation LOC": 241, - "Structural Magnitude": 4.86, - "Control Flow Ratio": "0.0%", + "Total LOC": 196, + "Coding LOC": 153, + "Documentation LOC": 27, + "Structural Magnitude": 185.46, + "Control Flow Ratio": "51.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.966 }, "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": "70.32%", + "Error & Exception Exposure": "97.17%", + "Tech Debt Exposure": "23.28%", + "Testing Exposure": "80.0%", + "API Exposure": "8.72%", + "Concurrency Exposure": "0.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": [], + "5. Function Analysis": [ + { + "Function Name": "unregisterWindowsHook", + "Structural Impact": 14.8, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "70.0%", + "Start Line": 96, + "End Line": 113 + }, + { + "Function Name": "inProcess_getMessageHook", + "Structural Impact": 12.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "62.5%", + "Start Line": 116, + "End Line": 134 + }, + { + "Function Name": "execInThread", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 160, + "End Line": 195 + }, + { + "Function Name": "registerWindowsHook", + "Structural Impact": 9.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 84, + "End Line": 94 + }, + { + "Function Name": "inProcess_winEventCallback", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 150, + "End Line": 158 + }, + { + "Function Name": "inProcess_callWndProcHook", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 137, + "End Line": 147 + }, + { + "Function Name": "unregisterWinEventHook", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 72, + "End Line": 82 + }, + { + "Function Name": "inProcess_initialize", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 54 + }, + { + "Function Name": "registerWinEventHook", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 67, + "End Line": 70 + }, + { + "Function Name": "inProcess_terminate", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 56, + "End Line": 65 + } + ], "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, + "Control Flow Branches": 28, + "Sequential Logic Declarations": 26, + "Function Parameters": 15, + "Function/Method Declarations": 10, "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, + "Exposed API / Public Exports": 9, + "State Mutations / Variable Reassignments": 98, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, @@ -413544,17 +418743,17 @@ "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 16, + "Authorship Metadata": 1, "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, - "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Preprocessor Macros": 1, + "Pointer Arithmetic & Addressing": 23, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -413569,7 +418768,7 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 109, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413587,12 +418786,12 @@ "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": 18, + "Design Camel Case": 3, + "Design Snake Case": 14, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 11, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -413619,41 +418818,58 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 0, + "Direct Upstream (Fragility)": 16, "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": [ + "IA2Support.h", + "common/log.h", + "cstdio", + "gdiHooks.h", + "ia2LiveRegions.h", + "ime.h", + "inProcess.h", + "inputLangChange.h", + "list", + "map", + "nvdaHelperRemote.h", + "set", + "tsf.h", + "typedCharacter.h", + "windows.h", + "winword.h" + ] }, - "cpp/NVDA/copying.txt": { + "cpp/NVDA/nvdaControllerInternal.cpp": { "1. Artifact Identity": { - "Filename": "copying.txt", - "Path": "cpp/NVDA/copying.txt", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Filename": "nvdaControllerInternal.cpp", + "Path": "cpp/NVDA/nvdaControllerInternal.cpp", + "Language": "Cpp", + "Architect": "2006-2025 NV Access Limited, rui Batista, Google LLC, Christopher Toth", + "Indentation Style": "Tabs", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1, - "Identity Proof": "Prose Extension (.txt)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 4927.9, - "Y": -49.26, - "Z": 5699.92 + "X": 4050.97, + "Y": -5.82, + "Z": 5053.12 }, "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": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 1034, - "Coding LOC": 0, - "Documentation LOC": 849, - "Structural Magnitude": 20.68, + "Total LOC": 92, + "Coding LOC": 61, + "Documentation LOC": 13, + "Structural Magnitude": 30.12, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -413662,27 +418878,178 @@ "Raw Cognitive Density": 0.0 }, "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": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "100.0%", + "Testing Exposure": "2.59%", + "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": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "nvdaControllerInternal_displayModelTextChangeNotify", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 39, + "End Line": 41 + }, + { + "Function Name": "nvdaControllerInternal_drawFocusRectNotify", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 79, + "End Line": 81 + }, + { + "Function Name": "nvdaControllerInternal_inputCompositionUpdate", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 46 + }, + { + "Function Name": "nvdaControllerInternal_inputLangChangeNotify", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 23, + "End Line": 25 + }, + { + "Function Name": "nvdaControllerInternal_logMessage", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 36 + }, + { + "Function Name": "nvdaControllerInternal_inputCandidateListUpdate", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 49, + "End Line": 51 + }, + { + "Function Name": "nvdaControllerInternal_inputConversionModeUpdate", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 59, + "End Line": 61 + }, + { + "Function Name": "nvdaControllerInternal_vbufChangeNotify", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 64, + "End Line": 66 + }, + { + "Function Name": "nvdaControllerInternal_reportLiveRegion", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + }, + { + "Function Name": "nvdaControllerInternal_requestRegistration", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 18, + "End Line": 20 + }, + { + "Function Name": "nvdaControllerInternal_typedCharacterNotify", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 30 + }, + { + "Function Name": "nvdaControllerInternal_IMEOpenStatusUpdate", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 56 + }, + { + "Function Name": "nvdaControllerInternal_installAddonPackageFromPath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 71 + }, + { + "Function Name": "nvdaControllerInternal_handleRemoteURL", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 76 + }, + { + "Function Name": "nvdaControllerInternal_openConfigDirectory", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 91 + } + ], "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": 15, + "Function Parameters": 14, + "Function/Method Declarations": 15, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -413702,8 +419069,8 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 1, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, @@ -413711,7 +419078,7 @@ "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, - "Pointer Arithmetic & Addressing": 0, + "Pointer Arithmetic & Addressing": 16, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, @@ -413721,12 +419088,12 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 70, "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, + "Structural Tab Indentations": 15, "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, @@ -413752,7 +419119,7 @@ "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -413776,30 +419143,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": [ + "local/nvdaControllerInternal.h" + ] }, - "cpp/NVDA/__init__.py": { + "cpp/NVDA/storage.cpp": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "cpp/NVDA/__init__.py", - "Language": "Python", - "Architect": "Unknown Architect", + "Filename": "storage.cpp", + "Path": "cpp/NVDA/storage.cpp", + "Language": "Cpp", + "Architect": "2006-2022 NVDA contributors", "Indentation Style": "Tabs", - "Parent Entity": "textInfos.TextInfo, Window, EditableTextBase, UIA", "Doc Umbrella": 1.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": 4420.37, - "Y": -37.12, - "Z": 5172.8 + "X": 4073.22, + "Y": -11.18, + "Z": 5862.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -413808,5910 +419176,542 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2794, - "Coding LOC": 2236, - "Documentation LOC": 316, - "Structural Magnitude": 1967.82, - "Control Flow Ratio": "56.6%", + "Total LOC": 1247, + "Coding LOC": 1115, + "Documentation LOC": 62, + "Structural Magnitude": 2122.1, + "Control Flow Ratio": "71.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.762 + "Raw Cognitive Density": 1.427 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "43.67%", - "Error & Exception Exposure": "54.34%", - "Tech Debt Exposure": "97.75%", + "Cognitive Load Exposure": "90.39%", + "Error & Exception Exposure": "99.85%", + "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "1.64%", + "API Exposure": "11.58%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.91%", - "Commented Logic Exposure": "4.89%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.43%", + "Documentation Exposure": "49.86%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_getTextWithFieldsForUIARange", - "Structural Impact": 297.5, - "Lines of Code (LOC)": 310, - "Control Flow Branches": 93, - "Input Parameters": 8, - "Control Flow Ratio": "86.1%", - "Start Line": 720, - "End Line": 1029 - }, - { - "Function Name": "findOverlayClasses", - "Structural Impact": 173.0, - "Lines of Code (LOC)": 273, - "Control Flow Branches": 91, - "Input Parameters": 2, - "Control Flow Ratio": "71.1%", - "Start Line": 1194, - "End Line": 1466 + "Function Name": "VBufStorage_buffer_t::getLineOffsets", + "Structural Impact": 136.9, + "Lines of Code (LOC)": 142, + "Control Flow Branches": 52, + "Input Parameters": 5, + "Control Flow Ratio": "94.5%", + "Start Line": 1066, + "End Line": 1207 }, { - "Function Name": "_getFormatFieldAtRange", - "Structural Impact": 74.0, - "Lines of Code (LOC)": 94, - "Control Flow Branches": 30, - "Input Parameters": 4, - "Control Flow Ratio": "88.2%", - "Start Line": 351, - "End Line": 444 + "Function Name": "VBufStorage_buffer_t::findNodeByAttributes", + "Structural Impact": 105.1, + "Lines of Code (LOC)": 92, + "Control Flow Branches": 37, + "Input Parameters": 6, + "Control Flow Ratio": "84.1%", + "Start Line": 973, + "End Line": 1064 }, { - "Function Name": "_get_states", - "Structural Impact": 58.7, - "Lines of Code (LOC)": 100, - "Control Flow Branches": 37, - "Input Parameters": 1, - "Control Flow Ratio": "94.9%", - "Start Line": 1907, - "End Line": 2006 + "Function Name": "VBufStorage_fieldNode_t::nextNodeInTree", + "Structural Impact": 59.4, + "Lines of Code (LOC)": 68, + "Control Flow Branches": 27, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 57, + "End Line": 124 }, { - "Function Name": "_getTextWithFields_text", - "Structural Impact": 54.5, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 22, - "Input Parameters": 4, - "Control Flow Ratio": "91.7%", - "Start Line": 654, - "End Line": 715 + "Function Name": "VBufStorage_buffer_t::insertNode", + "Structural Impact": 57.5, + "Lines of Code (LOC)": 71, + "Control Flow Branches": 26, + "Input Parameters": 3, + "Control Flow Ratio": "76.5%", + "Start Line": 445, + "End Line": 515 }, { - "Function Name": "__init__", - "Structural Impact": 52.2, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 21, - "Input Parameters": 4, - "Control Flow Ratio": "95.5%", - "Start Line": 468, - "End Line": 527 + "Function Name": "VBufStorage_buffer_t::unlinkFieldNode", + "Structural Impact": 48.8, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 26, + "Input Parameters": 2, + "Control Flow Ratio": "89.7%", + "Start Line": 766, + "End Line": 806 }, { - "Function Name": "_getFormatFieldAnnotationTypes", - "Structural Impact": 39.8, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 16, - "Input Parameters": 4, - "Control Flow Ratio": "94.1%", - "Start Line": 305, - "End Line": 340 + "Function Name": "VBufStorage_buffer_t::replaceSubtrees", + "Structural Impact": 48.6, + "Lines of Code (LOC)": 123, + "Control Flow Branches": 29, + "Input Parameters": 1, + "Control Flow Ratio": "74.4%", + "Start Line": 642, + "End Line": 764 }, { - "Function Name": "kwargsFromSuper", - "Structural Impact": 34.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 13, - "Input Parameters": 4, - "Control Flow Ratio": "68.4%", - "Start Line": 1469, - "End Line": 1521 + "Function Name": "VBufStorage_fieldNode_t::getTextInRange", + "Structural Impact": 26.1, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 9, + "Input Parameters": 5, + "Control Flow Ratio": "81.8%", + "Start Line": 274, + "End Line": 306 }, { - "Function Name": "_getFormatFieldIndent", - "Structural Impact": 33.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 15, + "Function Name": "VBufStorage_buffer_t::addTextFieldNode", + "Structural Impact": 23.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 10, "Input Parameters": 3, - "Control Flow Ratio": "93.8%", - "Start Line": 233, - "End Line": 267 + "Control Flow Ratio": "76.9%", + "Start Line": 585, + "End Line": 621 }, { - "Function Name": "__init__", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "88.9%", - "Start Line": 1527, - "End Line": 1561 + "Function Name": "VBufStorage_fieldNode_t::generateAttributesForMarkupOpeningTag", + "Structural Impact": 21.7, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "90.0%", + "Start Line": 225, + "End Line": 258 }, { - "Function Name": "_get_devInfo", - "Structural Impact": 19.3, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "61.1%", - "Start Line": 1759, - "End Line": 1804 + "Function Name": "outputEscapedAttribute", + "Structural Impact": 21.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "81.8%", + "Start Line": 130, + "End Line": 149 }, { - "Function Name": "_getControlFieldForUIAObject", - "Structural Impact": 17.7, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 5, + "Function Name": "VBufStorage_buffer_t::locateControlFieldNodeAtOffset", + "Structural Impact": 20.6, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 7, "Input Parameters": 5, - "Control Flow Ratio": "55.6%", - "Start Line": 585, - "End Line": 645 + "Control Flow Ratio": "77.8%", + "Start Line": 887, + "End Line": 907 }, { - "Function Name": "_prefetchUIACacheForPropertyIDs", - "Structural Impact": 16.9, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 8, + "Function Name": "VBufStorage_fieldNode_t::matchAttributes", + "Structural Impact": 19.4, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 9, "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 1163, - "End Line": 1189 + "Control Flow Ratio": "69.2%", + "Start Line": 151, + "End Line": 191 }, { - "Function Name": "event_UIA_notification", - "Structural Impact": 16.2, - "Lines of Code (LOC)": 30, + "Function Name": "VBufStorage_textFieldNode_t::getTextInRange", + "Structural Impact": 15.8, + "Lines of Code (LOC)": 22, "Control Flow Branches": 5, "Input Parameters": 5, - "Control Flow Ratio": "71.4%", - "Start Line": 2430, - "End Line": 2459 - }, - { - "Function Name": "find", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "55.6%", - "Start Line": 155, - "End Line": 184 + "Control Flow Ratio": "83.3%", + "Start Line": 402, + "End Line": 423 }, { - "Function Name": "_getFormatFieldSuperscriptsAndSubscripts", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 16, + "Function Name": "VBufStorage_buffer_t::locateTextFieldNodeAtOffset", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 21, "Control Flow Branches": 6, "Input Parameters": 3, - "Control Flow Ratio": "85.7%", - "Start Line": 211, - "End Line": 226 - }, - { - "Function Name": "move", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 1062, - "End Line": 1086 - }, - { - "Function Name": "_get_positionInfo", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2321, - "End Line": 2343 + "Control Flow Ratio": "60.0%", + "Start Line": 865, + "End Line": 885 }, { - "Function Name": "_get_positionInfo", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 25, + "Function Name": "VBufStorage_buffer_t::isFieldNodeAtOffset", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 21, "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 2549, - "End Line": 2573 + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 843, + "End Line": 863 }, { - "Function Name": "event_UIA_dropTargetEffect", - "Structural Impact": 12.5, + "Function Name": "VBufStorage_buffer_t::addControlFieldNode", + "Structural Impact": 13.2, "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 2468, - "End Line": 2490 - }, - { - "Function Name": "doAction", - "Structural Impact": 11.1, - "Lines of Code (LOC)": 14, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 2293, - "End Line": 2306 - }, - { - "Function Name": "_get_role", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1838, - "End Line": 1857 - }, - { - "Function Name": "event_stateChange", - "Structural Impact": 10.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 2629, - "End Line": 2647 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 561, + "End Line": 583 }, { - "Function Name": "_getFormatFieldFontAttributes", - "Structural Impact": 10.7, + "Function Name": "VBufStorage_buffer_t::getTextInRange", + "Structural Impact": 11.8, "Lines of Code (LOC)": 13, "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "80.0%", - "Start Line": 197, - "End Line": 209 + "Input Parameters": 4, + "Control Flow Ratio": "57.1%", + "Start Line": 959, + "End Line": 971 }, { - "Function Name": "compareEndPoints", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 10, + "Function Name": "VBufStorage_fieldNode_t::locateTextFieldNodeAtOffset", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 17, "Control Flow Branches": 4, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1105, - "End Line": 1114 + "Start Line": 207, + "End Line": 223 }, { - "Function Name": "setEndPoint", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 10, + "Function Name": "VBufStorage_buffer_t::getSelectionOffsets", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 9, "Control Flow Branches": 4, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "80.0%", - "Start Line": 1116, - "End Line": 1125 - }, - { - "Function Name": "_get_parent", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 2040, - "End Line": 2058 - }, - { - "Function Name": "_getReadOnlyState", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2008, - "End Line": 2023 + "Start Line": 932, + "End Line": 940 }, { - "Function Name": "_getUIAPattern", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 4, + "Function Name": "VBufStorage_buffer_t::addTextFieldNode", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 18, "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "60.0%", - "Start Line": 1599, - "End Line": 1602 + "Input Parameters": 3, + "Control Flow Ratio": "37.5%", + "Start Line": 623, + "End Line": 640 }, { - "Function Name": "_getFormatFieldCulture", + "Function Name": "VBufStorage_buffer_t::getIdentifierFromControlFieldNode", "Structural Impact": 8.4, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 9, "Control Flow Branches": 3, "Input Parameters": 3, "Control Flow Ratio": "60.0%", - "Start Line": 342, - "End Line": 349 - }, - { - "Function Name": "_get_controllerFor", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2369, - "End Line": 2394 - }, - { - "Function Name": "_get_UIAElementAtStart", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 547, - "End Line": 570 + "Start Line": 922, + "End Line": 930 }, { - "Function Name": "correctAPIForRelation", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 5, + "Function Name": "VBufStorage_buffer_t::removeFieldNode", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 12, "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 2034, - "End Line": 2038 + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 808, + "End Line": 819 }, { - "Function Name": "isDescendantOf", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 20, + "Function Name": "VBufStorage_buffer_t::setSelectionOffsets", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 10, "Control Flow Branches": 3, "Input Parameters": 2, "Control Flow Ratio": "60.0%", - "Start Line": 2348, - "End Line": 2367 - }, - { - "Function Name": "_get_keyboardShortcut", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1874, - "End Line": 1887 + "Start Line": 942, + "End Line": 951 }, { - "Function Name": "_get_rowHeaderText", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2170, - "End Line": 2184 + "Function Name": "VBufStorage_buffer_t::addReferenceNodeToBuffer", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 1231, + "End Line": 1240 }, { - "Function Name": "_get_columnHeaderText", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 4, - "Input Parameters": 1, + "Function Name": "VBufStorage_buffer_t::isDescendantNode", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, "Control Flow Ratio": "50.0%", - "Start Line": 2198, - "End Line": 2212 + "Start Line": 1213, + "End Line": 1225 }, { - "Function Name": "_get_TextInfo", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 1742, - "End Line": 1754 + "Function Name": "VBufStorage_buffer_t::addControlFieldNode", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 548, + "End Line": 559 }, { - "Function Name": "_get__level", - "Structural Impact": 7.6, + "Function Name": "VBufStorage_buffer_t::getFieldNodeOffsets", + "Structural Impact": 4.5, "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2509, - "End Line": 2518 - }, - { - "Function Name": "_get_description", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2537, - "End Line": 2543 + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 832, + "End Line": 841 }, { - "Function Name": "getActionName", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_buffer_t::getControlFieldNodeWithIdentifier", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 2286, - "End Line": 2291 + "Control Flow Ratio": "33.3%", + "Start Line": 909, + "End Line": 920 }, { - "Function Name": "_getUIACacheablePropertyValue", - "Structural Impact": 6.7, + "Function Name": "VBufStorage_fieldNode_t::calculateOffsetInTree", + "Structural Impact": 3.6, "Lines of Code (LOC)": 13, "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1149, - "End Line": 1161 - }, - { - "Function Name": "_getFormatFieldHeadings", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 3, + "Input Parameters": 0, "Control Flow Ratio": "66.7%", - "Start Line": 295, - "End Line": 303 - }, - { - "Function Name": "_get_selectionContainer", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 1673, - "End Line": 1686 + "Start Line": 193, + "End Line": 205 }, { - "Function Name": "_get_children", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_buffer_t::deleteSubtree", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2124, - "End Line": 2137 + "Control Flow Ratio": "50.0%", + "Start Line": 526, + "End Line": 537 }, { - "Function Name": "_getFormatFieldColor", - "Structural Impact": 6.3, + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator<", + "Structural Impact": 3.2, "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 275, - "End Line": 281 + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 39, + "End Line": 45 }, { - "Function Name": "_get_labeledBy", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_fieldNode_t::getAttribute", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 2396, - "End Line": 2407 + "Control Flow Ratio": "25.0%", + "Start Line": 327, + "End Line": 334 }, { - "Function Name": "_get_value", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator!=", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2782, - "End Line": 2793 + "Control Flow Ratio": "50.0%", + "Start Line": 47, + "End Line": 49 }, { - "Function Name": "_getFormatFieldLineSpacing", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 283, - "End Line": 287 + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator==", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 51, + "End Line": 53 }, { - "Function Name": "_getFormatFieldLinks", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 289, - "End Line": 293 + "Function Name": "VBufStorage_buffer_t::isNodeInBuffer", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1227, + "End Line": 1229 }, { - "Function Name": "_get__shouldAllowUIALiveRegionChangeEvent", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, + "Function Name": "VBufStorage_fieldNode_t::getAttributesString", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 1587, - "End Line": 1597 + "Start Line": 336, + "End Line": 345 }, { - "Function Name": "_getIndentValueDisplayString", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Function Name": "VBufStorage_buffer_t::clearBuffer", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 446, - "End Line": 463 + "Start Line": 821, + "End Line": 830 }, { - "Function Name": "_get_presentationType", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2025, - "End Line": 2032 + "Function Name": "VBufStorage_fieldNode_t::generateMarkupOpeningTag", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 260, + "End Line": 266 }, { - "Function Name": "event_UIA_window_windowOpen", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2669, - "End Line": 2677 + "Function Name": "VBufStorage_controlFieldNode_t::generateAttributesForMarkupOpeningTag", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 359, + "End Line": 364 }, { - "Function Name": "_get_focusRedirect", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, + "Function Name": "VBufStorage_buffer_t::getTextLength", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "50.0%", - "Start Line": 2753, - "End Line": 2761 + "Start Line": 953, + "End Line": 957 }, { - "Function Name": "_get_hasIrrelevantLocation", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2314, - "End Line": 2319 + "Function Name": "VBufStorage_controlFieldNode_t::VBufStorage_controlFieldNode_t", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 373, + "End Line": 375 }, { - "Function Name": "_get_name", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2739, - "End Line": 2745 + "Function Name": "VBufStorage_buffer_t::hasContent", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 1209, + "End Line": 1211 }, { - "Function Name": "_getBoundingRectsFromUIARange", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::addAttribute", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1040, - "End Line": 1053 + "Control Flow Ratio": "0.0%", + "Start Line": 321, + "End Line": 325 }, { - "Function Name": "collapse", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_controlFieldNode_t::getIdentifier", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1091, - "End Line": 1103 + "Control Flow Ratio": "0.0%", + "Start Line": 377, + "End Line": 381 }, { - "Function Name": "__eq__", - "Structural Impact": 5.5, + "Function Name": "VBufStorage_textFieldNode_t::locateTextFieldNodeAtOffset", + "Structural Impact": 2.0, "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 529, - "End Line": 534 + "Control Flow Ratio": "0.0%", + "Start Line": 391, + "End Line": 396 }, { - "Function Name": "_isEqual", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::VBufStorage_fieldNode_t", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1563, - "End Line": 1569 + "Control Flow Ratio": "0.0%", + "Start Line": 313, + "End Line": 315 }, { - "Function Name": "_get_UIAAnnotationObjects", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1691, - "End Line": 1704 + "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::VBufStorage_controlFieldNodeIdentifier_t", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 37 }, { - "Function Name": "_get_previous", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_buffer_t::forgetControlFieldNode", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2060, - "End Line": 2071 + "Control Flow Ratio": "0.0%", + "Start Line": 437, + "End Line": 443 }, { - "Function Name": "_get_next", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_buffer_t::deleteNode", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2076, - "End Line": 2087 + "Control Flow Ratio": "0.0%", + "Start Line": 517, + "End Line": 524 }, { - "Function Name": "_get_firstChild", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_fieldNode_t::generateMarkupClosingTag", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2089, - "End Line": 2100 + "Control Flow Ratio": "0.0%", + "Start Line": 268, + "End Line": 272 }, { - "Function Name": "_get_lastChild", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, + "Function Name": "VBufStorage_controlFieldNode_t::disassociateFromBuffer", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2102, - "End Line": 2113 - }, - { - "Function Name": "_get__controlFieldUIACacheRequest", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 137, - "End Line": 146 - }, - { - "Function Name": "_get_childCount", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2139, - "End Line": 2147 - }, - { - "Function Name": "_get_location", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2252, - "End Line": 2260 - }, - { - "Function Name": "_get_description", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2594, - "End Line": 2602 - }, - { - "Function Name": "_get_description", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2527, - "End Line": 2533 - }, - { - "Function Name": "_get_UIASelectionPattern", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2613, - "End Line": 2619 - }, - { - "Function Name": "_get_NVDAObjectAtStart", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 541, - "End Line": 545 - }, - { - "Function Name": "_get_UIAFullDescription", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1859, - "End Line": 1863 - }, - { - "Function Name": "_get_UIAHelpText", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1865, - "End Line": 1869 - }, - { - "Function Name": "_get_value", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2274, - "End Line": 2279 - }, - { - "Function Name": "event_valueChange", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2585, - "End Line": 2590 - }, - { - "Function Name": "_get_TextInfo", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2770, - "End Line": 2773 - }, - { - "Function Name": "_getFormatFieldFontName", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 186, - "End Line": 189 - }, - { - "Function Name": "_getFormatFieldFontSize", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 191, - "End Line": 195 - }, - { - "Function Name": "_getFormatFieldStyle", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "_getFormatFieldAlignment", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 269, - "End Line": 273 - }, - { - "Function Name": "_getTextFromHeaderElement", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 2161, - "End Line": 2168 - }, - { - "Function Name": "getTextWithFields", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1031, - "End Line": 1035 - }, - { - "Function Name": "getSelectedItemsCount", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1664, - "End Line": 1668 - }, - { - "Function Name": "event_UIA_layoutInvalidated", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2710, - "End Line": 2725 - }, - { - "Function Name": "_get_processID", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2240, - "End Line": 2250 - }, - { - "Function Name": "_get_UIASelectionPattern2", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1653, - "End Line": 1662 - }, - { - "Function Name": "_get_UIATextEditPattern", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1722, - "End Line": 1730 - }, - { - "Function Name": "_get_liveRegionPoliteness", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1829, - "End Line": 1836 - }, - { - "Function Name": "_get_UIAChildren", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 2115, - "End Line": 2122 - }, - { - "Function Name": "_get_table", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2226, - "End Line": 2233 - }, - { - "Function Name": "_get_shouldAllowUIAFocusEvent", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1579, - "End Line": 1583 - }, - { - "Function Name": "_get_UIAAutomationId", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1806, - "End Line": 1811 - }, - { - "Function Name": "_get_UIAFrameworkId", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1813, - "End Line": 1818 - }, - { - "Function Name": "_get_name", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1823, - "End Line": 1827 - }, - { - "Function Name": "_get_rowNumber", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2149, - "End Line": 2153 - }, - { - "Function Name": "_get_rowSpan", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2155, - "End Line": 2159 - }, - { - "Function Name": "_get_columnNumber", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2186, - "End Line": 2190 - }, - { - "Function Name": "_get_columnSpan", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2192, - "End Line": 2196 - }, - { - "Function Name": "_get_rowCount", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2214, - "End Line": 2218 - }, - { - "Function Name": "_get_columnCount", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2220, - "End Line": 2224 - }, - { - "Function Name": "_get_UIAValue", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2262, - "End Line": 2266 - }, - { - "Function Name": "_get_UIARangeValue", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2268, - "End Line": 2272 - }, - { - "Function Name": "_get_hasFocus", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2308, - "End Line": 2312 - }, - { - "Function Name": "event_UIA_dragDropEffect", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2461, - "End Line": 2466 - }, - { - "Function Name": "_get_value", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2621, - "End Line": 2625 - }, - { - "Function Name": "_get_tableID", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2235, - "End Line": 2238 - }, - { - "Function Name": "_get_actionCount", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2281, - "End Line": 2284 - }, - { - "Function Name": "event_valueChange", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2415, - "End Line": 2418 - }, - { - "Function Name": "_get_positionInfo", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2520, - "End Line": 2523 - }, - { - "Function Name": "_get_description", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1871, - "End Line": 1872 - }, - { - "Function Name": "_getTextFromUIARange", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 647, - "End Line": 652 - }, - { - "Function Name": "expand", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1058, - "End Line": 1060 - }, - { - "Function Name": "getNormalizedUIATextRangeFromElement", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1523, - "End Line": 1525 - }, - { - "Function Name": "event_UIA_systemAlert", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2420, - "End Line": 2428 - }, - { - "Function Name": "_get_UIATextPattern", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1706, - "End Line": 1712 - }, - { - "Function Name": "_get_UIATableItemPattern", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1714, - "End Line": 1720 - }, - { - "Function Name": "_get_controlFieldNVDAObjectClass", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 97 - }, - { - "Function Name": "_get__coreCycleUIAPropertyCacheElementCache", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1142, - "End Line": 1147 - }, - { - "Function Name": "_get_UIAInvokePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1604, - "End Line": 1609 - }, - { - "Function Name": "_get_UIAGridPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1611, - "End Line": 1616 - }, - { - "Function Name": "_get_UIARangeValuePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1618, - "End Line": 1623 - }, - { - "Function Name": "_get_UIAValuePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1625, - "End Line": 1630 - }, - { - "Function Name": "_get_UIATogglePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1632, - "End Line": 1637 - }, - { - "Function Name": "_get_UIASelectionItemPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1639, - "End Line": 1644 - }, - { - "Function Name": "_get_UIASelectionPattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1646, - "End Line": 1651 - }, - { - "Function Name": "_get_UIALegacyIAccessiblePattern", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1732, - "End Line": 1737 - }, - { - "Function Name": "updateCaret", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1130, - "End Line": 1133 - }, - { - "Function Name": "event_gainFocus", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1571, - "End Line": 1573 - }, - { - "Function Name": "event_loseFocus", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1575, - "End Line": 1577 - }, - { - "Function Name": "fetch", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 415, - "End Line": 416 - }, - { - "Function Name": "__hash__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 538, - "End Line": 539 - }, - { - "Function Name": "_get_bookmark", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 572, - "End Line": 573 - }, - { - "Function Name": "_get_text", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1037, - "End Line": 1038 - }, - { - "Function Name": "_get_boundingRects", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1055, - "End Line": 1056 - }, - { - "Function Name": "copy", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1088, - "End Line": 1089 - }, - { - "Function Name": "updateSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1127, - "End Line": 1128 - }, - { - "Function Name": "setFocus", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1756, - "End Line": 1757 - }, - { - "Function Name": "scrollIntoView", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2345, - "End Line": 2346 - }, - { - "Function Name": "event_UIA_controllerFor", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2409, - "End Line": 2410 - }, - { - "Function Name": "event_UIA_elementSelected", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2412, - "End Line": 2413 - }, - { - "Function Name": "_get_value", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2506, - "End Line": 2507 - }, - { - "Function Name": "_get_value", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2575, - "End Line": 2576 - }, - { - "Function Name": "event_focusEntered", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2582, - "End Line": 2583 - }, - { - "Function Name": "event_nameChange", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2691, - "End Line": 2692 - }, - { - "Function Name": "event_stateChange", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2694, - "End Line": 2695 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 620, - "Sequential Logic Declarations": 475, - "Function Parameters": 147, - "Function/Method Declarations": 147, - "Class/Entity Declarations": 24, - "Defensive Programming Constructs": 177, - "Type/Safety Bypasses": 37, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 61, - "State Mutations / Variable Reassignments": 311, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 33, - "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": 54, - "Collection Iterators / Comprehensions": 10, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 50, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 4, - "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": 16, - "Fatal Aborts & Exceptions": 21, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 1, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 325, - "Event Listeners & Subscribers": 79, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2171, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 2, - "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)": 12, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 410, - "Design Camel Case": 182, - "Design Snake Case": 183, - "Design Pascal Case": 28, - "Design Upper Case": 0, - "Design Short Vars": 27, - "Design Long Vars": 9, - "Duplicate Logic": 2, - "Orphaned Logic": 82, - "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": 21, - "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)": 34, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 9, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".", - ".excel", - ".wordDocument", - "NVDAObjects", - "NVDAObjects.behaviors", - "NVDAObjects.window", - "NVDAObjects.window.edit", - "NVDAState", - "UIAHandler", - "UIAHandler.customAnnotations", - "UIAHandler.customProps", - "UIAHandler.types", - "UIAHandler.utils", - "__future__", - "api", - "array", - "braille", - "colors", - "comtypes", - "config", - "config.configFlags", - "controlTypes", - "ctypes.wintypes", - "displayModel", - "languageHandler", - "locationHelper", - "logHandler", - "numbers", - "speech", - "textInfos", - "time", - "typing", - "ui", - "winVersion" - ] - }, - "cpp/NVDA/braille.py": { - "1. Artifact Identity": { - "Filename": "braille.py", - "Path": "cpp/NVDA/braille.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "StrEnum, NamedTuple, object", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 4330.2, - "Y": 4.61, - "Z": 5552.26 - }, - "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": 4054, - "Coding LOC": 2617, - "Documentation LOC": 1062, - "Structural Magnitude": 2576.34, - "Control Flow Ratio": "60.4%", - "Popularity Rank": 2, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.807 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "34.85%", - "Error & Exception Exposure": "78.81%", - "Tech Debt Exposure": "8.73%", - "Testing Exposure": "80.0%", - "API Exposure": "2.78%", - "Concurrency Exposure": "13.6%", - "State Flux Exposure": "99.91%", - "Commented Logic Exposure": "4.84%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "_addTextWithFields", - "Structural Impact": 88.5, - "Lines of Code (LOC)": 116, - "Control Flow Branches": 36, - "Input Parameters": 4, - "Control Flow Ratio": "87.8%", - "Start Line": 1397, - "End Line": 1512 - }, - { - "Function Name": "getPropertiesBraille", - "Structural Impact": 87.8, - "Lines of Code (LOC)": 144, - "Control Flow Branches": 56, - "Input Parameters": 1, - "Control Flow Ratio": "96.6%", - "Start Line": 712, - "End Line": 855 - }, - { - "Function Name": "getFormatFieldBraille", - "Structural Impact": 77.4, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 32, - "Input Parameters": 4, - "Control Flow Ratio": "94.1%", - "Start Line": 1190, - "End Line": 1261 - }, - { - "Function Name": "getControlFieldBraille", - "Structural Impact": 64.3, - "Lines of Code (LOC)": 110, - "Control Flow Branches": 23, - "Input Parameters": 5, - "Control Flow Ratio": "74.2%", - "Start Line": 956, - "End Line": 1065 - }, - { - "Function Name": "_getControlFieldForReportStart", - "Structural Impact": 63.3, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 15, - "Input Parameters": 13, - "Control Flow Ratio": "78.9%", - "Start Line": 1119, - "End Line": 1187 - }, - { - "Function Name": "update", - "Structural Impact": 36.9, - "Lines of Code (LOC)": 60, - "Control Flow Branches": 23, - "Input Parameters": 1, - "Control Flow Ratio": "88.5%", - "Start Line": 875, - "End Line": 934 - }, - { - "Function Name": "getFocusRegions", - "Structural Impact": 36.7, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 19, - "Input Parameters": 2, - "Control Flow Ratio": "65.5%", - "Start Line": 2281, - "End Line": 2321 - }, - { - "Function Name": "getFocusContextRegions", - "Structural Impact": 33.2, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "64.0%", - "Start Line": 2204, - "End Line": 2278 - }, - { - "Function Name": "setDisplayByName", - "Structural Impact": 31.3, - "Lines of Code (LOC)": 45, - "Control Flow Branches": 12, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 2772, - "End Line": 2816 - }, - { - "Function Name": "_get_script", - "Structural Impact": 30.0, - "Lines of Code (LOC)": 63, - "Control Flow Branches": 18, - "Input Parameters": 1, - "Control Flow Ratio": "72.0%", - "Start Line": 3858, - "End Line": 3920 - }, - { - "Function Name": "update", - "Structural Impact": 28.6, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "89.5%", - "Start Line": 590, - "End Line": 651 - }, - { - "Function Name": "update", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 111, - "Control Flow Branches": 15, - "Input Parameters": 1, - "Control Flow Ratio": "78.9%", - "Start Line": 1517, - "End Line": 1627 - }, - { - "Function Name": "_normalizeCellArraySize", - "Structural Impact": 28.2, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 9, - "Input Parameters": 6, - "Control Flow Ratio": "81.8%", - "Start Line": 2891, - "End Line": 2924 - }, - { - "Function Name": "_getTryPorts", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 14, - "Input Parameters": 2, - "Control Flow Ratio": "87.5%", - "Start Line": 3680, - "End Line": 3709 - }, - { - "Function Name": "_set_windowEndPos", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "65.0%", - "Start Line": 1997, - "End Line": 2049 - }, - { - "Function Name": "_handlePendingUpdate", - "Structural Impact": 24.5, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 15, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 3138, - "End Line": 3174 - }, - { - "Function Name": "handlePostConfigProfileSwitch", - "Structural Impact": 23.8, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 14, - "Input Parameters": 1, - "Control Flow Ratio": "93.3%", - "Start Line": 3265, - "End Line": 3316 - }, - { - "Function Name": "handleCaretMove", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 3116, - "End Line": 3136 - }, - { - "Function Name": "handleUpdate", - "Structural Impact": 20.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 3206, - "End Line": 3233 - }, - { - "Function Name": "_getModifierGestures", - "Structural Impact": 20.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 3715, - "End Line": 3742 - }, - { - "Function Name": "_getControlFieldForLayoutPresentation", - "Structural Impact": 19.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 6, - "Control Flow Ratio": "66.7%", - "Start Line": 1068, - "End Line": 1088 - }, - { - "Function Name": "handleGainFocus", - "Structural Impact": 19.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 3066, - "End Line": 3086 - }, - { - "Function Name": "_doNewObject", - "Structural Impact": 18.7, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "90.0%", - "Start Line": 3088, - "End Line": 3114 - }, - { - "Function Name": "_onSecureDesktopStateChanged", - "Structural Impact": 18.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 2541, - "End Line": 2566 - }, - { - "Function Name": "_appendFormattingMarker", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 5, - "Control Flow Ratio": "85.7%", - "Start Line": 1304, - "End Line": 1324 - }, - { - "Function Name": "handleReviewMove", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 3235, - "End Line": 3249 - }, - { - "Function Name": "getTextInfoForBraillePos", - "Structural Impact": 17.3, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1629, - "End Line": 1663 - }, - { - "Function Name": "previousLine", - "Structural Impact": 16.8, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 1724, - "End Line": 1747 - }, - { - "Function Name": "_showSpeechInBraille", - "Structural Impact": 16.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 2591, - "End Line": 2611 - }, - { - "Function Name": "_calculateWindowRowBufferOffsets", - "Structural Impact": 15.5, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1956, - "End Line": 1988 - }, - { - "Function Name": "_bgThreadExecutor", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 3376, - "End Line": 3406 - }, - { - "Function Name": "message", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "77.8%", - "Start Line": 3011, - "End Line": 3036 - }, - { - "Function Name": "bufferPositionsToRawText", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 1907, - "End Line": 1926 - }, - { - "Function Name": "_getAutoPorts", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 3649, - "End Line": 3668 - }, - { - "Function Name": "getDisplayTextForIdentifier", - "Structural Impact": 15.0, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 3944, - "End Line": 3966 - }, - { - "Function Name": "_routeToTextInfo", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 1767, - "End Line": 1783 - }, - { - "Function Name": "_setDisplay", - "Structural Impact": 14.7, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "71.4%", - "Start Line": 2843, - "End Line": 2868 - }, - { - "Function Name": "_switchDisplay", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "62.5%", - "Start Line": 2818, - "End Line": 2841 - }, - { - "Function Name": "regionPosToBufferPos", - "Structural Impact": 14.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1890, - "End Line": 1905 - }, - { - "Function Name": "getDisplayList", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 516, - "End Line": 539 - }, - { - "Function Name": "_writeCells", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2926, - "End Line": 2959 - }, - { - "Function Name": "getPossiblePorts", - "Structural Impact": 13.1, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 3612, - "End Line": 3646 - }, - { - "Function Name": "_getDisplayDriver", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "54.5%", - "Start Line": 496, - "End Line": 513 - }, - { - "Function Name": "_get_displayDimensions", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 2671, - "End Line": 2701 - }, - { - "Function Name": "_getTypeformFromFormatField", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 1370, - "End Line": 1386 - }, - { - "Function Name": "_getControlFieldForTableCell", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 3, - "Input Parameters": 7, - "Control Flow Ratio": "60.0%", - "Start Line": 1091, - "End Line": 1116 - }, - { - "Function Name": "getSerialPorts", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 3972, - "End Line": 3997 - }, - { - "Function Name": "_refreshEnabled", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 2728, - "End Line": 2745 - }, - { - "Function Name": "_handleProgressBarUpdate", - "Structural Impact": 11.2, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 3189, - "End Line": 3204 - }, - { - "Function Name": "scrollToCursorOrSelection", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "83.3%", - "Start Line": 3176, - "End Line": 3185 - }, - { - "Function Name": "getDisplayDrivers", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 4000, - "End Line": 4020 - }, - { - "Function Name": "nextLine", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1706, - "End Line": 1722 - }, - { - "Function Name": "scrollTo", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 2082, - "End Line": 2089 - }, - { - "Function Name": "setTether", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "57.1%", - "Start Line": 2631, - "End Line": 2639 - }, - { - "Function Name": "routeTo", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1665, - "End Line": 1686 - }, - { - "Function Name": "terminate", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 2507, - "End Line": 2532 - }, - { - "Function Name": "_getAnnotationProperty", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 682, - "End Line": 706 - }, - { - "Function Name": "update", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 2108, - "End Line": 2127 - }, - { - "Function Name": "check", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3523, - "End Line": 3539 - }, - { - "Function Name": "_updateDisplay", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2875, - "End Line": 2889 - }, - { - "Function Name": "formatCellsForLog", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2324, - "End Line": 2336 - }, - { - "Function Name": "initialDisplay", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 3251, - "End Line": 3263 - }, - { - "Function Name": "_displayWithCursor", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 2965, - "End Line": 2974 - }, - { - "Function Name": "_ackTimeoutResetter", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 3408, - "End Line": 3412 - }, - { - "Function Name": "NVDAObjectHasUsefulText", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 478, - "End Line": 493 - }, - { - "Function Name": "_getFormattingTags", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1283, - "End Line": 1301 - }, - { - "Function Name": "_routeToTextInfo", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1688, - "End Line": 1704 - }, - { - "Function Name": "focus", - "Structural Impact": 7.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 2091, - "End Line": 2106 - }, - { - "Function Name": "_set_numCells", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 3583, - "End Line": 3588 - }, - { - "Function Name": "routeTo", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 950, - "End Line": 953 - }, - { - "Function Name": "_addFieldText", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1388, - "End Line": 1395 - }, - { - "Function Name": "rindex", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1807, - "End Line": 1811 - }, - { - "Function Name": "__init__", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2457, - "End Line": 2505 - }, - { - "Function Name": "_enableDetection", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 3332, - "End Line": 3368 - }, - { - "Function Name": "__init__", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 864, - "End Line": 873 - }, - { - "Function Name": "terminate", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3554, - "End Line": 3570 - }, - { - "Function Name": "_resetMessageTimer", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 3038, - "End Line": 3049 - }, - { - "Function Name": "_get_visibleRegions", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1846, - "End Line": 1853 - }, - { - "Function Name": "scrollForward", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 2058, - "End Line": 2065 - }, - { - "Function Name": "scrollBack", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 2073, - "End Line": 2080 - }, - { - "Function Name": "_dismissMessage", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 3051, - "End Line": 3064 - }, - { - "Function Name": "windowPosToBufferPos", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1934, - "End Line": 1945 - }, - { - "Function Name": "getTextInfoForWindowPos", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 2161, - "End Line": 2168 - }, - { - "Function Name": "__init__", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1331, - "End Line": 1335 - }, - { - "Function Name": "bufferPosToRegionPos", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1884, - "End Line": 1888 - }, - { - "Function Name": "bufferPosToWindowPos", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1928, - "End Line": 1932 - }, - { - "Function Name": "handleDisplayUnavailable", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3318, - "End Line": 3330 - }, - { - "Function Name": "_get_identifiers", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 3829, - "End Line": 3841 - }, - { - "Function Name": "getParagraphStartMarker", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1264, - "End Line": 1280 - }, - { - "Function Name": "_isMultiline", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 1337, - "End Line": 1348 - }, - { - "Function Name": "_routingShouldMoveSystemCaret", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 1792, - "End Line": 1804 - }, - { - "Function Name": "_get_brailleToRawPos", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1873, - "End Line": 1882 - }, - { - "Function Name": "_get_windowBrailleCells", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2144, - "End Line": 2152 - }, - { - "Function Name": "_handleEnabledDecisionFalse", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2752, - "End Line": 2761 - }, - { - "Function Name": "_get_speechEffectWhenExecuted", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 3928, - "End Line": 3936 - }, - { - "Function Name": "_get_rawToBraillePos", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1862, - "End Line": 1869 - }, - { - "Function Name": "_get_cursorWindowPos", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2133, - "End Line": 2139 - }, - { - "Function Name": "_handleAck", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 3744, - "End Line": 3751 - }, - { - "Function Name": "_get_displayName", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 3843, - "End Line": 3850 - }, - { - "Function Name": "_getReadingUnit", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1514, - "End Line": 1515 - }, - { - "Function Name": "_speakOnNavigatingByUnit", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 4037, - "End Line": 4053 - }, - { - "Function Name": "shouldBeUsed", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 415, - "End Line": 423 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1361, - "End Line": 1368 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 2154, - "End Line": 2159 - }, - { - "Function Name": "_onSessionLockStateChanged", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2568, - "End Line": 2574 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 936, - "End Line": 940 - }, - { - "Function Name": "_set_enabled", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2747, - "End Line": 2750 - }, - { - "Function Name": "_onBrailleViewerChangedState", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2870, - "End Line": 2873 - }, - { - "Function Name": "routeTo", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3001, - "End Line": 3004 - }, - { - "Function Name": "getTextInfoForWindowPos", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 3006, - "End Line": 3009 - }, - { - "Function Name": "_speakOnRouting", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 4023, - "End Line": 4034 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 1350, - "End Line": 1359 - }, - { - "Function Name": "update", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2980, - "End Line": 2989 - }, - { - "Function Name": "_get_regionsWithPositions", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1855, - "End Line": 1860 - }, - { - "Function Name": "_nextWindow", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2051, - "End Line": 2056 - }, - { - "Function Name": "_previousWindow", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2067, - "End Line": 2071 - }, - { - "Function Name": "_clearAll", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2534, - "End Line": 2539 - }, - { - "Function Name": "_disableDetection", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 3370, - "End Line": 3374 - }, - { - "Function Name": "_get_scriptableObject", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 3852, - "End Line": 3856 - }, - { - "Function Name": "updateDisplay", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2129, - "End Line": 2131 - }, - { - "Function Name": "clearBrailleRegions", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2623, - "End Line": 2626 - }, - { - "Function Name": "scrollForward", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2991, - "End Line": 2994 - }, - { - "Function Name": "scrollBack", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2996, - "End Line": 2999 - }, - { - "Function Name": "DotFirmnessSetting", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 3754, - "End Line": 3764 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 39, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 550, - "End Line": 588 - }, - { - "Function Name": "_get_shouldAutoTether", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2641, - "End Line": 2642 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1815, - "End Line": 1828 - }, - { - "Function Name": "registerAutomaticDetection", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3542, - "End Line": 3552 - }, - { - "Function Name": "_set_displaySize", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2658, - "End Line": 2666 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3511, - "End Line": 3520 - }, - { - "Function Name": "_set_displayDimensions", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2703, - "End Line": 2710 - }, - { - "Function Name": "BrailleInputSetting", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3767, - "End Line": 3774 - }, - { - "Function Name": "HIDInputSetting", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3777, - "End Line": 3784 - }, - { - "Function Name": "suppressClearBrailleRegions", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2616, - "End Line": 2621 - }, - { - "Function Name": "_get_enabled", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2715, - "End Line": 2726 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 677, - "End Line": 679 - }, - { - "Function Name": "clear", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1835, - "End Line": 1844 - }, - { - "Function Name": "invalidateCachedFocusAncestors", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2192, - "End Line": 2201 - }, - { - "Function Name": "_set_table", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2583, - "End Line": 2585 - }, - { - "Function Name": "_get_displaySize", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2647, - "End Line": 2656 - }, - { - "Function Name": "_get_source", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3798, - "End Line": 3806 - }, - { - "Function Name": "_get_model", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3808, - "End Line": 3817 - }, - { - "Function Name": "routeTo", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 653 - }, - { - "Function Name": "previousLine", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 664, - "End Line": 664 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1757, - "End Line": 1758 - }, - { - "Function Name": "_setCursor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1785, - "End Line": 1786 - }, - { - "Function Name": "_set_windowStartPos", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1953, - "End Line": 1954 - }, - { - "Function Name": "saveWindow", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2170, - "End Line": 2177 - }, - { - "Function Name": "restoreWindow", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2179, - "End Line": 2186 - }, - { - "Function Name": "_get_numCells", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3575, - "End Line": 3581 - }, - { - "Function Name": "display", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3601, - "End Line": 3601 - }, - { - "Function Name": "getManualPorts", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3671, - "End Line": 3677 - }, - { - "Function Name": "_get_id", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3819, - "End Line": 3823 - }, - { - "Function Name": "_get_keyNames", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3922, - "End Line": 3926 - }, - { - "Function Name": "_get_windowEndPos", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1993, - "End Line": 1995 - }, - { - "Function Name": "_get_table", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2579, - "End Line": 2581 - }, - { - "Function Name": "_writeCellsInBackground", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2961, - "End Line": 2963 - }, - { - "Function Name": "_blink", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2976, - "End Line": 2978 - }, - { - "Function Name": "nextLine", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 661, - "End Line": 661 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 670, - "End Line": 671 - }, - { - "Function Name": "_isMultiline", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1751, - "End Line": 1752 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1754, - "End Line": 1755 - }, - { - "Function Name": "_getSelection", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1764, - "End Line": 1765 - }, - { - "Function Name": "_get_windowStartPos", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1950, - "End Line": 1951 - }, - { - "Function Name": "_get_windowRawText", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2141, - "End Line": 2142 - }, - { - "Function Name": "displaySize", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2372, - "End Line": 2373 - }, - { - "Function Name": "getTether", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2628, - "End Line": 2629 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3598, - "End Line": 3599 - }, - { - "Function Name": "initialize", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3428, - "End Line": 3436 - }, - { - "Function Name": "terminate", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3444, - "End Line": 3447 - }, - { - "Function Name": "pumpAll", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 3439, - "End Line": 3441 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 755, - "Sequential Logic Declarations": 495, - "Function Parameters": 172, - "Function/Method Declarations": 171, - "Class/Entity Declarations": 15, - "Defensive Programming Constructs": 108, - "Type/Safety Bypasses": 64, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 135, - "State Mutations / Variable Reassignments": 617, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 98, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 8, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 0, - "Decorators and Annotations": 13, - "Generic Type Abstractions": 102, - "Collection Iterators / Comprehensions": 17, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 20, - "Module Dependencies (Imports)": 76, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 1, - "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": 19, - "Fatal Aborts & Exceptions": 21, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 1, - "Thread Synchronization Locks": 2, - "Immutable Data Declarations": 2, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 439, - "Event Listeners & Subscribers": 44, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 2471, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 0, - "Feature Flags": 0, - "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 3, - "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)": 24, - "Vectorized Math & Tensor Operations": 13, - "Core Var Decl": 570, - "Design Camel Case": 272, - "Design Snake Case": 252, - "Design Pascal Case": 7, - "Design Upper Case": 23, - "Design Short Vars": 1, - "Design Long Vars": 17, - "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)": 2, - "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)": 59, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 7, - "Total Downstream (Absolute Dependency Blast Radius)": 2 - }, - "9. Extracted Dependencies": [ - "NVDAObjects", - "annotation", - "api", - "autoSettingsUtils.driverSetting", - "baseObject", - "bdDetect", - "brailleDisplayDrivers", - "brailleInput", - "brailleTables", - "brailleViewer", - "collections", - "config", - "config.configFlags", - "config.featureFlagEnums", - "contextlib", - "controlTypes", - "controlTypes.state", - "ctypes.wintypes", - "cursorManager", - "displayModel", - "driverHandler", - "easeOfAccess", - "editableText", - "enum", - "extensionPoints", - "globalCommands", - "gui", - "gui.guiHelper", - "hwIo", - "hwPortUtils", - "importlib", - "inputCore", - "itertools", - "keyboardHandler", - "locale", - "logHandler", - "louis", - "louisHelper", - "mathPres", - "pkgutil", - "queueHandler", - "re", - "scriptHandler", - "serial", - "speech.extensions", - "speech.speech", - "speech.types", - "textInfos", - "textUtils", - "threading", - "time", - "to", - "treeInterceptorHandler", - "typing", - "utils.security", - "winAPI.secureDesktop", - "winBindings.kernel32", - "winKernel", - "wx" - ] - }, - "cpp/NVDA/core.py": { - "1. Artifact Identity": { - "Filename": "core.py", - "Path": "cpp/NVDA/core.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "Enum, wx.App, wx.Timer", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 4713.99, - "Y": -44.51, - "Z": 5951.6 - }, - "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": 1198, - "Coding LOC": 826, - "Documentation LOC": 183, - "Structural Magnitude": 415.92, - "Control Flow Ratio": "39.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.38 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.73%", - "Error & Exception Exposure": "60.58%", - "Tech Debt Exposure": "10.0%", - "Testing Exposure": "80.0%", - "API Exposure": "2.16%", - "Concurrency Exposure": "26.64%", - "State Flux Exposure": "68.91%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.25%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "main", - "Structural Impact": 79.1, - "Lines of Code (LOC)": 462, - "Control Flow Branches": 55, - "Input Parameters": 0, - "Control Flow Ratio": "43.0%", - "Start Line": 672, - "End Line": 1133 - }, - { - "Function Name": "doStartupDialogs", - "Structural Impact": 21.2, - "Lines of Code (LOC)": 85, - "Control Flow Branches": 16, - "Input Parameters": 0, - "Control Flow Ratio": "51.6%", - "Start Line": 125, - "End Line": 209 - }, - { - "Function Name": "restart", - "Structural Impact": 13.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 281, - "End Line": 308 - }, - { - "Function Name": "Notify", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 991, - "End Line": 1024 - }, - { - "Function Name": "_closeAllWindows", - "Structural Impact": 12.6, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 9, - "Input Parameters": 0, - "Control Flow Ratio": "56.2%", - "Start Line": 496, - "End Line": 547 - }, - { - "Function Name": "computeRestartCLIArgs", - "Structural Impact": 12.3, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "58.3%", - "Start Line": 219, - "End Line": 238 - }, - { - "Function Name": "resetConfiguration", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 93, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "19.0%", - "Start Line": 311, - "End Line": 403 - }, - { - "Function Name": "requestPump", - "Structural Impact": 10.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1150, - "End Line": 1169 - }, - { - "Function Name": "callLater", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "42.9%", - "Start Line": 1176, - "End Line": 1191 - }, - { - "Function Name": "_showAddonsErrors", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 47, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "62.5%", - "Start Line": 76, - "End Line": 122 - }, - { - "Function Name": "triggerNVDAExit", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 470, - "End Line": 493 - }, - { - "Function Name": "_setUpWxApp", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 57, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 613, - "End Line": 669 - }, - { - "Function Name": "getWxLangOrNone", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "62.5%", - "Start Line": 422, - "End Line": 439 - }, - { - "Function Name": "onEndSession", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 653, - "End Line": 665 - }, - { - "Function Name": "processRequest", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 981, - "End Line": 989 - }, - { - "Function Name": "restartUnsafely", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 241, - "End Line": 278 - }, - { - "Function Name": "_terminate", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1136, - "End Line": 1143 - }, - { - "Function Name": "_doLoseFocus", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 601, - "End Line": 610 - }, - { - "Function Name": "__getattr__", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 39, - "End Line": 49 - }, - { - "Function Name": "_setInitialFocus", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "42.9%", - "Start Line": 406, - "End Line": 419 - }, - { - "Function Name": "onResult", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 198, - "End Line": 205 - }, - { - "Function Name": "queueRequest", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 972, - "End Line": 979 - }, - { - "Function Name": "_handleNVDAModuleCleanupBeforeGUIExit", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "12.5%", - "Start Line": 550, - "End Line": 574 - }, - { - "Function Name": "_doShutdown", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 463, - "End Line": 467 - }, - { - "Function Name": "onQueryEndSession", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 646, - "End Line": 649 - }, - { - "Function Name": "OnAssert", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 627, - "End Line": 629 - }, - { - "Function Name": "_startNewInstance", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 442, - "End Line": 460 - }, - { - "Function Name": "_callLaterExec", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1194, - "End Line": 1197 - }, - { - "Function Name": "_initializeObjectCaches", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 598 - }, - { - "Function Name": "InitLocale", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 631, - "End Line": 640 - }, - { - "Function Name": "handleReplaceCLIArg", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 129, - "End Line": 135 - }, - { - "Function Name": "__bool__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 68, - "End Line": 69 - }, - { - "Function Name": "_doPostNvdaStartupAction", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1053, - "End Line": 1055 - }, - { - "Function Name": "isMainThread", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1146, - "End Line": 1147 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 141, - "Sequential Logic Declarations": 218, - "Function Parameters": 34, - "Function/Method Declarations": 34, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 48, - "Type/Safety Bypasses": 30, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 32, - "State Mutations / Variable Reassignments": 66, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 17, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 12, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 3, - "Decorators and Annotations": 1, - "Generic Type Abstractions": 18, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 126, - "Authorship Metadata": 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, - "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": 2, - "Fatal Aborts & Exceptions": 11, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 1, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 114, - "Event Listeners & Subscribers": 8, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 771, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 4, - "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": 1, - "Core Var Decl": 88, - "Design Camel Case": 35, - "Design Snake Case": 44, - "Design Pascal Case": 1, - "Design Upper Case": 4, - "Design Short Vars": 0, - "Design Long Vars": 2, - "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)": 74, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 10, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "IAccessibleHandler", - "JABHandler", - "NVDAHelper", - "NVDAObjects", - "NVDAState", - "UIAHandler", - "_remoteClient", - "addonHandler", - "addonStore", - "api", - "appModuleHandler", - "argsParsing", - "audio", - "audioDucking", - "baseObject", - "bdDetect", - "braille", - "brailleInput", - "brailleTables", - "brailleViewer", - "buildVersion", - "characterProcessing", - "comtypes", - "config", - "configobj", - "dataclasses", - "displayModel", - "enum", - "eventHandler", - "extensionPoints", - "garbageHandler", - "globalPluginHandler", - "globalVars", - "gui", - "gui.installerGui", - "gui.message", - "gui.settingsDialogs", - "gui.startupDialogs", - "hwIo", - "inputCore", - "keyboardHandler", - "languageHandler", - "logHandler", - "mathPres", - "mouseHandler", - "nvwave", - "os", - "queueHandler", - "screenCurtain", - "shellapi", - "socket", - "speech", - "speechDictHandler", - "subprocess", - "sys", - "threading", - "time", - "tones", - "touchHandler", - "treeInterceptorHandler", - "typing", - "updateCheck", - "utils", - "utils.security", - "vision", - "watchdog", - "winAPI", - "winAPI.dpiAwareness", - "winAPI.messageWindow", - "winBindings.kernel32", - "winConsoleHandler", - "winUser", - "winVersion", - "wx" - ] - }, - "cpp/NVDA/espeak.py": { - "1. Artifact Identity": { - "Filename": "espeak.py", - "Path": "cpp/NVDA/espeak.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Parent Entity": "SynthDriver", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (78% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3833.03, - "Y": 3.64, - "Z": 5597.15 - }, - "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": 497, - "Coding LOC": 269, - "Documentation LOC": 185, - "Structural Magnitude": 222.48, - "Control Flow Ratio": "41.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.042 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "67.75%", - "Error & Exception Exposure": "77.07%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "80.0%", - "API Exposure": "0.34%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.96%", - "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": "speak", - "Structural Impact": 44.8, - "Lines of Code (LOC)": 64, - "Control Flow Branches": 23, - "Input Parameters": 2, - "Control Flow Ratio": "69.7%", - "Start Line": 323, - "End Line": 386 - }, - { - "Function Name": "_normalizeLangCommand", - "Structural Impact": 22.9, - "Lines of Code (LOC)": 43, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "84.6%", - "Start Line": 252, - "End Line": 294 - }, - { - "Function Name": "_handleLangChangeCommand", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 296, - "End Line": 318 - }, - { - "Function Name": "_set_voice", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 464, - "End Line": 477 - }, - { - "Function Name": "_onIndexReached", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 479, - "End Line": 483 - }, - { - "Function Name": "_set_variant", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 491, - "End Line": 493 - }, - { - "Function Name": "_get_voice", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 454, - "End Line": 462 - }, - { - "Function Name": "_set_rateBoost", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 401, - "End Line": 406 - }, - { - "Function Name": "_set_rate", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 414, - "End Line": 419 - }, - { - "Function Name": "_getAvailableVoices", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 443, - "End Line": 452 - }, - { - "Function Name": "_get_rate", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 408, - "End Line": 412 - }, - { - "Function Name": "_getAvailableVariants", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 495, - "End Line": 496 - }, - { - "Function Name": "_processText", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 250 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 214, - "End Line": 224 - }, - { - "Function Name": "_set_pitch", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 425, - "End Line": 427 - }, - { - "Function Name": "_set_inflection", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 433, - "End Line": 435 - }, - { - "Function Name": "pause", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 391, - "End Line": 392 - }, - { - "Function Name": "_set_volume", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 440, - "End Line": 441 - }, - { - "Function Name": "_get_pitch", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 421, - "End Line": 423 - }, - { - "Function Name": "_get_inflection", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 429, - "End Line": 431 - }, - { - "Function Name": "check", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 212 - }, - { - "Function Name": "_get_language", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 226, - "End Line": 227 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 388, - "End Line": 389 - }, - { - "Function Name": "_get_rateBoost", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 398, - "End Line": 399 - }, - { - "Function Name": "_get_volume", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 438 - }, - { - "Function Name": "terminate", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 485, - "End Line": 486 - }, - { - "Function Name": "_get_variant", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 488, - "End Line": 489 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 51, - "Sequential Logic Declarations": 72, - "Function Parameters": 28, - "Function/Method Declarations": 27, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 13, - "Type/Safety Bypasses": 4, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 2, - "Exposed API / Public Exports": 6, - "State Mutations / Variable Reassignments": 69, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 3, - "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": 1, - "Generic Type Abstractions": 7, - "Collection Iterators / Comprehensions": 3, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 9, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, - "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": 4, - "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": 104, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 256, - "Structural Space Indentations": 0, - "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": 1, - "Core Var Decl": 50, - "Design Camel Case": 22, - "Design Snake Case": 23, - "Design Pascal Case": 0, - "Design Upper Case": 3, - "Design Short Vars": 1, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 20, - "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)": 9, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".", - "collections", - "languageHandler", - "logHandler", - "os", - "speech.commands", - "speech.types", - "synthDriverHandler", - "typing" - ] - }, - "cpp/NVDA/ensureuv.ps1": { - "1. Artifact Identity": { - "Filename": "ensureuv.ps1", - "Path": "cpp/NVDA/ensureuv.ps1", - "Language": "Powershell", - "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .ps1)" - }, - "2. Topological Coordinates": { - "X": 4209.54, - "Y": -92.37, - "Z": 6161.7 - }, - "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": 119, - "Coding LOC": 105, - "Documentation LOC": 1, - "Structural Magnitude": 70.0, - "Control Flow Ratio": "78.4%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.914 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "65.86%", - "Error & Exception Exposure": "82.98%", - "Tech Debt Exposure": "47.03%", - "Testing Exposure": "2.48%", - "API Exposure": "2.9%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", - "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": "Install-Uv", - "Structural Impact": 34.7, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 21, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 16, - "End Line": 86 - }, - { - "Function Name": "Invoke-Uv", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 14 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 29, - "Sequential Logic Declarations": 8, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 2, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 31, - "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": 21, - "Global State Dependencies": 4, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 1, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "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": 4, - "Ad-hoc Print / Debug Statements": 12, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 5, - "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": 89, - "Structural Space Indentations": 0, - "Hardware Bridge": 0, - "Cryptography": 0, - "Auth Middleware": 0, - "Ipc Rpc Bridges": 1, - "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": 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, - "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": 2, - "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": [] - }, - "cpp/NVDA/inProcess.cpp": { - "1. Artifact Identity": { - "Filename": "inProcess.cpp", - "Path": "cpp/NVDA/inProcess.cpp", - "Language": "Cpp", - "Architect": "2006-2010 NVDA contributers", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4840.7, - "Y": 3.08, - "Z": 5288.9 - }, - "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": 196, - "Coding LOC": 153, - "Documentation LOC": 27, - "Structural Magnitude": 185.46, - "Control Flow Ratio": "51.9%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.966 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "70.32%", - "Error & Exception Exposure": "97.17%", - "Tech Debt Exposure": "23.28%", - "Testing Exposure": "80.0%", - "API Exposure": "8.72%", - "Concurrency Exposure": "0.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": "unregisterWindowsHook", - "Structural Impact": 14.8, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "70.0%", - "Start Line": 96, - "End Line": 113 - }, - { - "Function Name": "inProcess_getMessageHook", - "Structural Impact": 12.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "62.5%", - "Start Line": 116, - "End Line": 134 - }, - { - "Function Name": "execInThread", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 160, - "End Line": 195 - }, - { - "Function Name": "registerWindowsHook", - "Structural Impact": 9.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 84, - "End Line": 94 - }, - { - "Function Name": "inProcess_winEventCallback", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 150, - "End Line": 158 - }, - { - "Function Name": "inProcess_callWndProcHook", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 137, - "End Line": 147 - }, - { - "Function Name": "unregisterWinEventHook", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 72, - "End Line": 82 - }, - { - "Function Name": "inProcess_initialize", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 54 - }, - { - "Function Name": "registerWinEventHook", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 67, - "End Line": 70 - }, - { - "Function Name": "inProcess_terminate", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 56, - "End Line": 65 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 26, - "Function Parameters": 15, - "Function/Method Declarations": 10, - "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": 9, - "State Mutations / Variable Reassignments": 98, - "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": 1, - "Module Dependencies (Imports)": 16, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 1, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 1, - "Pointer Arithmetic & Addressing": 23, - "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": 109, - "Structural Space Indentations": 0, - "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": 18, - "Design Camel Case": 3, - "Design Snake Case": 14, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 11, - "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)": 16, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 2, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "IA2Support.h", - "common/log.h", - "cstdio", - "gdiHooks.h", - "ia2LiveRegions.h", - "ime.h", - "inProcess.h", - "inputLangChange.h", - "list", - "map", - "nvdaHelperRemote.h", - "set", - "tsf.h", - "typedCharacter.h", - "windows.h", - "winword.h" - ] - }, - "cpp/NVDA/nvdaControllerInternal.cpp": { - "1. Artifact Identity": { - "Filename": "nvdaControllerInternal.cpp", - "Path": "cpp/NVDA/nvdaControllerInternal.cpp", - "Language": "Cpp", - "Architect": "2006-2025 NV Access Limited, rui Batista, Google LLC, Christopher Toth", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4051.09, - "Y": -5.81, - "Z": 5053.25 - }, - "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": 92, - "Coding LOC": 61, - "Documentation LOC": 13, - "Structural Magnitude": 30.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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.59%", - "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": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "nvdaControllerInternal_displayModelTextChangeNotify", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 41 - }, - { - "Function Name": "nvdaControllerInternal_drawFocusRectNotify", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 79, - "End Line": 81 - }, - { - "Function Name": "nvdaControllerInternal_inputCompositionUpdate", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 46 - }, - { - "Function Name": "nvdaControllerInternal_inputLangChangeNotify", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 25 - }, - { - "Function Name": "nvdaControllerInternal_logMessage", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 36 - }, - { - "Function Name": "nvdaControllerInternal_inputCandidateListUpdate", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 51 - }, - { - "Function Name": "nvdaControllerInternal_inputConversionModeUpdate", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 59, - "End Line": 61 - }, - { - "Function Name": "nvdaControllerInternal_vbufChangeNotify", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 64, - "End Line": 66 - }, - { - "Function Name": "nvdaControllerInternal_reportLiveRegion", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - }, - { - "Function Name": "nvdaControllerInternal_requestRegistration", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 18, - "End Line": 20 - }, - { - "Function Name": "nvdaControllerInternal_typedCharacterNotify", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 30 - }, - { - "Function Name": "nvdaControllerInternal_IMEOpenStatusUpdate", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 56 - }, - { - "Function Name": "nvdaControllerInternal_installAddonPackageFromPath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 71 - }, - { - "Function Name": "nvdaControllerInternal_handleRemoteURL", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 76 - }, - { - "Function Name": "nvdaControllerInternal_openConfigDirectory", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 91 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 15, - "Function Parameters": 14, - "Function/Method Declarations": 15, - "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)": 1, - "Authorship Metadata": 1, - "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": 16, - "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": 70, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 15, - "Structural Space Indentations": 0, - "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": 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": 15, - "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": [ - "local/nvdaControllerInternal.h" - ] - }, - "cpp/NVDA/storage.cpp": { - "1. Artifact Identity": { - "Filename": "storage.cpp", - "Path": "cpp/NVDA/storage.cpp", - "Language": "Cpp", - "Architect": "2006-2022 NVDA contributors", - "Indentation Style": "Tabs", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cpp)" - }, - "2. Topological Coordinates": { - "X": 4073.32, - "Y": -11.18, - "Z": 5862.38 - }, - "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": 1247, - "Coding LOC": 1115, - "Documentation LOC": 62, - "Structural Magnitude": 2122.1, - "Control Flow Ratio": "71.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.427 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "90.39%", - "Error & Exception Exposure": "99.85%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "11.58%", - "Concurrency Exposure": "0.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": "49.86%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "VBufStorage_buffer_t::getLineOffsets", - "Structural Impact": 136.9, - "Lines of Code (LOC)": 142, - "Control Flow Branches": 52, - "Input Parameters": 5, - "Control Flow Ratio": "94.5%", - "Start Line": 1066, - "End Line": 1207 - }, - { - "Function Name": "VBufStorage_buffer_t::findNodeByAttributes", - "Structural Impact": 105.1, - "Lines of Code (LOC)": 92, - "Control Flow Branches": 37, - "Input Parameters": 6, - "Control Flow Ratio": "84.1%", - "Start Line": 973, - "End Line": 1064 - }, - { - "Function Name": "VBufStorage_fieldNode_t::nextNodeInTree", - "Structural Impact": 59.4, - "Lines of Code (LOC)": 68, - "Control Flow Branches": 27, - "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 57, - "End Line": 124 - }, - { - "Function Name": "VBufStorage_buffer_t::insertNode", - "Structural Impact": 57.5, - "Lines of Code (LOC)": 71, - "Control Flow Branches": 26, - "Input Parameters": 3, - "Control Flow Ratio": "76.5%", - "Start Line": 445, - "End Line": 515 - }, - { - "Function Name": "VBufStorage_buffer_t::unlinkFieldNode", - "Structural Impact": 48.8, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 26, - "Input Parameters": 2, - "Control Flow Ratio": "89.7%", - "Start Line": 766, - "End Line": 806 - }, - { - "Function Name": "VBufStorage_buffer_t::replaceSubtrees", - "Structural Impact": 48.6, - "Lines of Code (LOC)": 123, - "Control Flow Branches": 29, - "Input Parameters": 1, - "Control Flow Ratio": "74.4%", - "Start Line": 642, - "End Line": 764 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getTextInRange", - "Structural Impact": 26.1, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 9, - "Input Parameters": 5, - "Control Flow Ratio": "81.8%", - "Start Line": 274, - "End Line": 306 - }, - { - "Function Name": "VBufStorage_buffer_t::addTextFieldNode", - "Structural Impact": 23.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 10, - "Input Parameters": 3, - "Control Flow Ratio": "76.9%", - "Start Line": 585, - "End Line": 621 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateAttributesForMarkupOpeningTag", - "Structural Impact": 21.7, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "90.0%", - "Start Line": 225, - "End Line": 258 - }, - { - "Function Name": "outputEscapedAttribute", - "Structural Impact": 21.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "81.8%", - "Start Line": 130, - "End Line": 149 - }, - { - "Function Name": "VBufStorage_buffer_t::locateControlFieldNodeAtOffset", - "Structural Impact": 20.6, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, - "Input Parameters": 5, - "Control Flow Ratio": "77.8%", - "Start Line": 887, - "End Line": 907 - }, - { - "Function Name": "VBufStorage_fieldNode_t::matchAttributes", - "Structural Impact": 19.4, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 9, - "Input Parameters": 2, - "Control Flow Ratio": "69.2%", - "Start Line": 151, - "End Line": 191 - }, - { - "Function Name": "VBufStorage_textFieldNode_t::getTextInRange", - "Structural Impact": 15.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 5, - "Control Flow Ratio": "83.3%", - "Start Line": 402, - "End Line": 423 - }, - { - "Function Name": "VBufStorage_buffer_t::locateTextFieldNodeAtOffset", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 865, - "End Line": 885 - }, - { - "Function Name": "VBufStorage_buffer_t::isFieldNodeAtOffset", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 7, - "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 843, - "End Line": 863 - }, - { - "Function Name": "VBufStorage_buffer_t::addControlFieldNode", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 561, - "End Line": 583 - }, - { - "Function Name": "VBufStorage_buffer_t::getTextInRange", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "57.1%", - "Start Line": 959, - "End Line": 971 - }, - { - "Function Name": "VBufStorage_fieldNode_t::locateTextFieldNodeAtOffset", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 207, - "End Line": 223 - }, - { - "Function Name": "VBufStorage_buffer_t::getSelectionOffsets", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 932, - "End Line": 940 - }, - { - "Function Name": "VBufStorage_buffer_t::addTextFieldNode", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "37.5%", - "Start Line": 623, - "End Line": 640 - }, - { - "Function Name": "VBufStorage_buffer_t::getIdentifierFromControlFieldNode", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "60.0%", - "Start Line": 922, - "End Line": 930 - }, - { - "Function Name": "VBufStorage_buffer_t::removeFieldNode", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 808, - "End Line": 819 - }, - { - "Function Name": "VBufStorage_buffer_t::setSelectionOffsets", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 942, - "End Line": 951 - }, - { - "Function Name": "VBufStorage_buffer_t::addReferenceNodeToBuffer", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 1231, - "End Line": 1240 - }, - { - "Function Name": "VBufStorage_buffer_t::isDescendantNode", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1213, - "End Line": 1225 - }, - { - "Function Name": "VBufStorage_buffer_t::addControlFieldNode", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "33.3%", - "Start Line": 548, - "End Line": 559 - }, - { - "Function Name": "VBufStorage_buffer_t::getFieldNodeOffsets", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 832, - "End Line": 841 - }, - { - "Function Name": "VBufStorage_buffer_t::getControlFieldNodeWithIdentifier", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 909, - "End Line": 920 - }, - { - "Function Name": "VBufStorage_fieldNode_t::calculateOffsetInTree", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 193, - "End Line": 205 - }, - { - "Function Name": "VBufStorage_buffer_t::deleteSubtree", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 526, - "End Line": 537 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator<", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 39, - "End Line": 45 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getAttribute", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 327, - "End Line": 334 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator!=", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 47, - "End Line": 49 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::operator==", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 51, - "End Line": 53 - }, - { - "Function Name": "VBufStorage_buffer_t::isNodeInBuffer", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1227, - "End Line": 1229 - }, - { - "Function Name": "VBufStorage_fieldNode_t::getAttributesString", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 336, - "End Line": 345 - }, - { - "Function Name": "VBufStorage_buffer_t::clearBuffer", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 821, - "End Line": 830 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateMarkupOpeningTag", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 260, - "End Line": 266 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::generateAttributesForMarkupOpeningTag", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 359, - "End Line": 364 - }, - { - "Function Name": "VBufStorage_buffer_t::getTextLength", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 953, - "End Line": 957 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::VBufStorage_controlFieldNode_t", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 373, - "End Line": 375 - }, - { - "Function Name": "VBufStorage_buffer_t::hasContent", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 1209, - "End Line": 1211 - }, - { - "Function Name": "VBufStorage_fieldNode_t::addAttribute", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 321, - "End Line": 325 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::getIdentifier", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 377, - "End Line": 381 - }, - { - "Function Name": "VBufStorage_textFieldNode_t::locateTextFieldNodeAtOffset", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 391, - "End Line": 396 - }, - { - "Function Name": "VBufStorage_fieldNode_t::VBufStorage_fieldNode_t", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 313, - "End Line": 315 - }, - { - "Function Name": "VBufStorage_controlFieldNodeIdentifier_t::VBufStorage_controlFieldNodeIdentifier_t", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 37 - }, - { - "Function Name": "VBufStorage_buffer_t::forgetControlFieldNode", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 437, - "End Line": 443 - }, - { - "Function Name": "VBufStorage_buffer_t::deleteNode", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 517, - "End Line": 524 - }, - { - "Function Name": "VBufStorage_fieldNode_t::generateMarkupClosingTag", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 268, - "End Line": 272 - }, - { - "Function Name": "VBufStorage_controlFieldNode_t::disassociateFromBuffer", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 366, - "End Line": 371 + "Control Flow Ratio": "0.0%", + "Start Line": 366, + "End Line": 371 }, { "Function Name": "VBufStorage_fieldNode_t::disassociateFromBuffer", @@ -455786,9 +455786,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6580.83, + "X": -6579.33, "Y": 172.08, - "Z": -5076.53 + "Z": -5075.23 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -455943,9 +455943,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6957.0, + "X": -6955.49, "Y": 31.77, - "Z": -5531.47 + "Z": -5530.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -456121,9 +456121,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6471.82, + "X": -6470.31, "Y": 134.89, - "Z": -5520.21 + "Z": -5518.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457019,9 +457019,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5993.26, + "X": -5991.76, "Y": 121.13, - "Z": -5731.02 + "Z": -5729.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457187,9 +457187,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6180.16, + "X": -6178.65, "Y": 256.79, - "Z": -5045.49 + "Z": -5044.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457485,9 +457485,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6795.08, + "X": -6793.57, "Y": 143.19, - "Z": -5269.21 + "Z": -5267.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -457843,9 +457843,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -6463.51, + "X": -6462.0, "Y": -12.94, - "Z": -5896.02 + "Z": -5894.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -472843,7 +472843,7 @@ } }, "go/kubernetes": { - "Directory Group Magnitude": 4362.76, + "Directory Group Magnitude": 4354.76, "File Count": 7, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -472853,14 +472853,14 @@ "Error & Exception Exposure": "86.68%", "Tech Debt Exposure": "37.33%", "Testing Exposure": "57.83%", - "API Exposure": "2.61%", + "API Exposure": "2.55%", "Concurrency Exposure": "39.22%", "State Flux Exposure": "91.45%", "Commented Logic Exposure": "4.41%", "Specification Exposure": "85.37%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.43%", + "Documentation Exposure": "37.23%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -472877,9 +472877,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6149.0, + "X": -6143.18, "Y": -66.18, - "Z": -6697.28 + "Z": -6690.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -473454,9 +473454,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5532.08, + "X": -5526.26, "Y": -114.19, - "Z": -6753.18 + "Z": -6746.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -473888,9 +473888,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5360.79, + "X": -5354.97, "Y": -282.71, - "Z": -7413.07 + "Z": -7406.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474173,9 +474173,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5987.82, + "X": -5982.0, "Y": -62.78, - "Z": -6527.86 + "Z": -6520.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474334,9 +474334,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5889.01, + "X": -5883.19, "Y": -181.22, - "Z": -6941.72 + "Z": -6934.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -474812,9 +474812,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -5825.0, + "X": -5819.18, "Y": -178.55, - "Z": -7596.92 + "Z": -7589.88 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -475270,9 +475270,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6345.43, - "Y": -39.71, - "Z": -7216.85 + "X": -6339.43, + "Y": -39.73, + "Z": -7209.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -475284,7 +475284,7 @@ "Total LOC": 676, "Coding LOC": 473, "Documentation LOC": 113, - "Structural Magnitude": 546.26, + "Structural Magnitude": 538.26, "Control Flow Ratio": "51.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -475297,14 +475297,14 @@ "Error & Exception Exposure": "93.94%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "3.08%", + "API Exposure": "2.65%", "Concurrency Exposure": "48.19%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "67.98%", + "Documentation Exposure": "52.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -475530,7 +475530,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 58, + "Exposed API / Public Exports": 50, "State Mutations / Variable Reassignments": 271, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 59, @@ -475669,7 +475669,7 @@ } }, "dockerfile/moby/builder/dockerfile": { - "Directory Group Magnitude": 4178.19, + "Directory Group Magnitude": 4177.19, "File Count": 18, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -475679,14 +475679,14 @@ "Error & Exception Exposure": "76.83%", "Tech Debt Exposure": "64.84%", "Testing Exposure": "36.91%", - "API Exposure": "1.03%", + "API Exposure": "1.02%", "Concurrency Exposure": "10.58%", "State Flux Exposure": "88.89%", "Commented Logic Exposure": "4.08%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.34%", + "Documentation Exposure": "23.28%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -476917,9 +476917,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": 155.3, + "X": 155.29, "Y": -139.31, - "Z": -5122.54 + "Z": -5122.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -476931,7 +476931,7 @@ "Total LOC": 553, "Coding LOC": 436, "Documentation LOC": 52, - "Structural Magnitude": 492.82, + "Structural Magnitude": 491.82, "Control Flow Ratio": "49.5%", "Popularity Rank": 6, "Raw Churn Frequency": 0.0, @@ -476944,14 +476944,14 @@ "Error & Exception Exposure": "88.38%", "Tech Debt Exposure": "23.48%", "Testing Exposure": "80.0%", - "API Exposure": "0.79%", + "API Exposure": "0.7%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "7.5%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.93%", + "Documentation Exposure": "13.85%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -477177,7 +477177,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 12, + "Exposed API / Public Exports": 11, "State Mutations / Variable Reassignments": 240, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 19, @@ -484206,7 +484206,7 @@ } }, "zig/tigerbeetle": { - "Directory Group Magnitude": 3975.78, + "Directory Group Magnitude": 3965.78, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -484216,14 +484216,14 @@ "Error & Exception Exposure": "51.88%", "Tech Debt Exposure": "17.79%", "Testing Exposure": "23.6%", - "API Exposure": "2.77%", + "API Exposure": "2.5%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "39.3%", "Commented Logic Exposure": "1.04%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.15%", + "Documentation Exposure": "21.91%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -484627,8 +484627,8 @@ }, "2. Topological Coordinates": { "X": -6776.09, - "Y": 204.04, - "Z": 2859.76 + "Y": 204.03, + "Z": 2859.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -484640,7 +484640,7 @@ "Total LOC": 1007, "Coding LOC": 741, "Documentation LOC": 95, - "Structural Magnitude": 666.92, + "Structural Magnitude": 663.92, "Control Flow Ratio": "62.6%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -484653,14 +484653,14 @@ "Error & Exception Exposure": "44.46%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.57%", - "API Exposure": "2.28%", + "API Exposure": "2.05%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "81.96%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.98%", + "Documentation Exposure": "24.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -484946,7 +484946,7 @@ "Type/Safety Bypasses": 17, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 9, - "Exposed API / Public Exports": 32, + "Exposed API / Public Exports": 29, "State Mutations / Variable Reassignments": 118, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 36, @@ -485822,9 +485822,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -7425.2, - "Y": 157.0, - "Z": 3524.03 + "X": -7424.98, + "Y": 157.01, + "Z": 3523.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -485836,7 +485836,7 @@ "Total LOC": 296, "Coding LOC": 221, "Documentation LOC": 46, - "Structural Magnitude": 40.22, + "Structural Magnitude": 39.22, "Control Flow Ratio": "60.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -485849,14 +485849,14 @@ "Error & Exception Exposure": "49.75%", "Tech Debt Exposure": "12.63%", "Testing Exposure": "2.33%", - "API Exposure": "3.6%", + "API Exposure": "3.35%", "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": "22.09%", + "Documentation Exposure": "19.36%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -485912,7 +485912,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 13, "State Mutations / Variable Reassignments": 9, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 37, @@ -486652,9 +486652,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -7054.6, - "Y": 260.76, - "Z": 2954.18 + "X": -7054.19, + "Y": 260.59, + "Z": 2954.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -486666,7 +486666,7 @@ "Total LOC": 121, "Coding LOC": 95, "Documentation LOC": 14, - "Structural Magnitude": 67.5, + "Structural Magnitude": 61.5, "Control Flow Ratio": "66.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -486679,14 +486679,14 @@ "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "6.86%", + "API Exposure": "4.3%", "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": "93.35%", + "Documentation Exposure": "63.52%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -486772,7 +486772,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 14, + "Exposed API / Public Exports": 8, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 14, @@ -505256,7 +505256,7 @@ } }, "lua/freebsd-src": { - "Directory Group Magnitude": 3759.8, + "Directory Group Magnitude": 3757.8, "File Count": 16, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -505266,14 +505266,14 @@ "Error & Exception Exposure": "85.7%", "Tech Debt Exposure": "2.86%", "Testing Exposure": "31.52%", - "API Exposure": "2.59%", + "API Exposure": "2.57%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "95.56%", "Commented Logic Exposure": "1.67%", "Specification Exposure": "56.25%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.0%", + "Documentation Exposure": "28.72%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -505290,9 +505290,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": 9464.81, + "X": 9464.85, "Y": -8.57, - "Z": 4071.91 + "Z": 4071.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -505304,7 +505304,7 @@ "Total LOC": 261, "Coding LOC": 177, "Documentation LOC": 45, - "Structural Magnitude": 286.64, + "Structural Magnitude": 285.64, "Control Flow Ratio": "40.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -505317,14 +505317,14 @@ "Error & Exception Exposure": "96.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "2.15%", + "API Exposure": "1.91%", "Concurrency Exposure": "0.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.67%", + "Documentation Exposure": "28.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -505500,7 +505500,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 9, "State Mutations / Variable Reassignments": 131, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -506444,7 +506444,7 @@ "2. Topological Coordinates": { "X": 10014.87, "Y": 2.23, - "Z": 3672.95 + "Z": 3672.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -506456,7 +506456,7 @@ "Total LOC": 587, "Coding LOC": 412, "Documentation LOC": 91, - "Structural Magnitude": 631.14, + "Structural Magnitude": 630.14, "Control Flow Ratio": "48.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -506469,14 +506469,14 @@ "Error & Exception Exposure": "97.76%", "Tech Debt Exposure": "18.72%", "Testing Exposure": "80.0%", - "API Exposure": "8.13%", + "API Exposure": "8.06%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "98.07%", + "Documentation Exposure": "97.89%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -506862,7 +506862,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 67, + "Exposed API / Public Exports": 66, "State Mutations / Variable Reassignments": 272, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -509834,7 +509834,7 @@ } }, "c/doom": { - "Directory Group Magnitude": 3474.0, + "Directory Group Magnitude": 3453.0, "File Count": 13, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "84.6%", @@ -509845,14 +509845,14 @@ "Error & Exception Exposure": "60.76%", "Tech Debt Exposure": "14.87%", "Testing Exposure": "31.86%", - "API Exposure": "10.19%", + "API Exposure": "10.04%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "63.06%", "Commented Logic Exposure": "8.0%", "Specification Exposure": "76.92%", "Instability Exposure": "42.31%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "70.21%", + "Documentation Exposure": "69.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -509869,9 +509869,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5838.57, + "X": -5831.89, "Y": -150.43, - "Z": -5665.86 + "Z": -5658.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -509883,7 +509883,7 @@ "Total LOC": 1172, "Coding LOC": 788, "Documentation LOC": 175, - "Structural Magnitude": 879.16, + "Structural Magnitude": 876.16, "Control Flow Ratio": "72.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -509896,14 +509896,14 @@ "Error & Exception Exposure": "98.61%", "Tech Debt Exposure": "18.47%", "Testing Exposure": "80.0%", - "API Exposure": "12.71%", + "API Exposure": "12.62%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.34%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "96.25%", + "Documentation Exposure": "95.68%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -510049,7 +510049,7 @@ "Type/Safety Bypasses": 26, "High-Risk Execution Commands": 1, "I/O and Network Boundaries": 7, - "Exposed API / Public Exports": 116, + "Exposed API / Public Exports": 113, "State Mutations / Variable Reassignments": 484, "Commented-out Code (Dead Logic)": 4, "Structured Documentation Blocks": 0, @@ -510188,9 +510188,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4954.06, + "X": -4947.41, "Y": -240.07, - "Z": -5698.46 + "Z": -5691.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510348,9 +510348,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5828.56, - "Y": 41.65, - "Z": -6530.91 + "X": -5821.26, + "Y": 41.27, + "Z": -6522.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510362,7 +510362,7 @@ "Total LOC": 184, "Coding LOC": 107, "Documentation LOC": 38, - "Structural Magnitude": 81.34, + "Structural Magnitude": 70.34, "Control Flow Ratio": "16.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -510375,14 +510375,14 @@ "Error & Exception Exposure": "77.35%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.44%", - "API Exposure": "13.33%", + "API Exposure": "11.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "96.75%", "Commented Logic Exposure": "7.51%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.99%", + "Documentation Exposure": "99.58%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -510518,7 +510518,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 38, + "Exposed API / Public Exports": 27, "State Mutations / Variable Reassignments": 16, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 0, @@ -510640,9 +510640,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6199.25, + "X": -6192.61, "Y": -82.15, - "Z": -5842.57 + "Z": -5835.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510833,9 +510833,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5257.88, + "X": -5251.24, "Y": 63.42, - "Z": -6607.08 + "Z": -6600.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -510990,9 +510990,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5542.66, + "X": -5536.01, "Y": -102.3, - "Z": -5997.79 + "Z": -5990.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511319,9 +511319,9 @@ "Identity Proof": "Sibling Anchor (.c)" }, "2. Topological Coordinates": { - "X": -5745.19, + "X": -5738.55, "Y": -234.62, - "Z": -5439.28 + "Z": -5432.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511482,9 +511482,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5492.67, + "X": -5486.03, "Y": -27.79, - "Z": -6256.5 + "Z": -6249.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511729,9 +511729,9 @@ "Identity Proof": "Ecosystem Consensus Lock (70% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5115.53, + "X": -5108.89, "Y": -23.65, - "Z": -6120.39 + "Z": -6113.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511891,9 +511891,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -5292.39, - "Y": -202.88, - "Z": -5485.19 + "X": -5285.8, + "Y": -202.86, + "Z": -5478.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -511905,7 +511905,7 @@ "Total LOC": 578, "Coding LOC": 323, "Documentation LOC": 116, - "Structural Magnitude": 421.46, + "Structural Magnitude": 418.46, "Control Flow Ratio": "64.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -511918,14 +511918,14 @@ "Error & Exception Exposure": "98.57%", "Tech Debt Exposure": "13.23%", "Testing Exposure": "80.0%", - "API Exposure": "13.52%", + "API Exposure": "13.39%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "7.36%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.71%", + "Documentation Exposure": "99.59%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -512091,7 +512091,7 @@ "Type/Safety Bypasses": 5, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 19, - "Exposed API / Public Exports": 77, + "Exposed API / Public Exports": 74, "State Mutations / Variable Reassignments": 227, "Commented-out Code (Dead Logic)": 3, "Structured Documentation Blocks": 0, @@ -512213,9 +512213,9 @@ "Identity Proof": "Ecosystem Consensus Lock (100% Local Dominance)" }, "2. Topological Coordinates": { - "X": -6117.45, - "Y": 1.59, - "Z": -6142.37 + "X": -6110.68, + "Y": 1.57, + "Z": -6135.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -512227,7 +512227,7 @@ "Total LOC": 468, "Coding LOC": 256, "Documentation LOC": 99, - "Structural Magnitude": 371.22, + "Structural Magnitude": 367.22, "Control Flow Ratio": "67.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -512240,14 +512240,14 @@ "Error & Exception Exposure": "99.63%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "12.33%", + "API Exposure": "12.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "6.82%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "97.37%", + "Documentation Exposure": "95.39%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -512363,7 +512363,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 47, + "Exposed API / Public Exports": 43, "State Mutations / Variable Reassignments": 200, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 0, @@ -512475,9 +512475,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5336.83, + "X": -5330.19, "Y": -269.26, - "Z": -5121.53 + "Z": -5114.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -512632,9 +512632,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6194.35, + "X": -6187.71, "Y": 77.41, - "Z": -6368.8 + "Z": -6361.73 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -512663,1388 +512663,45 @@ "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": 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": 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": 0, - "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": 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": 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": [] - } - } - }, - "python/twisted": { - "Directory Group Magnitude": 3319.48, - "File Count": 4, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "23.38%", - "Error & Exception Exposure": "69.47%", - "Tech Debt Exposure": "22.93%", - "Testing Exposure": "80.0%", - "API Exposure": "2.97%", - "Concurrency Exposure": "3.16%", - "State Flux Exposure": "84.37%", - "Commented Logic Exposure": "4.05%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.99%", - "Hardcoded Payload Artifacts": "6.14%" - }, - "Files": { - "python/twisted/defer.py": { - "1. Artifact Identity": { - "Filename": "defer.py", - "Path": "python/twisted/defer.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "Exception, TypeError, Enum", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 7272.24, - "Y": -60.79, - "Z": -4920.18 - }, - "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": 2565, - "Coding LOC": 1151, - "Documentation LOC": 956, - "Structural Magnitude": 881.12, - "Control Flow Ratio": "35.5%", - "Popularity Rank": 1, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.594 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.42%", - "Error & Exception Exposure": "79.34%", - "Tech Debt Exposure": "55.89%", - "Testing Exposure": "80.0%", - "API Exposure": "1.79%", - "Concurrency Exposure": "12.65%", - "State Flux Exposure": "93.55%", - "Commented Logic Exposure": "5.6%", - "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": "_runCallbacks", - "Structural Impact": 44.4, - "Lines of Code (LOC)": 153, - "Control Flow Branches": 25, - "Input Parameters": 1, - "Control Flow Ratio": "78.1%", - "Start Line": 1005, - "End Line": 1157 - }, - { - "Function Name": "_inlineCallbacks", - "Structural Impact": 42.0, - "Lines of Code (LOC)": 169, - "Control Flow Branches": 14, - "Input Parameters": 4, - "Control Flow Ratio": "46.7%", - "Start Line": 1805, - "End Line": 1973 - }, - { - "Function Name": "deferUntilLocked", - "Structural Impact": 24.1, - "Lines of Code (LOC)": 67, - "Control Flow Branches": 11, - "Input Parameters": 2, - "Control Flow Ratio": "64.7%", - "Start Line": 2475, - "End Line": 2541 - }, - { - "Function Name": "addCallbacks", - "Structural Impact": 23.1, - "Lines of Code (LOC)": 66, - "Control Flow Branches": 6, - "Input Parameters": 7, - "Control Flow Ratio": "75.0%", - "Start Line": 480, - "End Line": 545 - }, - { - "Function Name": "_cbDeferred", - "Structural Impact": 21.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 8, - "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1554, - "End Line": 1578 - }, - { - "Function Name": "race", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "53.8%", - "Start Line": 1650, - "End Line": 1726 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 15.1, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "38.5%", - "Start Line": 183, - "End Line": 243 - }, - { - "Function Name": "_startRunCallbacks", - "Structural Impact": 13.3, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 974, - "End Line": 996 - }, - { - "Function Name": "__init__", - "Structural Impact": 13.2, - "Lines of Code (LOC)": 69, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "75.0%", - "Start Line": 1484, - "End Line": 1552 - }, - { - "Function Name": "addTimeout", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 70, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "27.3%", - "Start Line": 768, - "End Line": 837 - }, - { - "Function Name": "cancel", - "Structural Impact": 9.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 946, - "End Line": 972 - }, - { - "Function Name": "__iter__", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1176, - "End Line": 1195 - }, - { - "Function Name": "put", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 2402, - "End Line": 2413 - }, - { - "Function Name": "asFuture", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "37.5%", - "Start Line": 1199, - "End Line": 1231 - }, - { - "Function Name": "_gotResultInlineCallbacks", - "Structural Impact": 8.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 5, - "Control Flow Ratio": "66.7%", - "Start Line": 1777, - "End Line": 1801 - }, - { - "Function Name": "ensureDeferred", - "Structural Impact": 8.4, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1342, - "End Line": 1367 - }, - { - "Function Name": "inlineCallbacks", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 81, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2047, - "End Line": 2127 - }, - { - "Function Name": "succeeded", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1683, - "End Line": 1703 - }, - { - "Function Name": "get", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2415, - "End Line": 2432 - }, - { - "Function Name": "_cancelLock", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2495, - "End Line": 2512 - }, - { - "Function Name": "fromFuture", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "20.0%", - "Start Line": 1234, - "End Line": 1281 - }, - { - "Function Name": "fromCoroutine", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1284, - "End Line": 1331 - }, - { - "Function Name": "_parseDeferredListResult", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 1600, - "End Line": 1608 - }, - { - "Function Name": "errback", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 891, - "End Line": 928 - }, - { - "Function Name": "_tryLock", - "Structural Impact": 7.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "83.3%", - "Start Line": 2516, - "End Line": 2537 - }, - { - "Function Name": "execute", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "40.0%", - "Start Line": 142, - "End Line": 157 - }, - { - "Function Name": "__del__", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 370, - "End Line": 388 - }, - { - "Function Name": "cancel", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1580, - "End Line": 1597 - }, - { - "Function Name": "__str__", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1159, - "End Line": 1172 - }, - { - "Function Name": "unwindGenerator", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2112, - "End Line": 2125 - }, - { - "Function Name": "failed", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1709, - "End Line": 1715 - }, - { - "Function Name": "addBoth", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 749, - "End Line": 764 - }, - { - "Function Name": "addCallback", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 619, - "End Line": 632 - }, - { - "Function Name": "addErrback", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "33.3%", - "Start Line": 661, - "End Line": 674 - }, - { - "Function Name": "__init__", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 444, - "End Line": 474 - }, - { - "Function Name": "acquire", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2248, - "End Line": 2263 - }, - { - "Function Name": "acquire", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 2320, - "End Line": 2335 - }, - { - "Function Name": "_getDebugTracebacks", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 358, - "End Line": 368 - }, - { - "Function Name": "convertCancelled", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 815, - "End Line": 823 - }, - { - "Function Name": "unpause", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 936, - "End Line": 944 - }, - { - "Function Name": "__init__", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 2461, - "End Line": 2473 - }, - { - "Function Name": "_cancelledToTimedOutError", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 279, - "End Line": 296 - }, - { - "Function Name": "__cmp__", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1400, - "End Line": 1411 - }, - { - "Function Name": "__init__", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 2295, - "End Line": 2304 - }, - { - "Function Name": "run", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2167, - "End Line": 2195 - }, - { - "Function Name": "release", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2265, - "End Line": 2279 - }, - { - "Function Name": "release", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2337, - "End Line": 2352 - }, - { - "Function Name": "uncancel", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1269, - "End Line": 1276 - }, - { - "Function Name": "cancel", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1668, - "End Line": 1674 - }, - { - "Function Name": "cancelTimeout", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 825, - "End Line": 829 - }, - { - "Function Name": "adapt", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1253, - "End Line": 1258 - }, - { - "Function Name": "gatherResults", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1611, - "End Line": 1637 - }, - { - "Function Name": "chainDeferred", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 839, - "End Line": 864 - }, - { - "Function Name": "checkCancel", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1216, - "End Line": 1218 - }, - { - "Function Name": "maybeFail", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1220, - "End Line": 1222 - }, - { - "Function Name": "maybeSucceed", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1224, - "End Line": 1226 - }, - { - "Function Name": "callback", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 866, - "End Line": 889 - }, - { - "Function Name": "_handleCancelInlineCallbacks", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 23, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1992, - "End Line": 2014 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 569, - "End Line": 578 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 599, - "End Line": 608 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 686, - "End Line": 695 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 698, - "End Line": 706 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 709, - "End Line": 717 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 720, - "End Line": 729 - }, - { - "Function Name": "__aexit__", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2203, - "End Line": 2212 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 560, - "End Line": 566 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 581, - "End Line": 587 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 590, - "End Line": 596 - }, - { - "Function Name": "addCallback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 611, - "End Line": 617 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 635, - "End Line": 641 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 644, - "End Line": 650 - }, - { - "Function Name": "addErrback", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 653, - "End Line": 659 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 677, - "End Line": 683 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 732, - "End Line": 738 - }, - { - "Function Name": "addBoth", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 741, - "End Line": 747 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1425, - "End Line": 1431 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1434, - "End Line": 1440 - }, - { - "Function Name": "_DeferredList", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1442, - "End Line": 1449 - }, - { - "Function Name": "run", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2142, - "End Line": 2149 - }, - { - "Function Name": "run", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2152, - "End Line": 2159 - }, - { - "Function Name": "succeed", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 123 - }, - { - "Function Name": "_cancellableInlineCallbacks", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2017, - "End Line": 2037 - }, - { - "Function Name": "_addCancelCallbackToDeferred", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1976, - "End Line": 1989 - }, - { - "Function Name": "run", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 2162, - "End Line": 2165 - }, - { - "Function Name": "_cancelAcquire", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2234, - "End Line": 2246 - }, - { - "Function Name": "_cancelAcquire", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2306, - "End Line": 2318 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2380, - "End Line": 2386 - }, - { - "Function Name": "_cancelGet", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2388, - "End Line": 2400 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 168, - "End Line": 173 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 161, - "End Line": 164 - }, - { - "Function Name": "maybeDeferred", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 177, - "End Line": 180 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1380, - "End Line": 1383 - }, - { - "Function Name": "fail", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 126, - "End Line": 139 - }, - { - "Function Name": "returnValue", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1746, - "End Line": 1759 - }, - { - "Function Name": "logError", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 89, - "End Line": 99 - }, - { - "Function Name": "__init_subclass__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1333, - "End Line": 1336 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1645, - "End Line": 1647 - }, - { - "Function Name": "_releaseAndReturn", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2137, - "End Line": 2139 - }, - { - "Function Name": "setDebugging", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 262, - "End Line": 269 - }, - { - "Function Name": "__str__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1392, - "End Line": 1398 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1738, - "End Line": 1739 - }, - { - "Function Name": "pause", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 930, - "End Line": 934 - }, - { - "Function Name": "_continuation", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 998, - "End Line": 1003 - }, - { - "Function Name": "__repr__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1385, - "End Line": 1390 - }, - { - "Function Name": "execute", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2188, - "End Line": 2193 - }, - { - "Function Name": "__aenter__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2197, - "End Line": 2201 - }, - { - "Function Name": "cancel", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1262, - "End Line": 1264 - }, - { - "Function Name": "timeout", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 250, - "End Line": 251 - }, - { - "Function Name": "passthru", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 254, - "End Line": 255 - }, - { - "Function Name": "_failthru", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 258, - "End Line": 259 - }, - { - "Function Name": "callbacks", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 477, - "End Line": 478 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2134, - "End Line": 2135 - }, - { - "Function Name": "acquire", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2215, - "End Line": 2216 - }, - { - "Function Name": "release", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2219, - "End Line": 2220 - }, - { - "Function Name": "getDebugging", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 272, - "End Line": 276 - }, - { - "Function Name": "timeItOut", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 809, - "End Line": 811 - } - ], + "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": 156, - "Sequential Logic Declarations": 283, - "Function Parameters": 119, - "Function/Method Declarations": 116, - "Class/Entity Declarations": 21, - "Defensive Programming Constructs": 53, - "Type/Safety Bypasses": 78, + "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": 93, - "State Mutations / Variable Reassignments": 146, - "Commented-out Code (Dead Logic)": 5, - "Structured Documentation Blocks": 77, + "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": 1, + "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": 35, - "Generic Type Abstractions": 220, - "Collection Iterators / Comprehensions": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, - "Module Dependencies (Imports)": 22, + "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": 1, + "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -514052,18 +512709,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 6, - "Fatal Aborts & Exceptions": 13, + "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": 508, - "Event Listeners & Subscribers": 41, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1035, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -514078,17 +512735,17 @@ "Local Inference & Tensor Math": 0, "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 10, - "Vectorized Math & Tensor Operations": 15, - "Core Var Decl": 133, - "Design Camel Case": 30, - "Design Snake Case": 75, - "Design Pascal Case": 5, - "Design Upper Case": 2, - "Design Short Vars": 6, - "Design Long Vars": 6, - "Duplicate Logic": 2, - "Orphaned Logic": 14, + "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, + "Design Upper Case": 0, + "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, @@ -514096,7 +512753,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -514112,56 +512769,381 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 25, - "Direct Downstream (Dependency Blast Radius)": 1, - "Total Upstream (Absolute 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": [] + } + } + }, + "python/fastapi/fastapi": { + "Directory Group Magnitude": 3292.3, + "File Count": 23, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "6.12%", + "Error & Exception Exposure": "39.91%", + "Tech Debt Exposure": "6.79%", + "Testing Exposure": "15.76%", + "API Exposure": "2.42%", + "Concurrency Exposure": "15.17%", + "State Flux Exposure": "15.13%", + "Commented Logic Exposure": "0.21%", + "Specification Exposure": "60.87%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "14.88%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "python/fastapi/fastapi/__init__.py": { + "1. Artifact Identity": { + "Filename": "__init__.py", + "Path": "python/fastapi/fastapi/__init__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 3127.42, + "Y": -258.21, + "Z": 2664.69 + }, + "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": 26, + "Coding LOC": 21, + "Documentation LOC": 1, + "Structural Magnitude": 15.42, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 60, + "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": 0, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "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)": 20, + "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": 2, + "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": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 0, + "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": 0, + "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)": 10, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "abc", - "asyncio", - "attr", - "contextvars", - "enum", - "functools", - "incremental", - "inspect", - "sys", - "traceback", - "treq", - "twisted.internet", - "twisted.internet.defer", - "twisted.internet.interfaces", - "twisted.internet.task", - "twisted.logger", - "twisted.python", - "twisted.python.compat", - "twisted.python.deprecate", - "twisted.python.failure", - "types", - "typing", - "typing_extensions", - "warnings" + ".applications", + ".background", + ".datastructures", + ".exceptions", + ".param_functions", + ".requests", + ".responses", + ".routing", + ".websockets", + "starlette" ] }, - "python/twisted/http.py": { + "python/fastapi/fastapi/__main__.py": { "1. Artifact Identity": { - "Filename": "http.py", - "Path": "python/twisted/http.py", + "Filename": "__main__.py", + "Path": "python/fastapi/fastapi/__main__.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2443.89, + "Y": -218.58, + "Z": 3754.92 + }, + "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": 4, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, + "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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 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": 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)": 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": 0, + "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": 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": 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": [ + "fastapi.cli" + ] + }, + "python/fastapi/fastapi/applications.py": { + "1. Artifact Identity": { + "Filename": "applications.py", + "Path": "python/fastapi/fastapi/applications.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Exception, Interface, basic.LineReceiver", + "Parent Entity": "Starlette", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7587.57, - "Y": -58.65, - "Z": -4922.35 + "X": 2549.13, + "Y": -204.67, + "Z": 3293.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -514170,1593 +513152,586 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 3481, - "Coding LOC": 1513, - "Documentation LOC": 1339, - "Structural Magnitude": 1395.06, - "Control Flow Ratio": "44.2%", - "Popularity Rank": 9, + "Total LOC": 4750, + "Coding LOC": 1843, + "Documentation LOC": 2240, + "Structural Magnitude": 493.96, + "Control Flow Ratio": "18.9%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.923 + "Raw Cognitive Density": 0.104 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "33.31%", - "Error & Exception Exposure": "75.23%", - "Tech Debt Exposure": "11.53%", + "Cognitive Load Exposure": "3.52%", + "Error & Exception Exposure": "62.44%", + "Tech Debt Exposure": "8.59%", "Testing Exposure": "80.0%", - "API Exposure": "3.29%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.82%", - "Commented Logic Exposure": "5.23%", + "API Exposure": "7.55%", + "Concurrency Exposure": "14.89%", + "State Flux Exposure": "17.15%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.19%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "addCookie", - "Structural Impact": 64.6, - "Lines of Code (LOC)": 115, - "Control Flow Branches": 16, - "Input Parameters": 11, - "Control Flow Ratio": "69.6%", - "Start Line": 1322, - "End Line": 1436 - }, - { - "Function Name": "write", - "Structural Impact": 36.5, - "Lines of Code (LOC)": 72, - "Control Flow Branches": 18, - "Input Parameters": 2, - "Control Flow Ratio": "81.8%", - "Start Line": 1249, - "End Line": 1320 - }, - { - "Function Name": "lineReceived", - "Structural Impact": 32.7, - "Lines of Code (LOC)": 65, - "Control Flow Branches": 16, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 2361, - "End Line": 2425 - }, - { - "Function Name": "requestReceived", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 10, - "Input Parameters": 4, - "Control Flow Ratio": "83.3%", - "Start Line": 1038, - "End Line": 1096 - }, - { - "Function Name": "_maybeChooseTransferDecoder", - "Structural Impact": 21.9, - "Lines of Code (LOC)": 37, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "56.2%", - "Start Line": 2439, - "End Line": 2475 - }, - { - "Function Name": "parse_qs", - "Structural Impact": 21.3, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 9, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 366, - "End Line": 391 - }, - { - "Function Name": "stringToDatetime", - "Structural Impact": 21.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 12, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 455, - "End Line": 507 - }, - { - "Function Name": "_dataReceived_CHUNK_LENGTH", - "Structural Impact": 18.2, - "Lines of Code (LOC)": 52, - "Control Flow Branches": 10, - "Input Parameters": 1, - "Control Flow Ratio": "71.4%", - "Start Line": 1999, - "End Line": 2050 - }, - { - "Function Name": "checkPersistence", - "Structural Impact": 18.1, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 7, - "Input Parameters": 3, - "Control Flow Ratio": "63.6%", - "Start Line": 2626, - "End Line": 2667 - }, - { - "Function Name": "lineReceived", - "Structural Impact": 17.6, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "72.7%", - "Start Line": 728, - "End Line": 767 - }, - { - "Function Name": "timegm", - "Structural Impact": 14.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "57.1%", - "Start Line": 435, - "End Line": 452 - }, - { - "Function Name": "writeHeaders", - "Structural Impact": 14.0, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 4, - "Input Parameters": 5, - "Control Flow Ratio": "80.0%", - "Start Line": 2743, - "End Line": 2777 - }, - { - "Function Name": "_parseRequestLine", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 50, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 245, - "End Line": 294 - }, - { - "Function Name": "setETag", - "Structural Impact": 13.7, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 6, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1518, - "End Line": 1549 - }, - { - "Function Name": "setHost", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 4, - "Control Flow Ratio": "80.0%", - "Start Line": 1591, - "End Line": 1623 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "62.5%", - "Start Line": 3242, - "End Line": 3289 - }, - { - "Function Name": "finish", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "77.8%", - "Start Line": 1220, - "End Line": 1247 - }, - { - "Function Name": "headerReceived", - "Structural Impact": 12.4, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "41.7%", - "Start Line": 2477, - "End Line": 2517 - }, - { - "Function Name": "setLastModified", - "Structural Impact": 12.2, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "55.6%", - "Start Line": 1481, - "End Line": 1516 - }, - { - "Function Name": "_dataReceived_TRAILER", - "Structural Impact": 12.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2072, - "End Line": 2115 - }, - { - "Function Name": "combinedLogFormatter", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 2995, - "End Line": 3025 - }, - { - "Function Name": "__init__", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 3, - "Input Parameters": 5, - "Control Flow Ratio": "50.0%", - "Start Line": 3350, - "End Line": 3389 - }, - { - "Function Name": "requestDone", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 2669, - "End Line": 2693 - }, - { - "Function Name": "getRequestHostname", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1564, - "End Line": 1579 - }, - { - "Function Name": "rawDataReceived", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2570, - "End Line": 2609 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 1831, - "End Line": 1861 - }, - { - "Function Name": "registerProducer", - "Structural Impact": 10.1, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 3, - "Input Parameters": 3, - "Control Flow Ratio": "75.0%", - "Start Line": 2828, - "End Line": 2868 - }, - { - "Function Name": "_cleanup", - "Structural Impact": 9.6, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 958, - "End Line": 979 - }, - { - "Function Name": "parseCookies", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1009, - "End Line": 1028 - }, - { - "Function Name": "_escape", - "Structural Impact": 8.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 2970, - "End Line": 2991 - }, - { - "Function Name": "_getMultiPartArgs", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 314, - "End Line": 335 - }, - { - "Function Name": "stopFactory", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 3455, - "End Line": 3463 - }, - { - "Function Name": "rawDataReceived", - "Structural Impact": 7.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 809, - "End Line": 818 - }, - { - "Function Name": "fromChunk", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 521, - "End Line": 541 - }, - { - "Function Name": "setResponseCode", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 1438, - "End Line": 1449 - }, - { - "Function Name": "_dataReceived_CRLF", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 2052, - "End Line": 2070 - }, - { - "Function Name": "parseContentRange", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 544, - "End Line": 559 - }, - { - "Function Name": "_ensureBytes", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 1380, - "End Line": 1396 - }, - { - "Function Name": "_authorize", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 1677, - "End Line": 1693 - }, - { - "Function Name": "allHeadersReceived", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 2611, - "End Line": 2624 - }, { "Function Name": "__init__", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 923, - "End Line": 956 - }, - { - "Function Name": "startFactory", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 3446, - "End Line": 3453 - }, - { - "Function Name": "pauseProducing", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2897, - "End Line": 2930 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1727, - "End Line": 1738 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2147, - "End Line": 2155 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 2719, - "End Line": 2727 - }, - { - "Function Name": "urlparse", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 338, - "End Line": 363 - }, - { - "Function Name": "isSecure", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1656, - "End Line": 1675 - }, - { - "Function Name": "datetimeToString", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 394, - "End Line": 411 - }, - { - "Function Name": "noMoreData", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1863, - "End Line": 1880 - }, - { - "Function Name": "_dataReceived_BODY", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2117, - "End Line": 2134 - }, - { - "Function Name": "resumeProducing", - "Structural Impact": 5.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 2932, - "End Line": 2949 - }, - { - "Function Name": "getClientIP", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 1626, - "End Line": 1638 - }, - { - "Function Name": "unregisterProducer", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2870, - "End Line": 2883 - }, - { - "Function Name": "registerProducer", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1124, - "End Line": 1136 - }, - { - "Function Name": "_getContentFile", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 837, - "End Line": 843 - }, - { - "Function Name": "__eq__", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1747, - "End Line": 1765 - }, - { - "Function Name": "sendHeader", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 702, - "End Line": 708 - }, - { - "Function Name": "getHeader", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 1147, - "End Line": 1162 - }, - { - "Function Name": "extractHeader", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 713, - "End Line": 726 - }, - { - "Function Name": "allContentReceived", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 2519, - "End Line": 2545 - }, - { - "Function Name": "log", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3471, - "End Line": 3480 - }, - { - "Function Name": "_set_logFile", - "Structural Impact": 3.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 3410, - "End Line": 3418 - }, - { - "Function Name": "datetimeToLogString", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 414, - "End Line": 432 - }, - { - "Function Name": "getUser", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1695, - "End Line": 1709 - }, - { - "Function Name": "getPassword", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 1711, - "End Line": 1725 - }, - { - "Function Name": "isSecure", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 2729, - "End Line": 2741 - }, - { - "Function Name": "notifyFinish", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 42, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1177, - "End Line": 1218 - }, - { - "Function Name": "getAllHeaders", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 1551, - "End Line": 1562 - }, - { - "Function Name": "stopProducing", - "Structural Impact": 3.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2885, - "End Line": 2895 - }, - { - "Function Name": "handleResponseEnd", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 772, - "End Line": 781 - }, - { - "Function Name": "noMoreData", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2157, - "End Line": 2166 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2348, - "End Line": 2355 - }, - { - "Function Name": "timeoutConnection", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 2695, - "End Line": 2702 - }, - { - "Function Name": "loseConnection", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 1740, - "End Line": 1745 + "Structural Impact": 110.7, + "Lines of Code (LOC)": 960, + "Control Flow Branches": 12, + "Input Parameters": 39, + "Control Flow Ratio": "70.6%", + "Start Line": 61, + "End Line": 1020 }, { - "Function Name": "_get_logFile", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "setup", + "Structural Impact": 19.7, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 11, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 3404, - "End Line": 3407 - }, - { - "Function Name": "_protocolUpgradeForWebsockets", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2547, - "End Line": 2568 - }, - { - "Function Name": "setHeader", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1451, - "End Line": 1464 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1986, - "End Line": 1997 - }, - { - "Function Name": "buildProtocol", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3429, - "End Line": 3444 - }, - { - "Function Name": "redirect", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1466, - "End Line": 1479 - }, - { - "Function Name": "__init__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1826, - "End Line": 1829 - }, - { - "Function Name": "handleStatus", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 789, - "End Line": 789 + "Control Flow Ratio": "55.0%", + "Start Line": 1105, + "End Line": 1158 }, { - "Function Name": "gotLength", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, + "Function Name": "get", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 997, - "End Line": 1007 + "Start Line": 1567, + "End Line": 1938 }, { - "Function Name": "getCookie", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "put", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1164, - "End Line": 1175 + "Start Line": 1940, + "End Line": 2316 }, { - "Function Name": "requestFactory", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "post", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3165, - "End Line": 3176 + "Start Line": 2318, + "End Line": 2694 }, { - "Function Name": "site", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "delete", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3188, - "End Line": 3199 + "Start Line": 2696, + "End Line": 3067 }, { - "Function Name": "timeOut", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, + "Function Name": "options", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3209, - "End Line": 3220 + "Start Line": 3069, + "End Line": 3440 }, { - "Function Name": "__repr__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "head", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1098, - "End Line": 1112 + "Start Line": 3442, + "End Line": 3813 }, { - "Function Name": "getClientAddress", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "patch", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 377, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1640, - "End Line": 1654 + "Start Line": 3815, + "End Line": 4191 }, { - "Function Name": "write", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, + "Function Name": "trace", + "Structural Impact": 19.0, + "Lines of Code (LOC)": 372, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2779, - "End Line": 2788 + "Start Line": 4193, + "End Line": 4564 }, { - "Function Name": "writeSequence", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2790, - "End Line": 2799 + "Function Name": "include_router", + "Structural Impact": 14.4, + "Lines of Code (LOC)": 204, + "Control Flow Branches": 1, + "Input Parameters": 11, + "Control Flow Ratio": "33.3%", + "Start Line": 1362, + "End Line": 1565 }, { - "Function Name": "getClientAddress", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, + "Function Name": "build_middleware_stack", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3050, - "End Line": 3064 - }, - { - "Function Name": "proxiedLogFormatter", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3093, - "End Line": 3101 - }, - { - "Function Name": "callLater", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3231, - "End Line": 3240 + "Control Flow Ratio": "66.7%", + "Start Line": 1022, + "End Line": 1070 }, { - "Function Name": "sendCommand", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 2, + "Function Name": "api_route", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 59, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 699, - "End Line": 700 + "Start Line": 1222, + "End Line": 1280 }, { - "Function Name": "handleContentChunk", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "add_api_route", + "Structural Impact": 7.9, + "Lines of Code (LOC)": 56, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 25, "Control Flow Ratio": "0.0%", - "Start Line": 1030, - "End Line": 1036 + "Start Line": 1165, + "End Line": 1220 }, { - "Function Name": "forceAbortClient", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, + "Function Name": "openapi", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2704, - "End Line": 2717 - }, - { - "Function Name": "requestReceived", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 610, - "End Line": 610 + "Control Flow Ratio": "66.7%", + "Start Line": 1108, + "End Line": 1118 }, { - "Function Name": "handleHeader", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "websocket", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 64, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 799, - "End Line": 799 + "Start Line": 1297, + "End Line": 1360 }, { - "Function Name": "noLongerQueued", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 984, - "End Line": 995 + "Function Name": "__call__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 1160, + "End Line": 1163 }, { - "Function Name": "registerProducer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 1, + "Function Name": "vibe", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 2193, - "End Line": 2193 - }, - { - "Function Name": "_openLogFile", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3465, - "End Line": 3469 - }, - { - "Function Name": "_parseContentType", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 297, - "End Line": 305 - }, - { - "Function Name": "toChunk", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 518 - }, - { - "Function Name": "_sanitize", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1398, - "End Line": 1406 - }, - { - "Function Name": "getHost", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1581, - "End Line": 1589 - }, - { - "Function Name": "_dataReceived_FINISHED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2136, - "End Line": 2145 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2357, - "End Line": 2359 - }, - { - "Function Name": "_finishRequestBody", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2427, - "End Line": 2429 - }, - { - "Function Name": "loseConnection", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2817, - "End Line": 2826 + "Start Line": 4566, + "End Line": 4618 }, { - "Function Name": "_respondToBadRequestAndDisconnect", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, + "Function Name": "openapi", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2958, - "End Line": 2967 - }, - { - "Function Name": "factory", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3151, - "End Line": 3153 - }, - { - "Function Name": "writeSequence", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 666, - "End Line": 667 - }, - { - "Function Name": "__getattr__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 669, - "End Line": 670 + "Control Flow Ratio": "33.3%", + "Start Line": 1072, + "End Line": 1103 }, { - "Function Name": "connectionLost", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "middleware", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 45, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 769, - "End Line": 770 + "Start Line": 4658, + "End Line": 4702 }, { - "Function Name": "handleResponsePart", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "exception_handler", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 46, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 783, - "End Line": 784 - }, - { - "Function Name": "process", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1114, - "End Line": 1120 - }, - { - "Function Name": "__hash__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1767, - "End Line": 1773 + "Start Line": 4704, + "End Line": 4749 }, { - "Function Name": "_failChooseTransferDecoder", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, + "Function Name": "swagger_ui_html", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2431, - "End Line": 2437 + "Control Flow Ratio": "33.3%", + "Start Line": 1123, + "End Line": 1135 }, { - "Function Name": "getPeer", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "add_api_websocket_route", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 14, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 2801, - "End Line": 2807 + "Start Line": 1282, + "End Line": 1295 }, { - "Function Name": "getHost", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "decorator", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2809, - "End Line": 2815 + "Start Line": 1251, + "End Line": 1278 }, { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "on_event", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 3040, - "End Line": 3041 - }, - { - "Function Name": "requestFactory", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3156, - "End Line": 3162 - }, - { - "Function Name": "site", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3179, - "End Line": 3185 + "Start Line": 4637, + "End Line": 4656 }, { - "Function Name": "_genericHTTPChannelProtocolFactory", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "websocket_route", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 3292, - "End Line": 3298 + "Start Line": 4620, + "End Line": 4627 }, { - "Function Name": "write", + "Function Name": "decorator", "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 3302, - "End Line": 3302 - }, - { - "Function Name": "unregisterProducer", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1138, - "End Line": 1143 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2341, - "End Line": 2346 - }, - { - "Function Name": "_send100Continue", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2951, - "End Line": 2956 - }, - { - "Function Name": "clientproto", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3068, - "End Line": 3073 - }, - { - "Function Name": "code", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3076, - "End Line": 3081 - }, - { - "Function Name": "sentLength", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3084, - "End Line": 3089 - }, - { - "Function Name": "factory", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3144, - "End Line": 3148 - }, - { - "Function Name": "timeOut", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 3202, - "End Line": 3206 - }, - { - "Function Name": "callLater", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3223, - "End Line": 3228 + "Start Line": 1351, + "End Line": 1358 }, { - "Function Name": "_updateLogDateTime", + "Function Name": "redoc_html", "Structural Impact": 1.7, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3422, - "End Line": 3427 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 577 - }, - { - "Function Name": "gotLength", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 586, - "End Line": 586 - }, - { - "Function Name": "handleContentChunk", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 596, - "End Line": 596 - }, - { - "Function Name": "__eq__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 626, - "End Line": 626 - }, - { - "Function Name": "__ne__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 637, - "End Line": 637 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 663, - "End Line": 664 - }, - { - "Function Name": "endHeaders", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 710, - "End Line": 711 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 786, - "End Line": 787 - }, - { - "Function Name": "handleEndHeaders", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 804, - "End Line": 804 - }, - { - "Function Name": "pauseProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2177, - "End Line": 2177 - }, - { - "Function Name": "resumeProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2185, - "End Line": 2185 + "Start Line": 1151, + "End Line": 1156 }, { - "Function Name": "unregisterProducer", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2201, - "End Line": 2201 + "Start Line": 4623, + "End Line": 4625 }, { - "Function Name": "stopProducing", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2206, - "End Line": 2206 + "Control Flow Ratio": "0.0%", + "Start Line": 4698, + "End Line": 4700 }, { - "Function Name": "close", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 1, + "Function Name": "decorator", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3307, - "End Line": 3307 + "Start Line": 4745, + "End Line": 4747 }, { - "Function Name": "parseCookies", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "swagger_ui_redirect", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 605, - "End Line": 605 - }, + "Start Line": 1141, + "End Line": 1142 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 30, + "Sequential Logic Declarations": 129, + "Function Parameters": 32, + "Function/Method Declarations": 32, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 58, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 32, + "State Mutations / Variable Reassignments": 38, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 261, + "Unit Test Assertions": 2, + "Asynchronous/Concurrent Execution": 6, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 138, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 2, + "Module Dependencies (Imports)": 27, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 1, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 15, + "Event Publishers / Emitters": 2, + "Dependency Injection Constructs": 15, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 1, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 3, + "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": 3, + "Event Listeners & Subscribers": 3, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1811, + "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": 1, + "Core Var Decl": 340, + "Design Camel Case": 0, + "Design Snake Case": 305, + "Design Pascal Case": 35, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 44, + "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": 2, + "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)": 33, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + ".dependencies", + ".internal", + ".users", + "annotated_doc", + "collections.abc", + "enum", + "fastapi", + "fastapi.datastructures", + "fastapi.exception_handlers", + "fastapi.exceptions", + "fastapi.logger", + "fastapi.middleware.asyncexitstack", + "fastapi.openapi.docs", + "fastapi.openapi.utils", + "fastapi.params", + "fastapi.responses", + "fastapi.types", + "fastapi.utils", + "pydantic", + "starlette.applications", + "starlette.datastructures", + "starlette.exceptions", + "starlette.middleware", + "starlette.middleware.base", + "starlette.middleware.errors", + "starlette.middleware.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.routing", + "starlette.types", + "time", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/background.py": { + "1. Artifact Identity": { + "Filename": "background.py", + "Path": "python/fastapi/fastapi/background.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StarletteBackgroundTasks", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3743.55, + "Y": -183.6, + "Z": 3249.89 + }, + "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": 62, + "Coding LOC": 18, + "Documentation LOC": 28, + "Structural Magnitude": 5.66, + "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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "69.12%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", + "API Exposure": "5.3%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "__hash__", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Function Name": "add_task", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 22, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 648, - "End Line": 648 + "Start Line": 40, + "End Line": 61 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 295, - "Sequential Logic Declarations": 372, - "Function Parameters": 156, - "Function/Method Declarations": 153, - "Class/Entity Declarations": 17, - "Defensive Programming Constructs": 52, - "Type/Safety Bypasses": 28, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 13, - "Exposed API / Public Exports": 149, - "State Mutations / Variable Reassignments": 329, - "Commented-out Code (Dead Logic)": 4, - "Structured Documentation Blocks": 146, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 3, "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": 23, - "Generic Type Abstractions": 44, - "Collection Iterators / Comprehensions": 9, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 2, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 14, - "Module Dependencies (Imports)": 35, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, "Authorship Metadata": 0, - "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 3, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, @@ -515767,26 +513742,26 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 14, - "Fatal Aborts & Exceptions": 33, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 4, - "Private / Encapsulated Scopes": 408, - "Event Listeners & Subscribers": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1410, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 4, + "Regex Execution": 0, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -515794,26 +513769,26 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 22, - "Core Var Decl": 292, - "Design Camel Case": 55, - "Design Snake Case": 199, - "Design Pascal Case": 13, - "Design Upper Case": 5, - "Design Short Vars": 20, - "Design Long Vars": 1, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 1, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 0, + "Design Upper Case": 1, + "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": 129, + "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 2, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 8, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -515827,65 +513802,36 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 34, - "Direct Downstream (Dependency Blast Radius)": 9, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "base64", - "binascii", - "calendar", - "collections", - "email", - "email.message", - "incremental", - "io", - "math", - "os", - "re", - "tempfile", - "time", - "twisted.internet", - "twisted.internet._producer_helpers", - "twisted.internet.defer", - "twisted.internet.interfaces", - "twisted.logger", - "twisted.protocols", - "twisted.python", - "twisted.python.compat", - "twisted.python.components", - "twisted.python.deprecate", - "twisted.python.failure", - "twisted.web._abnf", - "twisted.web._http2", - "twisted.web._responses", - "twisted.web.http_headers", - "twisted.web.iweb", + "annotated_doc", + "collections.abc", + "fastapi", + "starlette.background", "typing", - "urllib.parse", - "warnings", - "zope.interface" + "typing_extensions" ] }, - "python/twisted/reflect.py": { + "python/fastapi/fastapi/cli.py": { "1. Artifact Identity": { - "Filename": "reflect.py", - "Path": "python/twisted/reflect.py", + "Filename": "cli.py", + "Path": "python/fastapi/fastapi/cli.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Exception, ValueError, InvalidName", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 7867.13, - "Y": -135.82, - "Z": -4487.57 + "X": 2114.9, + "Y": -215.57, + "Z": 3529.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -515894,342 +513840,724 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 687, - "Coding LOC": 295, - "Documentation LOC": 249, - "Structural Magnitude": 264.9, - "Control Flow Ratio": "40.6%", + "Total LOC": 14, + "Coding LOC": 10, + "Documentation LOC": 0, + "Structural Magnitude": 3.5, + "Control Flow Ratio": "33.3%", "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.753 + "Raw Cognitive Density": 0.04 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "25.16%", - "Error & Exception Exposure": "45.82%", - "Tech Debt Exposure": "13.92%", - "Testing Exposure": "80.0%", - "API Exposure": "3.52%", + "Cognitive Load Exposure": "5.52%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.31%", + "API Exposure": "3.53%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "44.26%", - "Commented Logic Exposure": "5.37%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "39.94%", + "Documentation Exposure": "19.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "objgrep", - "Structural Impact": 62.9, - "Lines of Code (LOC)": 117, - "Control Flow Branches": 18, - "Input Parameters": 8, - "Control Flow Ratio": "66.7%", - "Start Line": 534, - "End Line": 650 - }, - { - "Function Name": "addMethodNamesToDict", - "Structural Impact": 19.9, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 48, - "End Line": 87 - }, - { - "Function Name": "accumulateMethods", - "Structural Impact": 19.9, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 7, - "Input Parameters": 4, - "Control Flow Ratio": "77.8%", - "Start Line": 109, - "End Line": 149 - }, - { - "Function Name": "namedAny", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 62, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "81.8%", - "Start Line": 249, - "End Line": 310 - }, - { - "Function Name": "filenameToModuleName", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 313, - "End Line": 348 - }, - { - "Function Name": "accumulateClassDict", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 465, - "End Line": 499 - }, - { - "Function Name": "accumulateClassList", - "Structural Impact": 9.4, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "75.0%", - "Start Line": 502, - "End Line": 511 - }, - { - "Function Name": "_importAndCheckStack", - "Structural Impact": 7.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 221, - "End Line": 246 - }, + "Function Name": "main", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 8, + "End Line": 13 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 4, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "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": 1, + "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": 1, + "Explicit Type Casts": 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, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 7, + "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": 0, + "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)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi_cli.cli" + ] + }, + "python/fastapi/fastapi/concurrency.py": { + "1. Artifact Identity": { + "Filename": "concurrency.py", + "Path": "python/fastapi/fastapi/concurrency.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2194.24, + "Y": -234.4, + "Z": 2647.47 + }, + "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": 42, + "Coding LOC": 31, + "Documentation LOC": 6, + "Structural Magnitude": 12.52, + "Control Flow Ratio": "10.0%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.3 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "14.19%", + "Error & Exception Exposure": "56.39%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.36%", + "API Exposure": "0.39%", + "Concurrency Exposure": "90.61%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "15.3%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "safe_str", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 18, + "Function Name": "contextmanager_in_threadpool", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 24, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 418, - "End Line": 435 - }, - { - "Function Name": "_determineClassName", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 2, - "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 365, - "End Line": 373 - }, + "Start Line": 18, + "End Line": 41 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 3, + "Sequential Logic Declarations": 27, + "Function Parameters": 1, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 4, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 1, + "Generic Type Abstractions": 1, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 9, + "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": 1, + "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": 8, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 17, + "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)": 3, + "Vectorized Math & Tensor Operations": 1, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 4, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "anyio", + "anyio.to_thread", + "collections.abc", + "contextlib", + "starlette.concurrency", + "typing" + ] + }, + "python/fastapi/fastapi/datastructures.py": { + "1. Artifact Identity": { + "Filename": "datastructures.py", + "Path": "python/fastapi/fastapi/datastructures.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StarletteUploadFile", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3436.45, + "Y": -258.48, + "Z": 3249.77 + }, + "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": 187, + "Coding LOC": 84, + "Documentation LOC": 60, + "Structural Magnitude": 50.88, + "Control Flow Ratio": "3.1%", + "Popularity Rank": 10, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.772 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "26.08%", + "Error & Exception Exposure": "88.28%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.44%", + "API Exposure": "4.7%", + "Concurrency Exposure": "99.01%", + "State Flux Exposure": "12.74%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "58.1%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "_safeFormat", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, + "Function Name": "_validate", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 3, "Control Flow Ratio": "25.0%", - "Start Line": 376, - "End Line": 400 + "Start Line": 133, + "End Line": 136 }, { - "Function Name": "requireModule", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 17, + "Function Name": "__eq__", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 2, "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 176, - "End Line": 192 - }, - { - "Function Name": "safe_repr", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 403, - "End Line": 415 - }, - { - "Function Name": "namedModule", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 1, - "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 152, - "End Line": 161 - }, - { - "Function Name": "_determineClass", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 358, - "End Line": 362 + "Start Line": 167, + "End Line": 168 }, { - "Function Name": "fullFuncName", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "25.0%", - "Start Line": 451, - "End Line": 455 + "Function Name": "write", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 66, + "End Line": 84 }, { - "Function Name": "prefixedMethodNames", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 18, + "Function Name": "seek", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 45 + "Start Line": 104, + "End Line": 122 }, { - "Function Name": "prefixedMethods", + "Function Name": "read", "Structural Impact": 2.6, "Lines of Code (LOC)": 17, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 106 + "Start Line": 86, + "End Line": 102 }, { - "Function Name": "__init__", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, + "Function Name": "__get_pydantic_core_schema__", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 443, - "End Line": 445 + "Start Line": 145, + "End Line": 150 }, { - "Function Name": "namedObject", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "__get_pydantic_json_schema__", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 170 + "Start Line": 139, + "End Line": 142 }, { - "Function Name": "__call__", + "Function Name": "close", "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 447, - "End Line": 448 + "Start Line": 124, + "End Line": 130 }, { - "Function Name": "isSame", + "Function Name": "__init__", "Structural Impact": 1.8, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 514, - "End Line": 515 + "Start Line": 161, + "End Line": 162 }, { - "Function Name": "isLike", + "Function Name": "Default", "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 518, - "End Line": 519 + "Start Line": 174, + "End Line": 181 }, { - "Function Name": "isOfType", - "Structural Impact": 1.8, + "Function Name": "__bool__", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 526, - "End Line": 527 - }, + "Start Line": 164, + "End Line": 165 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 2, + "Sequential Logic Declarations": 63, + "Function Parameters": 11, + "Function/Method Declarations": 11, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 2, + "Type/Safety Bypasses": 12, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 12, + "State Mutations / Variable Reassignments": 1, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 10, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 9, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 3, + "Generic Type Abstractions": 16, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 12, + "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": 2, + "Fatal Aborts & Exceptions": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 2, + "Private / Encapsulated Scopes": 13, + "Event Listeners & Subscribers": 2, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 67, + "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": 2, + "Core Var Decl": 2, + "Design Camel Case": 0, + "Design Snake Case": 0, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "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, + "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)": 7, + "Direct Downstream (Dependency Blast Radius)": 10, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "._compat.v2", + "annotated_doc", + "collections.abc", + "fastapi", + "pydantic", + "starlette.datastructures", + "typing" + ] + }, + "python/fastapi/fastapi/encoders.py": { + "1. Artifact Identity": { + "Filename": "encoders.py", + "Path": "python/fastapi/fastapi/encoders.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2282.54, + "Y": -216.84, + "Z": 2898.79 + }, + "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": 348, + "Coding LOC": 257, + "Documentation LOC": 67, + "Structural Magnitude": 152.24, + "Control Flow Ratio": "34.5%", + "Popularity Rank": 4, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.218 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.08%", + "Error & Exception Exposure": "74.75%", + "Tech Debt Exposure": "17.84%", + "Testing Exposure": "2.53%", + "API Exposure": "3.67%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "23.96%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "12.91%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "findInstances", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 530, - "End Line": 531 + "Function Name": "jsonable_encoder", + "Structural Impact": 122.5, + "Lines of Code (LOC)": 236, + "Control Flow Branches": 34, + "Input Parameters": 9, + "Control Flow Ratio": "58.6%", + "Start Line": 112, + "End Line": 347 }, { - "Function Name": "qual", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "decimal_encoder", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 351, - "End Line": 355 + "Control Flow Ratio": "50.0%", + "Start Line": 43, + "End Line": 65 }, { - "Function Name": "getClass", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, + "Function Name": "generate_encoders_by_class_tuples", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 458, - "End Line": 462 + "Control Flow Ratio": "33.3%", + "Start Line": 98, + "End Line": 106 }, { - "Function Name": "modgrep", + "Function Name": "isoformat", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 522, - "End Line": 523 + "Start Line": 37, + "End Line": 38 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 67, - "Sequential Logic Declarations": 98, - "Function Parameters": 28, - "Function/Method Declarations": 28, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 30, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 38, + "Sequential Logic Declarations": 72, + "Function Parameters": 8, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 21, + "Type/Safety Bypasses": 23, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 28, - "State Mutations / Variable Reassignments": 16, - "Commented-out Code (Dead Logic)": 1, - "Structured Documentation Blocks": 24, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 9, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, "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": 7, + "Generic Type Abstractions": 13, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 13, - "Module Dependencies (Imports)": 14, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 21, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, + "Planned Work (TODOs)": 1, "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, @@ -516240,27 +514568,27 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, - "Explicit Type Casts": 6, - "Fatal Aborts & Exceptions": 7, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 9, + "Fatal Aborts & Exceptions": 2, "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": 54, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 246, + "Structural Space Indentations": 225, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 1, - "Time Date Logic": 0, + "Regex Execution": 0, + "Time Date Logic": 2, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -516269,12 +514597,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 52, - "Design Camel Case": 26, - "Design Snake Case": 25, - "Design Pascal Case": 1, + "Core Var Decl": 58, + "Design Camel Case": 0, + "Design Snake Case": 58, + "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 5, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -516301,45 +514629,51 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 14, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 3, - "Total Downstream (Absolute Dependency Blast Radius)": 2 + "Direct Upstream (Fragility)": 21, + "Direct Downstream (Dependency Blast Radius)": 4, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "a", + "._compat", + "annotated_doc", "collections", - "io", - "os", - "path", - "pickle", + "collections.abc", + "dataclasses", + "datetime", + "decimal", + "enum", + "fastapi.exceptions", + "fastapi.types", + "ipaddress", + "pathlib", + "pydantic", + "pydantic.color", + "pydantic.networks", + "pydantic.types", + "pydantic_core", "re", - "sys", - "traceback", - "twisted.python.compat", - "twisted.python.deprecate", "types", - "weakref" + "typing", + "uuid" ] }, - "python/twisted/transport.py": { + "python/fastapi/fastapi/exception_handlers.py": { "1. Artifact Identity": { - "Filename": "transport.py", - "Path": "python/twisted/transport.py", + "Filename": "exception_handlers.py", + "Path": "python/fastapi/fastapi/exception_handlers.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Tuple[_DigestMod, bytes, bytes, int], protocol.Protocol, SSHTransportBase", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 7598.2, - "Y": -69.43, - "Z": -5460.1 + "X": 2223.78, + "Y": -224.44, + "Z": 3568.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -516348,855 +514682,1058 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2264, - "Coding LOC": 1015, - "Documentation LOC": 886, - "Structural Magnitude": 778.4, - "Control Flow Ratio": "41.5%", - "Popularity Rank": 2, + "Total LOC": 35, + "Coding LOC": 28, + "Documentation LOC": 0, + "Structural Magnitude": 15.46, + "Control Flow Ratio": "4.2%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.598 + "Raw Cognitive Density": 0.36 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.63%", - "Error & Exception Exposure": "77.49%", - "Tech Debt Exposure": "10.38%", - "Testing Exposure": "80.0%", - "API Exposure": "3.28%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.84%", + "Cognitive Load Exposure": "17.36%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.38%", + "API Exposure": "7.05%", + "Concurrency Exposure": "90.61%", + "State Flux Exposure": "0.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": "24.56%" + "Documentation Exposure": "50.0%", + "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 28.6, - "Lines of Code (LOC)": 121, - "Control Flow Branches": 12, - "Input Parameters": 2, - "Control Flow Ratio": "75.0%", - "Start Line": 864, - "End Line": 984 - }, - { - "Function Name": "getPacket", - "Structural Impact": 20.0, - "Lines of Code (LOC)": 61, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "52.4%", - "Start Line": 662, - "End Line": 722 - }, - { - "Function Name": "dataReceived", - "Structural Impact": 16.1, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 7, + "Function Name": "http_exception_handler", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, "Input Parameters": 2, - "Control Flow Ratio": "63.6%", - "Start Line": 737, - "End Line": 780 - }, - { - "Function Name": "dispatchMessage", - "Structural Impact": 15.6, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 6, - "Input Parameters": 3, - "Control Flow Ratio": "85.7%", - "Start Line": 782, - "End Line": 812 - }, - { - "Function Name": "_generateECSharedSecret", - "Structural Impact": 13.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "71.4%", - "Start Line": 1394, - "End Line": 1428 + "Control Flow Ratio": "25.0%", + "Start Line": 11, + "End Line": 17 }, { - "Function Name": "isEncrypted", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, + "Function Name": "request_validation_exception_handler", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1252, - "End Line": 1269 + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 26 }, { - "Function Name": "isVerified", - "Structural Impact": 13.0, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, + "Function Name": "websocket_request_validation_exception_handler", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "60.0%", - "Start Line": 1271, - "End Line": 1288 - }, - { - "Function Name": "sendPacket", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 38, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 623, - "End Line": 660 - }, + "Control Flow Ratio": "0.0%", + "Start Line": 29, + "End Line": 34 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 1, + "Sequential Logic Declarations": 23, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 1, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 3, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 4, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 3, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 8, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 4, + "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": 1, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 15, + "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": 5, + "Design Camel Case": 0, + "Design Snake Case": 5, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "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)": 1, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "fastapi.encoders", + "fastapi.exceptions", + "fastapi.utils", + "fastapi.websockets", + "starlette.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.status" + ] + }, + "python/fastapi/fastapi/exceptions.py": { + "1. Artifact Identity": { + "Filename": "exceptions.py", + "Path": "python/fastapi/fastapi/exceptions.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "TypedDict, total=False, StarletteHTTPException, StarletteWebSocketException", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3338.85, + "Y": -269.7, + "Z": 2890.29 + }, + "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": 257, + "Coding LOC": 111, + "Documentation LOC": 92, + "Structural Magnitude": 69.82, + "Control Flow Ratio": "18.0%", + "Popularity Rank": 39, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.561 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "15.96%", + "Error & Exception Exposure": "86.63%", + "Tech Debt Exposure": "92.09%", + "Testing Exposure": "2.49%", + "API Exposure": "3.86%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "98.35%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "23.37%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 19, + "Function Name": "_format_endpoint_context", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, "Control Flow Branches": 5, - "Input Parameters": 2, - "Control Flow Ratio": "71.4%", - "Start Line": 1478, - "End Line": 1496 - }, - { - "Function Name": "ssh_KEXINIT", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 46, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1805, - "End Line": 1850 - }, - { - "Function Name": "ssh_KEX_DH_GEX_REQUEST_OLD", - "Structural Impact": 10.5, - "Lines of Code (LOC)": 36, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1596, - "End Line": 1631 + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 193, + "End Line": 202 }, { - "Function Name": "_ssh_KEX_ECDH_REPLY", - "Structural Impact": 10.2, - "Lines of Code (LOC)": 66, + "Function Name": "__str__", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 6, "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1852, - "End Line": 1917 - }, - { - "Function Name": "_encodeECPublicKey", - "Structural Impact": 10.0, - "Lines of Code (LOC)": 26, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 1367, - "End Line": 1392 - }, - { - "Function Name": "_generateECPrivateKey", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 1342, - "End Line": 1365 + "Control Flow Ratio": "60.0%", + "Start Line": 204, + "End Line": 209 }, { - "Function Name": "ssh_SERVICE_ACCEPT", - "Structural Impact": 9.7, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "80.0%", - "Start Line": 2109, - "End Line": 2128 + "Function Name": "__init__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 175, + "End Line": 188 }, { - "Function Name": "sendKexInit", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 49, - "Control Flow Branches": 4, - "Input Parameters": 1, - "Control Flow Ratio": "80.0%", - "Start Line": 547, - "End Line": 595 + "Function Name": "__init__", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 39, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 45, + "End Line": 83 }, { - "Function Name": "ssh_KEX_DH_GEX_GROUP", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1957, - "End Line": 1980 + "Function Name": "__init__", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 154 }, { - "Function Name": "_continue_KEX_ECDH_REPLY", - "Structural Impact": 7.8, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1875, - "End Line": 1896 + "Control Flow Ratio": "0.0%", + "Start Line": 213, + "End Line": 221 }, { - "Function Name": "sendDebug", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, "Input Parameters": 4, - "Control Flow Ratio": "66.7%", - "Start Line": 1075, - "End Line": 1089 + "Control Flow Ratio": "0.0%", + "Start Line": 235, + "End Line": 243 }, { - "Function Name": "_keySetup", - "Structural Impact": 7.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 2, + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "66.7%", - "Start Line": 1207, - "End Line": 1230 + "Control Flow Ratio": "0.0%", + "Start Line": 225, + "End Line": 231 }, { - "Function Name": "_continueGEX_REPLY", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 40, + "Function Name": "errors", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 190, + "End Line": 191 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 41, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 11, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 9, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 13, + "State Mutations / Variable Reassignments": 18, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 11, + "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": 12, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 6, + "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": 19, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 92, + "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": 13, + "Design Camel Case": 0, + "Design Snake Case": 7, + "Design Pascal Case": 6, + "Design Upper Case": 0, + "Design Short Vars": 0, + "Design Long Vars": 0, + "Duplicate Logic": 2, + "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, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 39, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "annotated_doc", + "collections.abc", + "fastapi", + "pydantic", + "starlette.exceptions", + "typing" + ] + }, + "python/fastapi/fastapi/logger.py": { + "1. Artifact Identity": { + "Filename": "logger.py", + "Path": "python/fastapi/fastapi/logger.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2695.8, + "Y": -235.8, + "Z": 2501.53 + }, + "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": 4, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, + "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.0 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "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": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "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": 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": 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)": 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": 0, + "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": 0, + "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)": 1, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "logging" + ] + }, + "python/fastapi/fastapi/param_functions.py": { + "1. Artifact Identity": { + "Filename": "param_functions.py", + "Path": "python/fastapi/fastapi/param_functions.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 3161.72, + "Y": -189.11, + "Z": 3463.71 + }, + "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": 2461, + "Coding LOC": 1379, + "Documentation LOC": 944, + "Structural Magnitude": 235.88, + "Control Flow Ratio": "16.3%", + "Popularity Rank": 2, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.005 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "2.42%", + "Error & Exception Exposure": "62.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.79%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Body", + "Structural Impact": 27.7, + "Lines of Code (LOC)": 328, "Control Flow Branches": 1, - "Input Parameters": 5, + "Input Parameters": 31, "Control Flow Ratio": "33.3%", - "Start Line": 2042, - "End Line": 2081 + "Start Line": 1323, + "End Line": 1650 }, { - "Function Name": "setKeys", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 21, + "Function Name": "Path", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 342, "Control Flow Branches": 1, - "Input Parameters": 7, - "Control Flow Ratio": "50.0%", - "Start Line": 145, - "End Line": 165 - }, - { - "Function Name": "_finishEphemeralDH", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 1157, - "End Line": 1185 - }, - { - "Function Name": "_newKeys", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 1232, - "End Line": 1250 - }, - { - "Function Name": "_allowedKeyExchangeMessageType", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 2, - "Input Parameters": 2, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 597, - "End Line": 621 - }, - { - "Function Name": "_getHostKeys", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1453, - "End Line": 1476 + "Start Line": 13, + "End Line": 354 }, { - "Function Name": "_continueKEXDH_REPLY", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 30, + "Function Name": "Query", + "Structural Impact": 27.5, + "Lines of Code (LOC)": 342, "Control Flow Branches": 1, - "Input Parameters": 5, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 1982, - "End Line": 2011 - }, - { - "Function Name": "ssh_SERVICE_REQUEST", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 1730, - "End Line": 1751 - }, - { - "Function Name": "ssh_NEWKEYS", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 2091, - "End Line": 2107 - }, - { - "Function Name": "sendExtInfo", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1128, - "End Line": 1141 - }, - { - "Function Name": "_getMAC", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 187, - "End Line": 221 - }, - { - "Function Name": "connectionLost", - "Structural Impact": 5.8, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 523, - "End Line": 535 - }, - { - "Function Name": "verify", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 266, - "End Line": 286 - }, - { - "Function Name": "_getSupportedCiphers", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 31, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 289, - "End Line": 319 - }, - { - "Function Name": "_getCipher", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "25.0%", - "Start Line": 167, - "End Line": 185 + "Start Line": 357, + "End Line": 698 }, { - "Function Name": "_ssh_KEXDH_REPLY", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 37, + "Function Name": "Header", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 315, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 30, "Control Flow Ratio": "33.3%", - "Start Line": 1919, - "End Line": 1955 + "Start Line": 701, + "End Line": 1015 }, { - "Function Name": "receiveDebug", - "Structural Impact": 5.2, - "Lines of Code (LOC)": 14, + "Function Name": "Form", + "Structural Impact": 26.8, + "Lines of Code (LOC)": 313, "Control Flow Branches": 1, - "Input Parameters": 4, - "Control Flow Ratio": "50.0%", - "Start Line": 1327, - "End Line": 1340 + "Input Parameters": 30, + "Control Flow Ratio": "33.3%", + "Start Line": 1653, + "End Line": 1965 }, { - "Function Name": "makeMAC", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 18, + "Function Name": "File", + "Structural Impact": 26.8, + "Lines of Code (LOC)": 313, "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 247, - "End Line": 264 + "Input Parameters": 30, + "Control Flow Ratio": "33.3%", + "Start Line": 1968, + "End Line": 2280 }, { - "Function Name": "ssh_KEX_DH_GEX_REPLY", - "Structural Impact": 4.9, - "Lines of Code (LOC)": 28, + "Function Name": "Cookie", + "Structural Impact": 26.1, + "Lines of Code (LOC)": 303, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 29, "Control Flow Ratio": "33.3%", - "Start Line": 2013, - "End Line": 2040 + "Start Line": 1018, + "End Line": 1320 }, { - "Function Name": "sendDisconnect", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 1, + "Function Name": "Depends", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 87, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1110, - "End Line": 1126 + "Control Flow Ratio": "0.0%", + "Start Line": 2283, + "End Line": 2369 }, { - "Function Name": "_keySetup", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 1, + "Function Name": "Security", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 89, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 1701, - "End Line": 1715 + "Control Flow Ratio": "0.0%", + "Start Line": 2372, + "End Line": 2460 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 7, + "Sequential Logic Declarations": 36, + "Function Parameters": 9, + "Function/Method Declarations": 9, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 54, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 9, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 217, + "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": 39, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 9, + "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": 2, + "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": 58, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 1352, + "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": 201, + "Design Camel Case": 0, + "Design Snake Case": 201, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 28, + "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)": 11, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + ".db", + ".security", + "annotated_doc", + "collections.abc", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", + "fastapi.openapi.models", + "pydantic", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/params.py": { + "1. Artifact Identity": { + "Filename": "params.py", + "Path": "python/fastapi/fastapi/params.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "Enum, FieldInfo, Param", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Shebang)" + }, + "2. Topological Coordinates": { + "X": 2849.54, + "Y": -211.02, + "Z": 2625.67 + }, + "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": 755, + "Coding LOC": 718, + "Documentation LOC": 0, + "Structural Magnitude": 288.56, + "Control Flow Ratio": "37.3%", + "Popularity Rank": 3, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.095 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "6.78%", + "Error & Exception Exposure": "81.94%", + "Tech Debt Exposure": "26.16%", + "Testing Exposure": "80.0%", + "API Exposure": "0.77%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "21.66%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "28.93%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "__init__", + "Structural Impact": 75.3, + "Lines of Code (LOC)": 106, + "Control Flow Branches": 11, + "Input Parameters": 33, + "Control Flow Ratio": "91.7%", + "Start Line": 470, + "End Line": 575 }, { - "Function Name": "ssh_KEX_DH_GEX_REQUEST", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 1633, - "End Line": 1657 + "Function Name": "__init__", + "Structural Impact": 73.0, + "Lines of Code (LOC)": 103, + "Control Flow Branches": 11, + "Input Parameters": 31, + "Control Flow Ratio": "91.7%", + "Start Line": 29, + "End Line": 131 }, { - "Function Name": "ssh_EXT_INFO", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 18, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 1041, - "End Line": 1058 + "Start Line": 306, + "End Line": 384 }, { - "Function Name": "_keySetup", - "Structural Impact": 4.3, - "Lines of Code (LOC)": 7, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 3, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 2083, - "End Line": 2089 + "Start Line": 582, + "End Line": 660 }, { - "Function Name": "setService", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 14, + "Function Name": "__init__", + "Structural Impact": 15.4, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 32, "Control Flow Ratio": "50.0%", - "Start Line": 1060, - "End Line": 1073 + "Start Line": 664, + "End Line": 742 }, { - "Function Name": "ssh_NEWKEYS", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 12, + "Function Name": "__init__", + "Structural Impact": 15.3, + "Lines of Code (LOC)": 79, "Control Flow Branches": 1, - "Input Parameters": 2, + "Input Parameters": 31, "Control Flow Ratio": "33.3%", - "Start Line": 1717, - "End Line": 1728 - }, - { - "Function Name": "_ssh_KEX_ECDH_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1498, - "End Line": 1553 - }, - { - "Function Name": "_ssh_KEXDH_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1555, - "End Line": 1594 - }, - { - "Function Name": "ssh_KEX_DH_GEX_INIT", - "Structural Impact": 3.7, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1659, - "End Line": 1699 - }, - { - "Function Name": "_getKey", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 1187, - "End Line": 1205 + "Start Line": 140, + "End Line": 218 }, { "Function Name": "__init__", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 5, - "Control Flow Ratio": "0.0%", - "Start Line": 134, - "End Line": 143 - }, - { - "Function Name": "receiveError", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 1299, - "End Line": 1315 - }, - { - "Function Name": "verifyHostKey", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2142, - "End Line": 2155 - }, - { - "Function Name": "ssh_DISCONNECT", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 986, - "End Line": 1001 - }, - { - "Function Name": "ssh_DEBUG", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1025, - "End Line": 1039 - }, - { - "Function Name": "encrypt", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 223, - "End Line": 233 - }, - { - "Function Name": "decrypt", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 235, - "End Line": 245 - }, - { - "Function Name": "_unsupportedVersionReceived", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 724, - "End Line": 735 - }, - { - "Function Name": "ssh_UNIMPLEMENTED", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1012, - "End Line": 1023 - }, - { - "Function Name": "update", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2170, - "End Line": 2180 - }, - { - "Function Name": "sendIgnore", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1091, - "End Line": 1100 - }, - { - "Function Name": "receiveUnimplemented", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1325 - }, - { - "Function Name": "requestService", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 2130, - "End Line": 2138 - }, - { - "Function Name": "_startEphemeralDH", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1143, - "End Line": 1155 - }, - { - "Function Name": "_mpFromBytes", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 62 - }, - { - "Function Name": "kexAlg", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 844, - "End Line": 848 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 537, - "End Line": 545 - }, - { - "Function Name": "getPeer", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 814, - "End Line": 823 - }, - { - "Function Name": "getHost", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 825, - "End Line": 834 - }, - { - "Function Name": "ssh_IGNORE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1003, - "End Line": 1003 - }, - { - "Function Name": "sendUnimplemented", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1102, - "End Line": 1108 - }, - { - "Function Name": "connectionMade", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 1797, - "End Line": 1803 - }, - { - "Function Name": "encryptor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2201, - "End Line": 2207 - }, - { - "Function Name": "decryptor", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 2209, - "End Line": 2215 + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 1, + "Input Parameters": 31, + "Control Flow Ratio": "50.0%", + "Start Line": 224, + "End Line": 300 }, { - "Function Name": "kexAlg", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 837, - "End Line": 841 + "Function Name": "__init__", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 1, + "Input Parameters": 31, + "Control Flow Ratio": "50.0%", + "Start Line": 390, + "End Line": 466 }, { - "Function Name": "loseConnection", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1290, - "End Line": 1295 + "Start Line": 133, + "End Line": 134 }, { - "Function Name": "connectionSecure", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Function Name": "__repr__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2157, - "End Line": 2162 + "Start Line": 577, + "End Line": 578 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 144, - "Sequential Logic Declarations": 203, - "Function Parameters": 80, - "Function/Method Declarations": 77, - "Class/Entity Declarations": 8, - "Defensive Programming Constructs": 14, - "Type/Safety Bypasses": 10, + "Control Flow Branches": 28, + "Sequential Logic Declarations": 47, + "Function Parameters": 10, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 11, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 58, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 74, - "State Mutations / Variable Reassignments": 224, + "Exposed API / Public Exports": 11, + "State Mutations / Variable Reassignments": 20, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 84, + "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": 2, - "Generic Type Abstractions": 21, - "Collection Iterators / Comprehensions": 8, + "Generic Type Abstractions": 35, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 25, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 12, "Authorship Metadata": 0, - "Planned Work (TODOs)": 3, - "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": 1, - "Dependency Injection Constructs": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 2, "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": 6, - "Fatal Aborts & Exceptions": 10, + "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": 178, + "Private / Encapsulated Scopes": 96, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 943, + "Structural Space Indentations": 692, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -517212,30 +515749,30 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 5, - "Core Var Decl": 246, - "Design Camel Case": 80, - "Design Snake Case": 118, - "Design Pascal Case": 3, - "Design Upper Case": 32, - "Design Short Vars": 26, - "Design Long Vars": 15, - "Duplicate Logic": 0, + "Vectorized Math & Tensor Operations": 2, + "Core Var Decl": 459, + "Design Camel Case": 0, + "Design Snake Case": 247, + "Design Pascal Case": 212, + "Design Upper Case": 0, + "Design Short Vars": 32, + "Design Long Vars": 2, + "Duplicate Logic": 4, "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, "Hyperlinked Literature References": 0, - "High-Entropy / Obfuscated Logic": 3, + "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": 1, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 1, + "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, "Sec Entropy": 0, "Sec Tainted Injection": 0, @@ -517245,68 +515782,30 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 26, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 1, + "Direct Upstream (Fragility)": 12, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "__future__", - "binascii", - "cryptography.exceptions", - "cryptography.hazmat.backends", - "cryptography.hazmat.decrepit.ciphers.algorithms", - "cryptography.hazmat.primitives", - "cryptography.hazmat.primitives.asymmetric", - "cryptography.hazmat.primitives.ciphers", - "cryptography.hazmat.primitives.ciphers.algorithms", - "hashlib", - "hmac", - "is", - "struct", - "twisted", - "twisted.conch.ssh", - "twisted.conch.ssh.common", - "twisted.conch.ssh.factory", - "twisted.conch.ssh.service", - "twisted.internet", - "twisted.logger", - "twisted.python", - "twisted.python.compat", - "twisted.python.failure", - "types", + "._compat", + ".datastructures", + "collections.abc", + "dataclasses", + "enum", + "fastapi.exceptions", + "fastapi.openapi.models", + "pydantic", + "pydantic.fields", "typing", - "zlib" + "typing_extensions", + "warnings" ] - } - } - }, - "python/fastapi/fastapi": { - "Directory Group Magnitude": 3317.3, - "File Count": 23, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "6.12%", - "Error & Exception Exposure": "39.91%", - "Tech Debt Exposure": "6.79%", - "Testing Exposure": "15.76%", - "API Exposure": "2.75%", - "Concurrency Exposure": "15.17%", - "State Flux Exposure": "15.13%", - "Commented Logic Exposure": "0.21%", - "Specification Exposure": "60.87%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.22%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "python/fastapi/fastapi/__init__.py": { + }, + "python/fastapi/fastapi/requests.py": { "1. Artifact Identity": { - "Filename": "__init__.py", - "Path": "python/fastapi/fastapi/__init__.py", + "Filename": "requests.py", + "Path": "python/fastapi/fastapi/requests.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Neutral / No Indentation", @@ -517316,9 +515815,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3127.51, - "Y": -258.21, - "Z": 2664.67 + "X": 3424.66, + "Y": -174.92, + "Z": 3740.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517327,12 +515826,12 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 26, - "Coding LOC": 21, - "Documentation LOC": 1, - "Structural Magnitude": 15.42, + "Total LOC": 3, + "Coding LOC": 2, + "Documentation LOC": 0, + "Structural Magnitude": 11.04, "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Popularity Rank": 5, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -517357,18 +515856,18 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 60, + "Sequential Logic Declarations": 6, "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, + "I/O and Network Boundaries": 2, "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, @@ -517379,14 +515878,14 @@ "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 20, + "Module Dependencies (Imports)": 2, "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": 2, + "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -517400,7 +515899,7 @@ "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": 0, @@ -517421,9 +515920,9 @@ "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": 0, @@ -517453,40 +515952,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 5, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - ".applications", - ".background", - ".datastructures", - ".exceptions", - ".param_functions", - ".requests", - ".responses", - ".routing", - ".websockets", - "starlette" + "starlette.requests" ] }, - "python/fastapi/fastapi/__main__.py": { + "python/fastapi/fastapi/responses.py": { "1. Artifact Identity": { - "Filename": "__main__.py", - "Path": "python/fastapi/fastapi/__main__.py", + "Filename": "responses.py", + "Path": "python/fastapi/fastapi/responses.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", + "Parent Entity": "JSONResponse", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2443.9, - "Y": -218.58, - "Z": 3755.04 + "X": 2269.7, + "Y": -250.69, + "Z": 2507.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517495,64 +515986,85 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 0, + "Total LOC": 86, + "Coding LOC": 47, + "Documentation LOC": 22, + "Structural Magnitude": 8.84, + "Control Flow Ratio": "17.9%", + "Popularity Rank": 27, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.2 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", + "Cognitive Load Exposure": "5.99%", + "Error & Exception Exposure": "60.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "7.21%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "26.17%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "render", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 81, + "End Line": 85 + }, + { + "Function Name": "render", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 53 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 2, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 10, + "Sequential Logic Declarations": 46, + "Function Parameters": 2, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 4, "State Mutations / Variable Reassignments": 0, "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, + "UI / View Layer Components": 2, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 2, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 13, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, + "Server-Side Rendering Contexts": 4, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -517572,7 +516084,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 26, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -517588,10 +516100,10 @@ "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": 0, + "Vectorized Math & Tensor Operations": 2, + "Core Var Decl": 8, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 8, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -517621,32 +516133,38 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 0, + "Direct Upstream (Fragility)": 7, + "Direct Downstream (Dependency Blast Radius)": 27, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi.cli" + "fastapi.exceptions", + "fastapi.sse", + "orjson", + "starlette.responses", + "typing", + "typing_extensions", + "ujson" ] }, - "python/fastapi/fastapi/applications.py": { + "python/fastapi/fastapi/routing.py": { "1. Artifact Identity": { - "Filename": "applications.py", - "Path": "python/fastapi/fastapi/applications.py", + "Filename": "routing.py", + "Path": "python/fastapi/fastapi/routing.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "Starlette", + "Parent Entity": "AbstractAsyncContextManager[_T], routing.WebSocketRoute, routing.Route", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 2, "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2549.01, - "Y": -204.68, - "Z": 3294.06 + "X": 2823.59, + "Y": -207.95, + "Z": 3200.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -517655,26 +516173,26 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4750, - "Coding LOC": 1843, - "Documentation LOC": 2240, - "Structural Magnitude": 499.96, - "Control Flow Ratio": "18.9%", - "Popularity Rank": 1, + "Total LOC": 4957, + "Coding LOC": 2505, + "Documentation LOC": 1869, + "Structural Magnitude": 1725.8, + "Control Flow Ratio": "45.3%", + "Popularity Rank": 4, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.104 + "Raw Cognitive Density": 0.503 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "3.52%", - "Error & Exception Exposure": "62.44%", - "Tech Debt Exposure": "8.59%", + "Cognitive Load Exposure": "13.57%", + "Error & Exception Exposure": "71.33%", + "Tech Debt Exposure": "11.4%", "Testing Exposure": "80.0%", - "API Exposure": "8.02%", - "Concurrency Exposure": "14.89%", - "State Flux Exposure": "17.15%", - "Commented Logic Exposure": "0.0%", + "API Exposure": "2.83%", + "Concurrency Exposure": "53.75%", + "State Flux Exposure": "74.67%", + "Commented Logic Exposure": "4.91%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -517682,285 +516200,585 @@ "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ + { + "Function Name": "get_request_handler", + "Structural Impact": 282.8, + "Lines of Code (LOC)": 379, + "Control Flow Branches": 63, + "Input Parameters": 16, + "Control Flow Ratio": "55.8%", + "Start Line": 351, + "End Line": 729 + }, { "Function Name": "__init__", - "Structural Impact": 110.7, - "Lines of Code (LOC)": 960, + "Structural Impact": 191.3, + "Lines of Code (LOC)": 165, + "Control Flow Branches": 33, + "Input Parameters": 28, + "Control Flow Ratio": "84.6%", + "Start Line": 812, + "End Line": 976 + }, + { + "Function Name": "include_router", + "Structural Impact": 123.5, + "Lines of Code (LOC)": 252, + "Control Flow Branches": 31, + "Input Parameters": 11, + "Control Flow Ratio": "81.6%", + "Start Line": 1578, + "End Line": 1829 + }, + { + "Function Name": "app", + "Structural Impact": 100.7, + "Lines of Code (LOC)": 346, + "Control Flow Branches": 58, + "Input Parameters": 1, + "Control Flow Ratio": "56.3%", + "Start Line": 382, + "End Line": 727 + }, + { + "Function Name": "__init__", + "Structural Impact": 94.7, + "Lines of Code (LOC)": 284, + "Control Flow Branches": 17, + "Input Parameters": 19, + "Control Flow Ratio": "73.9%", + "Start Line": 1032, + "End Line": 1315 + }, + { + "Function Name": "add_api_route", + "Structural Impact": 47.2, + "Lines of Code (LOC)": 82, + "Control Flow Branches": 7, + "Input Parameters": 28, + "Control Flow Ratio": "70.0%", + "Start Line": 1336, + "End Line": 1417 + }, + { + "Function Name": "serialize_response", + "Structural Impact": 33.2, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 8, + "Input Parameters": 11, + "Control Flow Ratio": "66.7%", + "Start Line": 277, + "End Line": 317 + }, + { + "Function Name": "app", + "Structural Impact": 27.2, + "Lines of Code (LOC)": 25, "Control Flow Branches": 12, - "Input Parameters": 39, + "Input Parameters": 3, + "Control Flow Ratio": "63.2%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "app", + "Structural Impact": 26.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 3, "Control Flow Ratio": "70.6%", - "Start Line": 61, - "End Line": 1020 + "Start Line": 113, + "End Line": 131 }, { - "Function Name": "setup", - "Structural Impact": 19.7, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 11, + "Function Name": "request_response", + "Structural Impact": 23.2, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 14, "Input Parameters": 1, - "Control Flow Ratio": "55.0%", - "Start Line": 1105, - "End Line": 1158 + "Control Flow Ratio": "60.9%", + "Start Line": 97, + "End Line": 136 }, { "Function Name": "get", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1567, - "End Line": 1938 + "Start Line": 1831, + "End Line": 2206 }, { "Function Name": "put", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 1940, - "End Line": 2316 + "Start Line": 2208, + "End Line": 2588 }, { "Function Name": "post", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2318, - "End Line": 2694 + "Start Line": 2590, + "End Line": 2970 }, { "Function Name": "delete", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 2696, - "End Line": 3067 + "Start Line": 2972, + "End Line": 3347 }, { "Function Name": "options", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 376, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3069, - "End Line": 3440 + "Start Line": 3349, + "End Line": 3724 }, { "Function Name": "head", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3442, - "End Line": 3813 + "Start Line": 3726, + "End Line": 4106 }, { "Function Name": "patch", "Structural Impact": 19.0, - "Lines of Code (LOC)": 377, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 3815, - "End Line": 4191 + "Start Line": 4108, + "End Line": 4488 }, { "Function Name": "trace", "Structural Impact": 19.0, - "Lines of Code (LOC)": 372, + "Lines of Code (LOC)": 381, "Control Flow Branches": 0, "Input Parameters": 24, "Control Flow Ratio": "0.0%", - "Start Line": 4193, - "End Line": 4564 + "Start Line": 4490, + "End Line": 4870 }, { - "Function Name": "include_router", - "Structural Impact": 14.4, - "Lines of Code (LOC)": 204, - "Control Flow Branches": 1, - "Input Parameters": 11, - "Control Flow Ratio": "33.3%", - "Start Line": 1362, - "End Line": 1565 + "Function Name": "__init__", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "80.0%", + "Start Line": 770, + "End Line": 802 }, { - "Function Name": "build_middleware_stack", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 49, + "Function Name": "_merge_lifespan_context", + "Structural Impact": 14.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "58.3%", + "Start Line": 209, + "End Line": 223 + }, + { + "Function Name": "_serialize_sse_item", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 500, + "End Line": 527 + }, + { + "Function Name": "merged_lifespan", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "70.0%", + "Start Line": 213, + "End Line": 221 + }, + { + "Function Name": "get_websocket_app", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 35, "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "36.4%", + "Start Line": 732, + "End Line": 766 + }, + { + "Function Name": "_extract_endpoint_context", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 5, "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 254, + "End Line": 274 + }, + { + "Function Name": "_build_response_args", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 4, + "Input Parameters": 2, "Control Flow Ratio": "66.7%", - "Start Line": 1022, - "End Line": 1070 + "Start Line": 333, + "End Line": 348 }, { - "Function Name": "api_route", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 59, - "Control Flow Branches": 0, - "Input Parameters": 24, - "Control Flow Ratio": "0.0%", - "Start Line": 1222, - "End Line": 1280 + "Function Name": "matches", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 804, + "End Line": 808 }, { - "Function Name": "add_api_route", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 56, + "Function Name": "matches", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 998, + "End Line": 1002 + }, + { + "Function Name": "app", + "Structural Impact": 8.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "44.4%", + "Start Line": 737, + "End Line": 764 + }, + { + "Function Name": "_serialize_data", + "Structural Impact": 8.3, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 471, + "End Line": 494 + }, + { + "Function Name": "api_route", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 61, "Control Flow Branches": 0, "Input Parameters": 25, "Control Flow Ratio": "0.0%", - "Start Line": 1165, - "End Line": 1220 + "Start Line": 1419, + "End Line": 1479 }, { - "Function Name": "openapi", - "Structural Impact": 7.6, + "Function Name": "add_event_handler", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 4905, + "End Line": 4922 + }, + { + "Function Name": "_keepalive_inserter", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 565, + "End Line": 578 + }, + { + "Function Name": "app", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 149, + "End Line": 160 + }, + { + "Function Name": "run_endpoint_function", + "Structural Impact": 6.5, "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 320, + "End Line": 330 + }, + { + "Function Name": "_startup", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 1108, - "End Line": 1118 + "Control Flow Ratio": "60.0%", + "Start Line": 4873, + "End Line": 4886 + }, + { + "Function Name": "_shutdown", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 4889, + "End Line": 4902 + }, + { + "Function Name": "app", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "33.3%", + "Start Line": 152, + "End Line": 157 + }, + { + "Function Name": "add_api_websocket_route", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "50.0%", + "Start Line": 1481, + "End Line": 1500 }, { "Function Name": "websocket", - "Structural Impact": 5.4, - "Lines of Code (LOC)": 64, + "Structural Impact": 5.5, + "Lines of Code (LOC)": 66, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 1297, - "End Line": 1360 + "Start Line": 1502, + "End Line": 1567 }, { - "Function Name": "__call__", - "Structural Impact": 4.7, - "Lines of Code (LOC)": 4, + "Function Name": "websocket_session", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 141, + "End Line": 162 + }, + { + "Function Name": "_sse_with_checkpoints", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 9, "Control Flow Branches": 1, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1160, - "End Line": 1163 + "Start Line": 597, + "End Line": 605 }, { - "Function Name": "vibe", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 53, + "Function Name": "route", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 5, "Control Flow Ratio": "0.0%", - "Start Line": 4566, - "End Line": 4618 + "Start Line": 1317, + "End Line": 1334 }, { - "Function Name": "openapi", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 32, + "Function Name": "_producer", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 556, + "End Line": 559 + }, + { + "Function Name": "_async_stream_raw", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1072, - "End Line": 1103 + "Start Line": 658, + "End Line": 665 }, { - "Function Name": "middleware", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 45, + "Function Name": "on_event", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 25, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4658, - "End Line": 4702 + "Start Line": 4932, + "End Line": 4956 }, { - "Function Name": "exception_handler", - "Structural Impact": 4.0, - "Lines of Code (LOC)": 46, + "Function Name": "decorator", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4704, - "End Line": 4749 + "Start Line": 1449, + "End Line": 1477 }, { - "Function Name": "swagger_ui_html", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 1, + "Function Name": "__aexit__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 182, + "End Line": 188 + }, + { + "Function Name": "get_route_handler", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 978, + "End Line": 996 + }, + { + "Function Name": "websocket_route", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1569, + "End Line": 1576 + }, + { + "Function Name": "_async_stream_jsonl", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, "Control Flow Ratio": "33.3%", - "Start Line": 1123, - "End Line": 1135 + "Start Line": 629, + "End Line": 634 }, { - "Function Name": "add_api_websocket_route", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 14, + "Function Name": "_wrap_gen_lifespan_context", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1282, - "End Line": 1295 + "Start Line": 192, + "End Line": 206 + }, + { + "Function Name": "_sync_stream_jsonl", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 641, + "End Line": 643 }, { "Function Name": "decorator", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 28, + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1251, - "End Line": 1278 + "Start Line": 1324, + "End Line": 1332 }, { - "Function Name": "on_event", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 20, + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4637, - "End Line": 4656 + "Start Line": 176, + "End Line": 177 }, { - "Function Name": "websocket_route", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4620, - "End Line": 4627 + "Start Line": 237, + "End Line": 238 }, { - "Function Name": "decorator", + "Function Name": "__aexit__", "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1351, - "End Line": 1358 + "Start Line": 243, + "End Line": 244 }, { - "Function Name": "redoc_html", + "Function Name": "__call__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 246, + "End Line": 247 + }, + { + "Function Name": "decorator", "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1151, - "End Line": 1156 + "Start Line": 1561, + "End Line": 1565 }, { "Function Name": "decorator", @@ -517969,8 +516787,8 @@ "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4623, - "End Line": 4625 + "Start Line": 1572, + "End Line": 1574 }, { "Function Name": "decorator", @@ -517979,81 +516797,336 @@ "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4698, - "End Line": 4700 + "Start Line": 4952, + "End Line": 4954 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "__aenter__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4745, - "End Line": 4747 + "Start Line": 179, + "End Line": 180 }, { - "Function Name": "swagger_ui_redirect", + "Function Name": "wrapper", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1141, - "End Line": 1142 + "Start Line": 203, + "End Line": 204 + }, + { + "Function Name": "__aenter__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 240, + "End Line": 241 + }, + { + "Function Name": "_serialize_item", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 624, + "End Line": 625 + }, + { + "Function Name": "_sse_producer_cm", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 535, + "End Line": 536 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 129, - "Function Parameters": 32, - "Function/Method Declarations": 32, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 58, + "Control Flow Branches": 218, + "Sequential Logic Declarations": 263, + "Function Parameters": 65, + "Function/Method Declarations": 65, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 54, + "Type/Safety Bypasses": 106, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 38, - "State Mutations / Variable Reassignments": 38, + "Exposed API / Public Exports": 43, + "State Mutations / Variable Reassignments": 218, + "Commented-out Code (Dead Logic)": 2, + "Structured Documentation Blocks": 237, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 68, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 0, + "Global State Dependencies": 0, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 196, + "Collection Iterators / Comprehensions": 3, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 36, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 4, + "Acknowledged Tech Debt (FIXMEs)": 0, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 15, + "Event Publishers / Emitters": 13, + "Dependency Injection Constructs": 17, + "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": 8, + "Fatal Aborts & Exceptions": 9, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 1, + "Private / Encapsulated Scopes": 92, + "Event Listeners & Subscribers": 13, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2434, + "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)": 26, + "Vectorized Math & Tensor Operations": 3, + "Core Var Decl": 604, + "Design Camel Case": 0, + "Design Snake Case": 521, + "Design Pascal Case": 82, + "Design Upper Case": 0, + "Design Short Vars": 2, + "Design Long Vars": 57, + "Duplicate Logic": 2, + "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": 3, + "Dynamic Code Execution (Eval/Exec)": 0, + "Global Environment Mutation": 0, + "Commented-Out Executable Logic": 1, + "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)": 35, + "Direct Downstream (Dependency Blast Radius)": 4, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "annotated_doc", + "anyio", + "anyio.abc", + "collections.abc", + "contextlib", + "email.message", + "enum", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", + "fastapi.dependencies.models", + "fastapi.dependencies.utils", + "fastapi.encoders", + "fastapi.exceptions", + "fastapi.sse", + "fastapi.types", + "fastapi.utils", + "functools", + "inspect", + "json", + "pydantic", + "starlette", + "starlette._exception_handler", + "starlette._utils", + "starlette.concurrency", + "starlette.datastructures", + "starlette.exceptions", + "starlette.requests", + "starlette.responses", + "starlette.routing", + "starlette.types", + "starlette.websockets", + "types", + "typing", + "typing_extensions" + ] + }, + "python/fastapi/fastapi/sse.py": { + "1. Artifact Identity": { + "Filename": "sse.py", + "Path": "python/fastapi/fastapi/sse.py", + "Language": "Python", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Parent Entity": "StreamingResponse, BaseModel", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "python", + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" + }, + "2. Topological Coordinates": { + "X": 2718.27, + "Y": -206.74, + "Z": 3637.84 + }, + "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": 223, + "Coding LOC": 107, + "Documentation LOC": 77, + "Structural Magnitude": 64.84, + "Control Flow Ratio": "41.7%", + "Popularity Rank": 3, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.533 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "14.77%", + "Error & Exception Exposure": "77.52%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.51%", + "API Exposure": "2.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.57%", + "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": "format_sse_event", + "Structural Impact": 23.0, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 7, + "Input Parameters": 5, + "Control Flow Ratio": "77.8%", + "Start Line": 146, + "End Line": 214 + }, + { + "Function Name": "_check_data_exclusive", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 136, + "End Line": 143 + }, + { + "Function Name": "_check_id_no_null", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 36, + "End Line": 39 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 15, + "Sequential Logic Declarations": 21, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 2, + "Defensive Programming Constructs": 4, + "Type/Safety Bypasses": 4, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 21, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 261, - "Unit Test Assertions": 2, - "Asynchronous/Concurrent Execution": 6, + "Structured Documentation Blocks": 14, + "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": 138, - "Collection Iterators / Comprehensions": 2, + "Generic Type Abstractions": 5, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 2, - "Module Dependencies (Imports)": 27, + "Metaprogramming & Reflection": 0, + "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": 15, - "Event Publishers / Emitters": 2, - "Dependency Injection Constructs": 15, + "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": 1, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 2, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 3, + "Private / Encapsulated Scopes": 5, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1811, + "Structural Space Indentations": 94, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518070,13 +517143,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 340, + "Core Var Decl": 3, "Design Camel Case": 0, - "Design Snake Case": 305, - "Design Pascal Case": 35, - "Design Upper Case": 0, + "Design Snake Case": 2, + "Design Pascal Case": 0, + "Design Upper Case": 1, "Design Short Vars": 0, - "Design Long Vars": 44, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -518085,7 +517158,7 @@ "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 2, + "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, @@ -518102,64 +517175,34 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 33, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 4, + "Direct Downstream (Dependency Blast Radius)": 3, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - ".dependencies", - ".internal", - ".users", "annotated_doc", - "collections.abc", - "enum", - "fastapi", - "fastapi.datastructures", - "fastapi.exception_handlers", - "fastapi.exceptions", - "fastapi.logger", - "fastapi.middleware.asyncexitstack", - "fastapi.openapi.docs", - "fastapi.openapi.utils", - "fastapi.params", - "fastapi.responses", - "fastapi.types", - "fastapi.utils", "pydantic", - "starlette.applications", - "starlette.datastructures", - "starlette.exceptions", - "starlette.middleware", - "starlette.middleware.base", - "starlette.middleware.errors", - "starlette.middleware.exceptions", - "starlette.requests", "starlette.responses", - "starlette.routing", - "starlette.types", - "time", - "typing", - "typing_extensions" + "typing" ] }, - "python/fastapi/fastapi/background.py": { + "python/fastapi/fastapi/staticfiles.py": { "1. Artifact Identity": { - "Filename": "background.py", - "Path": "python/fastapi/fastapi/background.py", + "Filename": "staticfiles.py", + "Path": "python/fastapi/fastapi/staticfiles.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "StarletteBackgroundTasks", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3743.68, - "Y": -183.6, - "Z": 3249.95 + "X": 2002.24, + "Y": -261.44, + "Z": 3018.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518168,12 +517211,12 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 62, - "Coding LOC": 18, - "Documentation LOC": 28, - "Structural Magnitude": 5.66, + "Total LOC": 2, + "Coding LOC": 1, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, "Control Flow Ratio": "0.0%", - "Popularity Rank": 1, + "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, @@ -518181,57 +517224,46 @@ }, "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "69.12%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "5.3%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "add_task", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 40, - "End Line": 61 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 1, - "Function/Method Declarations": 1, - "Class/Entity Declarations": 1, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "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": 2, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 3, + "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": 2, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 5, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518256,7 +517288,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, @@ -518273,12 +517305,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": 0, "Design Pascal Case": 0, - "Design Upper Case": 1, - "Design Short Vars": 1, + "Design Upper Case": 0, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -518305,36 +517337,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "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": [ - "annotated_doc", - "collections.abc", - "fastapi", - "starlette.background", - "typing", - "typing_extensions" + "starlette.staticfiles" ] }, - "python/fastapi/fastapi/cli.py": { + "python/fastapi/fastapi/templating.py": { "1. Artifact Identity": { - "Filename": "cli.py", - "Path": "python/fastapi/fastapi/cli.py", + "Filename": "templating.py", + "Path": "python/fastapi/fastapi/templating.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2114.89, - "Y": -215.57, - "Z": 3529.45 + "X": 3414.82, + "Y": -180.13, + "Z": 2449.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518343,56 +517370,45 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 14, - "Coding LOC": 10, + "Total LOC": 2, + "Coding LOC": 1, "Documentation LOC": 0, - "Structural Magnitude": 3.5, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 2, + "Structural Magnitude": 10.52, + "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.04 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.52%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "3.53%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.33%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "main", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 8, - "End Line": 13 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 4, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, + "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -518402,7 +517418,7 @@ "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, - "Generic Type Abstractions": 1, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, @@ -518419,9 +517435,9 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 1, + "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, @@ -518431,7 +517447,7 @@ "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, @@ -518448,9 +517464,9 @@ "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, @@ -518481,30 +517497,30 @@ }, "8. Dependency Network": { "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi_cli.cli" + "starlette.templating" ] }, - "python/fastapi/fastapi/concurrency.py": { + "python/fastapi/fastapi/testclient.py": { "1. Artifact Identity": { - "Filename": "concurrency.py", - "Path": "python/fastapi/fastapi/concurrency.py", + "Filename": "testclient.py", + "Path": "python/fastapi/fastapi/testclient.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2193.64, - "Y": -234.42, - "Z": 2647.15 + "X": 2799.83, + "Y": -228.99, + "Z": 4153.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518513,70 +517529,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 42, - "Coding LOC": 31, - "Documentation LOC": 6, - "Structural Magnitude": 13.52, - "Control Flow Ratio": "10.0%", - "Popularity Rank": 2, + "Total LOC": 2, + "Coding LOC": 1, + "Documentation LOC": 0, + "Structural Magnitude": 10.52, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 185, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.19%", - "Error & Exception Exposure": "56.39%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.36%", - "API Exposure": "1.12%", - "Concurrency Exposure": "90.61%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.23%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "contextmanager_in_threadpool", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 18, - "End Line": 41 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 27, - "Function Parameters": 1, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 3, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 1, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, + "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": 4, + "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": 1, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518590,18 +517595,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "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": 8, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 17, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518616,14 +517621,14 @@ "Local Inference & Tensor Math": 0, "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, - "Lazy Evaluation & Generators (O(1) Memory)": 3, - "Vectorized Math & Tensor Operations": 1, - "Core Var Decl": 5, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 4, + "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, @@ -518650,37 +517655,31 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, - "Direct Downstream (Dependency Blast Radius)": 2, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 185, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "anyio", - "anyio.to_thread", - "collections.abc", - "contextlib", - "starlette.concurrency", - "typing" + "starlette.testclient" ] }, - "python/fastapi/fastapi/datastructures.py": { + "python/fastapi/fastapi/types.py": { "1. Artifact Identity": { - "Filename": "datastructures.py", - "Path": "python/fastapi/fastapi/datastructures.py", + "Filename": "types.py", + "Path": "python/fastapi/fastapi/types.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "StarletteUploadFile", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3436.58, - "Y": -258.48, - "Z": 3249.86 + "X": 3083.51, + "Y": -263.69, + "Z": 3769.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518689,170 +517688,59 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 187, - "Coding LOC": 84, - "Documentation LOC": 60, - "Structural Magnitude": 50.88, - "Control Flow Ratio": "3.1%", - "Popularity Rank": 10, + "Total LOC": 13, + "Coding LOC": 10, + "Documentation LOC": 0, + "Structural Magnitude": 15.2, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 34, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.772 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.08%", - "Error & Exception Exposure": "88.28%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "64.57%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.44%", - "API Exposure": "4.7%", - "Concurrency Exposure": "99.01%", - "State Flux Exposure": "12.74%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "58.1%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "_validate", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 133, - "End Line": 136 - }, - { - "Function Name": "__eq__", - "Structural Impact": 3.6, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "33.3%", - "Start Line": 167, - "End Line": 168 - }, - { - "Function Name": "write", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 66, - "End Line": 84 - }, - { - "Function Name": "seek", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 122 - }, - { - "Function Name": "read", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 86, - "End Line": 102 - }, - { - "Function Name": "__get_pydantic_core_schema__", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 145, - "End Line": 150 - }, - { - "Function Name": "__get_pydantic_json_schema__", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 139, - "End Line": 142 - }, - { - "Function Name": "close", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 130 - }, - { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 161, - "End Line": 162 - }, - { - "Function Name": "Default", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 174, - "End Line": 181 - }, - { - "Function Name": "__bool__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 164, - "End Line": 165 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 63, - "Function Parameters": 11, - "Function/Method Declarations": 11, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 2, - "Type/Safety Bypasses": 12, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 0, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 3, + "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 12, - "State Mutations / Variable Reassignments": 1, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 10, + "Structured Documentation Blocks": 0, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 9, + "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, - "Decorators and Annotations": 3, - "Generic Type Abstractions": 16, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 5, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 3, - "Module Dependencies (Imports)": 12, + "Metaprogramming & Reflection": 1, + "Module Dependencies (Imports)": 6, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -518866,18 +517754,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 1, + "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": 2, - "Private / Encapsulated Scopes": 13, - "Event Listeners & Subscribers": 2, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 0, + "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 67, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -518893,11 +517781,11 @@ "Traditional Machine Learning (Stats/Trees)": 0, "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, - "Vectorized Math & Tensor Operations": 2, - "Core Var Decl": 2, + "Vectorized Math & Tensor Operations": 0, + "Core Var Decl": 4, "Design Camel Case": 0, "Design Snake Case": 0, - "Design Pascal Case": 1, + "Design Pascal Case": 4, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -518926,25 +517814,24 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 7, - "Direct Downstream (Dependency Blast Radius)": 10, + "Direct Upstream (Fragility)": 6, + "Direct Downstream (Dependency Blast Radius)": 34, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 9 }, "9. Extracted Dependencies": [ - "._compat.v2", - "annotated_doc", "collections.abc", - "fastapi", + "enum", "pydantic", - "starlette.datastructures", + "pydantic.main", + "types", "typing" ] }, - "python/fastapi/fastapi/encoders.py": { + "python/fastapi/fastapi/utils.py": { "1. Artifact Identity": { - "Filename": "encoders.py", - "Path": "python/fastapi/fastapi/encoders.py", + "Filename": "utils.py", + "Path": "python/fastapi/fastapi/utils.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -518954,9 +517841,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": 2282.51, - "Y": -216.84, - "Z": 2898.84 + "X": 2573.57, + "Y": -255.48, + "Z": 2455.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -518965,103 +517852,133 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 348, - "Coding LOC": 257, - "Documentation LOC": 67, - "Structural Magnitude": 152.24, - "Control Flow Ratio": "34.5%", - "Popularity Rank": 4, + "Total LOC": 137, + "Coding LOC": 109, + "Documentation LOC": 6, + "Structural Magnitude": 57.48, + "Control Flow Ratio": "33.3%", + "Popularity Rank": 3, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.218 + "Raw Cognitive Density": 0.183 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.08%", - "Error & Exception Exposure": "74.75%", - "Tech Debt Exposure": "17.84%", - "Testing Exposure": "2.53%", - "API Exposure": "3.67%", + "Cognitive Load Exposure": "8.54%", + "Error & Exception Exposure": "62.11%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.0%", + "API Exposure": "5.37%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "23.96%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.91%", + "Documentation Exposure": "48.49%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "jsonable_encoder", - "Structural Impact": 122.5, - "Lines of Code (LOC)": 236, - "Control Flow Branches": 34, - "Input Parameters": 9, - "Control Flow Ratio": "58.6%", - "Start Line": 112, - "End Line": 347 + "Function Name": "deep_dict_update", + "Structural Impact": 16.4, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "88.9%", + "Start Line": 103, + "End Line": 118 }, { - "Function Name": "decimal_encoder", - "Structural Impact": 6.8, - "Lines of Code (LOC)": 23, + "Function Name": "create_model_field", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 20, "Control Flow Branches": 3, - "Input Parameters": 1, + "Input Parameters": 6, "Control Flow Ratio": "50.0%", - "Start Line": 43, - "End Line": 65 + "Start Line": 58, + "End Line": 77 }, { - "Function Name": "generate_encoders_by_class_tuples", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "is_body_allowed_for_status_code", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 3, "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 26, + "End Line": 40 + }, + { + "Function Name": "get_value_or_default", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 121, + "End Line": 136 + }, + { + "Function Name": "generate_operation_id_for_path", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 3, "Control Flow Ratio": "33.3%", - "Start Line": 98, - "End Line": 106 + "Start Line": 80, + "End Line": 92 }, { - "Function Name": "isoformat", + "Function Name": "generate_unique_id", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 95, + "End Line": 100 + }, + { + "Function Name": "get_path_param_names", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 38 + "Start Line": 43, + "End Line": 44 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 38, - "Sequential Logic Declarations": 72, - "Function Parameters": 8, - "Function/Method Declarations": 4, + "Control Flow Branches": 20, + "Sequential Logic Declarations": 40, + "Function Parameters": 7, + "Function/Method Declarations": 7, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 21, - "Type/Safety Bypasses": 23, + "Defensive Programming Constructs": 8, + "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 9, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 7, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, + "Structured Documentation Blocks": 1, "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": 13, - "Collection Iterators / Comprehensions": 0, + "Generic Type Abstractions": 11, + "Collection Iterators / Comprehensions": 1, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 21, + "Module Dependencies (Imports)": 10, "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": 0, @@ -519072,26 +517989,26 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 9, + "Explicit Type Casts": 3, "Fatal Aborts & Exceptions": 2, "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": 2, + "Private / Encapsulated Scopes": 4, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 225, + "Structural Space Indentations": 85, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 0, - "Time Date Logic": 2, + "Regex Execution": 3, + "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, "Vector Databases (RAG)": 0, @@ -519100,10 +518017,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 58, + "Core Var Decl": 17, "Design Camel Case": 0, - "Design Snake Case": 58, - "Design Pascal Case": 0, + "Design Snake Case": 14, + "Design Pascal Case": 3, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -519132,51 +518049,40 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 21, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 2, + "Direct Upstream (Fragility)": 10, + "Direct Downstream (Dependency Blast Radius)": 3, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ "._compat", - "annotated_doc", - "collections", - "collections.abc", - "dataclasses", - "datetime", - "decimal", - "enum", + ".routing", + "fastapi", + "fastapi._compat", + "fastapi.datastructures", "fastapi.exceptions", - "fastapi.types", - "ipaddress", - "pathlib", - "pydantic", - "pydantic.color", - "pydantic.networks", - "pydantic.types", - "pydantic_core", + "pydantic.fields", "re", - "types", "typing", - "uuid" + "warnings" ] }, - "python/fastapi/fastapi/exception_handlers.py": { + "python/fastapi/fastapi/websockets.py": { "1. Artifact Identity": { - "Filename": "exception_handlers.py", - "Path": "python/fastapi/fastapi/exception_handlers.py", + "Filename": "websockets.py", + "Path": "python/fastapi/fastapi/websockets.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2222.29, - "Y": -224.49, - "Z": 3569.25 + "X": 3533.76, + "Y": -238.75, + "Z": 3133.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519185,95 +518091,64 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 35, - "Coding LOC": 28, + "Total LOC": 4, + "Coding LOC": 3, "Documentation LOC": 0, - "Structural Magnitude": 18.46, - "Control Flow Ratio": "4.2%", - "Popularity Rank": 1, + "Structural Magnitude": 11.56, + "Control Flow Ratio": "0.0%", + "Popularity Rank": 4, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.36 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "17.36%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.38%", - "API Exposure": "9.9%", - "Concurrency Exposure": "90.61%", + "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%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "84.74%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "http_exception_handler", - "Structural Impact": 3.8, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 2, - "Control Flow Ratio": "25.0%", - "Start Line": 11, - "End Line": 17 - }, - { - "Function Name": "request_validation_exception_handler", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 26 - }, - { - "Function Name": "websocket_request_validation_exception_handler", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 34 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 1, - "Sequential Logic Declarations": 23, - "Function Parameters": 3, - "Function/Method Declarations": 3, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 9, + "Function Parameters": 0, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 6, + "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": 4, + "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": 3, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 8, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 4, + "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, @@ -519288,12 +518163,12 @@ "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, + "Resource Deallocation & Cleanup": 0, "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 15, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -519310,9 +518185,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 5, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 5, + "Design Snake Case": 0, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -519342,39 +518217,56 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 8, - "Direct Downstream (Dependency Blast Radius)": 1, + "Direct Upstream (Fragility)": 1, + "Direct Downstream (Dependency Blast Radius)": 4, "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "fastapi.encoders", - "fastapi.exceptions", - "fastapi.utils", - "fastapi.websockets", - "starlette.exceptions", - "starlette.requests", - "starlette.responses", - "starlette.status" + "starlette.websockets" ] - }, - "python/fastapi/fastapi/exceptions.py": { + } + } + }, + "python/twisted": { + "Directory Group Magnitude": 3283.48, + "File Count": 4, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "23.38%", + "Error & Exception Exposure": "69.47%", + "Tech Debt Exposure": "22.93%", + "Testing Exposure": "80.0%", + "API Exposure": "2.69%", + "Concurrency Exposure": "3.16%", + "State Flux Exposure": "84.37%", + "Commented Logic Exposure": "4.05%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "18.92%", + "Hardcoded Payload Artifacts": "6.14%" + }, + "Files": { + "python/twisted/defer.py": { "1. Artifact Identity": { - "Filename": "exceptions.py", - "Path": "python/fastapi/fastapi/exceptions.py", + "Filename": "defer.py", + "Path": "python/twisted/defer.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "TypedDict, total=False, StarletteHTTPException, StarletteWebSocketException", + "Parent Entity": "Exception, TypeError, Enum", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3338.97, - "Y": -269.69, - "Z": 2890.31 + "X": -7863.31, + "Y": -60.8, + "Z": 4268.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519383,102 +518275,892 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 257, - "Coding LOC": 111, - "Documentation LOC": 92, - "Structural Magnitude": 69.82, - "Control Flow Ratio": "18.0%", - "Popularity Rank": 39, + "Total LOC": 2565, + "Coding LOC": 1151, + "Documentation LOC": 956, + "Structural Magnitude": 881.12, + "Control Flow Ratio": "35.5%", + "Popularity Rank": 1, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.561 + "Raw Cognitive Density": 0.594 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "15.96%", - "Error & Exception Exposure": "86.63%", - "Tech Debt Exposure": "92.09%", - "Testing Exposure": "2.49%", - "API Exposure": "3.86%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.35%", - "Commented Logic Exposure": "0.0%", + "Cognitive Load Exposure": "17.42%", + "Error & Exception Exposure": "79.34%", + "Tech Debt Exposure": "55.89%", + "Testing Exposure": "80.0%", + "API Exposure": "1.79%", + "Concurrency Exposure": "12.65%", + "State Flux Exposure": "93.55%", + "Commented Logic Exposure": "5.6%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.37%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_format_endpoint_context", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, + "Function Name": "_runCallbacks", + "Structural Impact": 44.4, + "Lines of Code (LOC)": 153, + "Control Flow Branches": 25, + "Input Parameters": 1, + "Control Flow Ratio": "78.1%", + "Start Line": 1005, + "End Line": 1157 + }, + { + "Function Name": "_inlineCallbacks", + "Structural Impact": 42.0, + "Lines of Code (LOC)": 169, + "Control Flow Branches": 14, + "Input Parameters": 4, + "Control Flow Ratio": "46.7%", + "Start Line": 1805, + "End Line": 1973 + }, + { + "Function Name": "deferUntilLocked", + "Structural Impact": 24.1, + "Lines of Code (LOC)": 67, + "Control Flow Branches": 11, + "Input Parameters": 2, + "Control Flow Ratio": "64.7%", + "Start Line": 2475, + "End Line": 2541 + }, + { + "Function Name": "addCallbacks", + "Structural Impact": 23.1, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 6, + "Input Parameters": 7, + "Control Flow Ratio": "75.0%", + "Start Line": 480, + "End Line": 545 + }, + { + "Function Name": "_cbDeferred", + "Structural Impact": 21.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 8, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1554, + "End Line": 1578 + }, + { + "Function Name": "race", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 77, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "53.8%", + "Start Line": 1650, + "End Line": 1726 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 15.1, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "38.5%", + "Start Line": 183, + "End Line": 243 + }, + { + "Function Name": "_startRunCallbacks", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 974, + "End Line": 996 + }, + { + "Function Name": "__init__", + "Structural Impact": 13.2, + "Lines of Code (LOC)": 69, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "75.0%", + "Start Line": 1484, + "End Line": 1552 + }, + { + "Function Name": "addTimeout", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 70, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "27.3%", + "Start Line": 768, + "End Line": 837 + }, + { + "Function Name": "cancel", + "Structural Impact": 9.8, + "Lines of Code (LOC)": 27, "Control Flow Branches": 5, "Input Parameters": 1, - "Control Flow Ratio": "55.6%", - "Start Line": 193, - "End Line": 202 + "Control Flow Ratio": "83.3%", + "Start Line": 946, + "End Line": 972 + }, + { + "Function Name": "__iter__", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1176, + "End Line": 1195 + }, + { + "Function Name": "put", + "Structural Impact": 9.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 2402, + "End Line": 2413 + }, + { + "Function Name": "asFuture", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "37.5%", + "Start Line": 1199, + "End Line": 1231 + }, + { + "Function Name": "_gotResultInlineCallbacks", + "Structural Impact": 8.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 5, + "Control Flow Ratio": "66.7%", + "Start Line": 1777, + "End Line": 1801 + }, + { + "Function Name": "ensureDeferred", + "Structural Impact": 8.4, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1342, + "End Line": 1367 + }, + { + "Function Name": "inlineCallbacks", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 81, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2047, + "End Line": 2127 + }, + { + "Function Name": "succeeded", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1683, + "End Line": 1703 + }, + { + "Function Name": "get", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2415, + "End Line": 2432 + }, + { + "Function Name": "_cancelLock", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2495, + "End Line": 2512 + }, + { + "Function Name": "fromFuture", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "20.0%", + "Start Line": 1234, + "End Line": 1281 + }, + { + "Function Name": "fromCoroutine", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1284, + "End Line": 1331 + }, + { + "Function Name": "_parseDeferredListResult", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 1600, + "End Line": 1608 + }, + { + "Function Name": "errback", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 891, + "End Line": 928 + }, + { + "Function Name": "_tryLock", + "Structural Impact": 7.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 5, + "Input Parameters": 0, + "Control Flow Ratio": "83.3%", + "Start Line": 2516, + "End Line": 2537 + }, + { + "Function Name": "execute", + "Structural Impact": 6.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "40.0%", + "Start Line": 142, + "End Line": 157 + }, + { + "Function Name": "__del__", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 370, + "End Line": 388 + }, + { + "Function Name": "cancel", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1580, + "End Line": 1597 }, { "Function Name": "__str__", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 6, + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "60.0%", - "Start Line": 204, - "End Line": 209 + "Start Line": 1159, + "End Line": 1172 + }, + { + "Function Name": "unwindGenerator", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2112, + "End Line": 2125 + }, + { + "Function Name": "failed", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1709, + "End Line": 1715 + }, + { + "Function Name": "addBoth", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 749, + "End Line": 764 + }, + { + "Function Name": "addCallback", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 619, + "End Line": 632 + }, + { + "Function Name": "addErrback", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "33.3%", + "Start Line": 661, + "End Line": 674 }, { "Function Name": "__init__", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 444, + "End Line": 474 + }, + { + "Function Name": "acquire", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2248, + "End Line": 2263 + }, + { + "Function Name": "acquire", + "Structural Impact": 5.0, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 2320, + "End Line": 2335 + }, + { + "Function Name": "_getDebugTracebacks", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 358, + "End Line": 368 + }, + { + "Function Name": "convertCancelled", "Structural Impact": 4.7, - "Lines of Code (LOC)": 14, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 815, + "End Line": 823 + }, + { + "Function Name": "unpause", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 936, + "End Line": 944 + }, + { + "Function Name": "__init__", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 175, - "End Line": 188 + "Control Flow Ratio": "25.0%", + "Start Line": 2461, + "End Line": 2473 + }, + { + "Function Name": "_cancelledToTimedOutError", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 279, + "End Line": 296 + }, + { + "Function Name": "__cmp__", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1400, + "End Line": 1411 }, { "Function Name": "__init__", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 39, + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 2295, + "End Line": 2304 + }, + { + "Function Name": "run", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 29, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 83 + "Start Line": 2167, + "End Line": 2195 }, { - "Function Name": "__init__", - "Structural Impact": 3.4, + "Function Name": "release", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2265, + "End Line": 2279 + }, + { + "Function Name": "release", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 2337, + "End Line": 2352 + }, + { + "Function Name": "uncancel", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1269, + "End Line": 1276 + }, + { + "Function Name": "cancel", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1668, + "End Line": 1674 + }, + { + "Function Name": "cancelTimeout", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 825, + "End Line": 829 + }, + { + "Function Name": "adapt", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1253, + "End Line": 1258 + }, + { + "Function Name": "gatherResults", + "Structural Impact": 3.1, "Lines of Code (LOC)": 27, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 154 + "Start Line": 1611, + "End Line": 1637 }, { - "Function Name": "__init__", + "Function Name": "chainDeferred", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 839, + "End Line": 864 + }, + { + "Function Name": "checkCancel", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1216, + "End Line": 1218 + }, + { + "Function Name": "maybeFail", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1220, + "End Line": 1222 + }, + { + "Function Name": "maybeSucceed", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 1224, + "End Line": 1226 + }, + { + "Function Name": "callback", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 866, + "End Line": 889 + }, + { + "Function Name": "_handleCancelInlineCallbacks", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 23, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1992, + "End Line": 2014 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 569, + "End Line": 578 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 599, + "End Line": 608 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 686, + "End Line": 695 + }, + { + "Function Name": "addBoth", "Structural Impact": 2.7, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 213, - "End Line": 221 + "Start Line": 698, + "End Line": 706 }, { - "Function Name": "__init__", + "Function Name": "addBoth", "Structural Impact": 2.7, "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 4, "Control Flow Ratio": "0.0%", - "Start Line": 235, - "End Line": 243 + "Start Line": 709, + "End Line": 717 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 720, + "End Line": 729 + }, + { + "Function Name": "__aexit__", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2203, + "End Line": 2212 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 560, + "End Line": 566 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 581, + "End Line": 587 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 590, + "End Line": 596 + }, + { + "Function Name": "addCallback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 611, + "End Line": 617 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 635, + "End Line": 641 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 644, + "End Line": 650 + }, + { + "Function Name": "addErrback", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 653, + "End Line": 659 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 677, + "End Line": 683 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 732, + "End Line": 738 + }, + { + "Function Name": "addBoth", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 741, + "End Line": 747 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1425, + "End Line": 1431 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1434, + "End Line": 1440 + }, + { + "Function Name": "_DeferredList", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1442, + "End Line": 1449 + }, + { + "Function Name": "run", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2142, + "End Line": 2149 + }, + { + "Function Name": "run", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2152, + "End Line": 2159 + }, + { + "Function Name": "succeed", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 123 + }, + { + "Function Name": "_cancellableInlineCallbacks", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2017, + "End Line": 2037 + }, + { + "Function Name": "_addCancelCallbackToDeferred", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1976, + "End Line": 1989 + }, + { + "Function Name": "run", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 2162, + "End Line": 2165 + }, + { + "Function Name": "_cancelAcquire", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2234, + "End Line": 2246 + }, + { + "Function Name": "_cancelAcquire", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2306, + "End Line": 2318 }, { "Function Name": "__init__", @@ -519487,216 +519169,332 @@ "Control Flow Branches": 0, "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 225, - "End Line": 231 + "Start Line": 2380, + "End Line": 2386 }, { - "Function Name": "errors", - "Structural Impact": 1.5, + "Function Name": "_cancelGet", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2388, + "End Line": 2400 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 168, + "End Line": 173 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 161, + "End Line": 164 + }, + { + "Function Name": "maybeDeferred", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 177, + "End Line": 180 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1380, + "End Line": 1383 + }, + { + "Function Name": "fail", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 126, + "End Line": 139 + }, + { + "Function Name": "returnValue", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1746, + "End Line": 1759 + }, + { + "Function Name": "logError", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 89, + "End Line": 99 + }, + { + "Function Name": "__init_subclass__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1333, + "End Line": 1336 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1645, + "End Line": 1647 + }, + { + "Function Name": "_releaseAndReturn", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2137, + "End Line": 2139 + }, + { + "Function Name": "setDebugging", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 262, + "End Line": 269 + }, + { + "Function Name": "__str__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1392, + "End Line": 1398 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.8, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1738, + "End Line": 1739 + }, + { + "Function Name": "pause", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 190, - "End Line": 191 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 41, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 11, - "Defensive Programming Constructs": 3, - "Type/Safety Bypasses": 9, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 13, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 11, - "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": 12, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 6, - "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": 19, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, - "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": 13, - "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 6, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 2, - "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, - "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)": 6, - "Direct Downstream (Dependency Blast Radius)": 39, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "annotated_doc", - "collections.abc", - "fastapi", - "pydantic", - "starlette.exceptions", - "typing" - ] - }, - "python/fastapi/fastapi/logger.py": { - "1. Artifact Identity": { - "Filename": "logger.py", - "Path": "python/fastapi/fastapi/logger.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2695.84, - "Y": -235.81, - "Z": 2501.51 - }, - "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": 4, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "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.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [], + "Start Line": 930, + "End Line": 934 + }, + { + "Function Name": "_continuation", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 998, + "End Line": 1003 + }, + { + "Function Name": "__repr__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1385, + "End Line": 1390 + }, + { + "Function Name": "execute", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2188, + "End Line": 2193 + }, + { + "Function Name": "__aenter__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2197, + "End Line": 2201 + }, + { + "Function Name": "cancel", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1262, + "End Line": 1264 + }, + { + "Function Name": "timeout", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 250, + "End Line": 251 + }, + { + "Function Name": "passthru", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 254, + "End Line": 255 + }, + { + "Function Name": "_failthru", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 258, + "End Line": 259 + }, + { + "Function Name": "callbacks", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 477, + "End Line": 478 + }, + { + "Function Name": "__init__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2134, + "End Line": 2135 + }, + { + "Function Name": "acquire", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2215, + "End Line": 2216 + }, + { + "Function Name": "release", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2219, + "End Line": 2220 + }, + { + "Function Name": "getDebugging", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 272, + "End Line": 276 + }, + { + "Function Name": "timeItOut", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 809, + "End Line": 811 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 1, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 156, + "Sequential Logic Declarations": 283, + "Function Parameters": 119, + "Function/Method Declarations": 116, + "Class/Entity Declarations": 21, + "Defensive Programming Constructs": 53, + "Type/Safety Bypasses": 78, "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, + "Exposed API / Public Exports": 93, + "State Mutations / Variable Reassignments": 146, + "Commented-out Code (Dead Logic)": 5, + "Structured Documentation Blocks": 77, "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, + "Asynchronous/Concurrent Execution": 1, "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, + "Decorators and Annotations": 35, + "Generic Type Abstractions": 220, + "Collection Iterators / Comprehensions": 2, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 9, + "Module Dependencies (Imports)": 22, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -519704,18 +519502,18 @@ "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": 6, + "Fatal Aborts & Exceptions": 13, "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, + "Private / Encapsulated Scopes": 508, + "Event Listeners & Subscribers": 41, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 1035, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -519730,17 +519528,17 @@ "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": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Lazy Evaluation & Generators (O(1) Memory)": 10, + "Vectorized Math & Tensor Operations": 15, + "Core Var Decl": 133, + "Design Camel Case": 30, + "Design Snake Case": 75, + "Design Pascal Case": 5, + "Design Upper Case": 2, + "Design Short Vars": 6, + "Design Long Vars": 6, + "Duplicate Logic": 2, + "Orphaned Logic": 14, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -519748,7 +519546,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)": 3, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -519764,31 +519562,56 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "Direct Upstream (Fragility)": 25, "Direct Downstream (Dependency Blast Radius)": 1, "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "logging" + "__future__", + "abc", + "asyncio", + "attr", + "contextvars", + "enum", + "functools", + "incremental", + "inspect", + "sys", + "traceback", + "treq", + "twisted.internet", + "twisted.internet.defer", + "twisted.internet.interfaces", + "twisted.internet.task", + "twisted.logger", + "twisted.python", + "twisted.python.compat", + "twisted.python.deprecate", + "twisted.python.failure", + "types", + "typing", + "typing_extensions", + "warnings" ] }, - "python/fastapi/fastapi/param_functions.py": { + "python/twisted/http.py": { "1. Artifact Identity": { - "Filename": "param_functions.py", - "Path": "python/fastapi/fastapi/param_functions.py", + "Filename": "http.py", + "Path": "python/twisted/http.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", + "Parent Entity": "Exception, Interface, basic.LineReceiver", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" + "Lock Tier": 1.5, + "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3161.82, - "Y": -189.11, - "Z": 3463.83 + "X": -7548.14, + "Y": -58.65, + "Z": 4266.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -519797,26 +519620,26 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 2461, - "Coding LOC": 1379, - "Documentation LOC": 944, - "Structural Magnitude": 235.88, - "Control Flow Ratio": "16.3%", - "Popularity Rank": 2, + "Total LOC": 3481, + "Coding LOC": 1513, + "Documentation LOC": 1339, + "Structural Magnitude": 1376.06, + "Control Flow Ratio": "44.2%", + "Popularity Rank": 9, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.005 + "Raw Cognitive Density": 0.923 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "2.42%", - "Error & Exception Exposure": "62.85%", - "Tech Debt Exposure": "0.0%", + "Cognitive Load Exposure": "33.31%", + "Error & Exception Exposure": "75.23%", + "Tech Debt Exposure": "11.53%", "Testing Exposure": "80.0%", - "API Exposure": "0.79%", + "API Exposure": "2.89%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "99.82%", + "Commented Logic Exposure": "5.23%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", @@ -519825,1621 +519648,1622 @@ }, "5. Function Analysis": [ { - "Function Name": "Body", - "Structural Impact": 27.7, - "Lines of Code (LOC)": 328, - "Control Flow Branches": 1, - "Input Parameters": 31, - "Control Flow Ratio": "33.3%", - "Start Line": 1323, - "End Line": 1650 + "Function Name": "addCookie", + "Structural Impact": 64.6, + "Lines of Code (LOC)": 115, + "Control Flow Branches": 16, + "Input Parameters": 11, + "Control Flow Ratio": "69.6%", + "Start Line": 1322, + "End Line": 1436 }, { - "Function Name": "Path", + "Function Name": "write", + "Structural Impact": 36.5, + "Lines of Code (LOC)": 72, + "Control Flow Branches": 18, + "Input Parameters": 2, + "Control Flow Ratio": "81.8%", + "Start Line": 1249, + "End Line": 1320 + }, + { + "Function Name": "lineReceived", + "Structural Impact": 32.7, + "Lines of Code (LOC)": 65, + "Control Flow Branches": 16, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 2361, + "End Line": 2425 + }, + { + "Function Name": "requestReceived", "Structural Impact": 27.5, - "Lines of Code (LOC)": 342, + "Lines of Code (LOC)": 59, + "Control Flow Branches": 10, + "Input Parameters": 4, + "Control Flow Ratio": "83.3%", + "Start Line": 1038, + "End Line": 1096 + }, + { + "Function Name": "_maybeChooseTransferDecoder", + "Structural Impact": 21.9, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "56.2%", + "Start Line": 2439, + "End Line": 2475 + }, + { + "Function Name": "parse_qs", + "Structural Impact": 21.3, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 9, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 366, + "End Line": 391 + }, + { + "Function Name": "stringToDatetime", + "Structural Impact": 21.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 12, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 455, + "End Line": 507 + }, + { + "Function Name": "_dataReceived_CHUNK_LENGTH", + "Structural Impact": 18.2, + "Lines of Code (LOC)": 52, + "Control Flow Branches": 10, + "Input Parameters": 1, + "Control Flow Ratio": "71.4%", + "Start Line": 1999, + "End Line": 2050 + }, + { + "Function Name": "checkPersistence", + "Structural Impact": 18.1, + "Lines of Code (LOC)": 42, + "Control Flow Branches": 7, + "Input Parameters": 3, + "Control Flow Ratio": "63.6%", + "Start Line": 2626, + "End Line": 2667 + }, + { + "Function Name": "lineReceived", + "Structural Impact": 17.6, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "72.7%", + "Start Line": 728, + "End Line": 767 + }, + { + "Function Name": "timegm", + "Structural Impact": 14.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 4, + "Input Parameters": 6, + "Control Flow Ratio": "57.1%", + "Start Line": 435, + "End Line": 452 + }, + { + "Function Name": "writeHeaders", + "Structural Impact": 14.0, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 4, + "Input Parameters": 5, + "Control Flow Ratio": "80.0%", + "Start Line": 2743, + "End Line": 2777 + }, + { + "Function Name": "_parseRequestLine", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 50, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 245, + "End Line": 294 + }, + { + "Function Name": "setETag", + "Structural Impact": 13.7, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1518, + "End Line": 1549 + }, + { + "Function Name": "setHost", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 33, + "Control Flow Branches": 4, + "Input Parameters": 4, + "Control Flow Ratio": "80.0%", + "Start Line": 1591, + "End Line": 1623 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "62.5%", + "Start Line": 3242, + "End Line": 3289 + }, + { + "Function Name": "finish", + "Structural Impact": 12.7, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 7, + "Input Parameters": 1, + "Control Flow Ratio": "77.8%", + "Start Line": 1220, + "End Line": 1247 + }, + { + "Function Name": "headerReceived", + "Structural Impact": 12.4, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "41.7%", + "Start Line": 2477, + "End Line": 2517 + }, + { + "Function Name": "setLastModified", + "Structural Impact": 12.2, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "55.6%", + "Start Line": 1481, + "End Line": 1516 + }, + { + "Function Name": "_dataReceived_TRAILER", + "Structural Impact": 12.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2072, + "End Line": 2115 + }, + { + "Function Name": "combinedLogFormatter", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 2995, + "End Line": 3025 + }, + { + "Function Name": "__init__", + "Structural Impact": 11.8, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 3, + "Input Parameters": 5, + "Control Flow Ratio": "50.0%", + "Start Line": 3350, + "End Line": 3389 + }, + { + "Function Name": "requestDone", + "Structural Impact": 11.6, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 2669, + "End Line": 2693 + }, + { + "Function Name": "getRequestHostname", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1564, + "End Line": 1579 + }, + { + "Function Name": "rawDataReceived", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2570, + "End Line": 2609 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 1831, + "End Line": 1861 + }, + { + "Function Name": "registerProducer", + "Structural Impact": 10.1, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 3, + "Input Parameters": 3, + "Control Flow Ratio": "75.0%", + "Start Line": 2828, + "End Line": 2868 + }, + { + "Function Name": "_cleanup", + "Structural Impact": 9.6, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "55.6%", + "Start Line": 958, + "End Line": 979 + }, + { + "Function Name": "parseCookies", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1009, + "End Line": 1028 + }, + { + "Function Name": "_escape", + "Structural Impact": 8.2, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 2970, + "End Line": 2991 + }, + { + "Function Name": "_getMultiPartArgs", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 314, + "End Line": 335 + }, + { + "Function Name": "stopFactory", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 3455, + "End Line": 3463 + }, + { + "Function Name": "rawDataReceived", + "Structural Impact": 7.4, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 809, + "End Line": 818 + }, + { + "Function Name": "fromChunk", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 521, + "End Line": 541 + }, + { + "Function Name": "setResponseCode", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 1438, + "End Line": 1449 + }, + { + "Function Name": "_dataReceived_CRLF", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 2052, + "End Line": 2070 + }, + { + "Function Name": "parseContentRange", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 544, + "End Line": 559 + }, + { + "Function Name": "_ensureBytes", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 1380, + "End Line": 1396 + }, + { + "Function Name": "_authorize", + "Structural Impact": 6.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 1677, + "End Line": 1693 + }, + { + "Function Name": "allHeadersReceived", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "60.0%", + "Start Line": 2611, + "End Line": 2624 + }, + { + "Function Name": "__init__", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 34, "Control Flow Branches": 1, - "Input Parameters": 29, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 923, + "End Line": 956 + }, + { + "Function Name": "startFactory", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 3446, + "End Line": 3453 + }, + { + "Function Name": "pauseProducing", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2897, + "End Line": 2930 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1727, + "End Line": 1738 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2147, + "End Line": 2155 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 2719, + "End Line": 2727 + }, + { + "Function Name": "urlparse", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 338, + "End Line": 363 + }, + { + "Function Name": "isSecure", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 13, - "End Line": 354 + "Start Line": 1656, + "End Line": 1675 }, { - "Function Name": "Query", - "Structural Impact": 27.5, - "Lines of Code (LOC)": 342, - "Control Flow Branches": 1, - "Input Parameters": 29, + "Function Name": "datetimeToString", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 394, + "End Line": 411 + }, + { + "Function Name": "noMoreData", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 1863, + "End Line": 1880 + }, + { + "Function Name": "_dataReceived_BODY", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 357, - "End Line": 698 + "Start Line": 2117, + "End Line": 2134 }, { - "Function Name": "Header", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 315, + "Function Name": "resumeProducing", + "Structural Impact": 5.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 2932, + "End Line": 2949 + }, + { + "Function Name": "getClientIP", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 1626, + "End Line": 1638 + }, + { + "Function Name": "unregisterProducer", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2870, + "End Line": 2883 + }, + { + "Function Name": "registerProducer", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 30, - "Control Flow Ratio": "33.3%", - "Start Line": 701, - "End Line": 1015 + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1124, + "End Line": 1136 }, { - "Function Name": "Form", - "Structural Impact": 26.8, - "Lines of Code (LOC)": 313, + "Function Name": "_getContentFile", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 837, + "End Line": 843 + }, + { + "Function Name": "__eq__", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 19, "Control Flow Branches": 1, - "Input Parameters": 30, - "Control Flow Ratio": "33.3%", - "Start Line": 1653, - "End Line": 1965 + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1747, + "End Line": 1765 }, { - "Function Name": "File", - "Structural Impact": 26.8, - "Lines of Code (LOC)": 313, + "Function Name": "sendHeader", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, - "Input Parameters": 30, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 702, + "End Line": 708 + }, + { + "Function Name": "getHeader", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 1147, + "End Line": 1162 + }, + { + "Function Name": "extractHeader", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 713, + "End Line": 726 + }, + { + "Function Name": "allContentReceived", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1968, - "End Line": 2280 + "Start Line": 2519, + "End Line": 2545 }, { - "Function Name": "Cookie", - "Structural Impact": 26.1, - "Lines of Code (LOC)": 303, + "Function Name": "log", + "Structural Impact": 4.0, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 29, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3471, + "End Line": 3480 + }, + { + "Function Name": "_set_logFile", + "Structural Impact": 3.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 3410, + "End Line": 3418 + }, + { + "Function Name": "datetimeToLogString", + "Structural Impact": 3.8, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 1018, - "End Line": 1320 + "Start Line": 414, + "End Line": 432 }, { - "Function Name": "Depends", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 87, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 2283, - "End Line": 2369 + "Function Name": "getUser", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1695, + "End Line": 1709 }, { - "Function Name": "Security", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 89, + "Function Name": "getPassword", + "Structural Impact": 3.6, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 1711, + "End Line": 1725 + }, + { + "Function Name": "isSecure", + "Structural Impact": 3.5, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 2729, + "End Line": 2741 + }, + { + "Function Name": "notifyFinish", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 42, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2372, - "End Line": 2460 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 36, - "Function Parameters": 9, - "Function/Method Declarations": 9, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 54, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 217, - "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": 39, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 9, - "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": 2, - "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": 58, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 1352, - "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": 201, - "Design Camel Case": 0, - "Design Snake Case": 201, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 28, - "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)": 11, - "Direct Downstream (Dependency Blast Radius)": 2, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - ".db", - ".security", - "annotated_doc", - "collections.abc", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.openapi.models", - "pydantic", - "typing", - "typing_extensions" - ] - }, - "python/fastapi/fastapi/params.py": { - "1. Artifact Identity": { - "Filename": "params.py", - "Path": "python/fastapi/fastapi/params.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "Enum, FieldInfo, Param", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2849.6, - "Y": -211.02, - "Z": 2625.65 - }, - "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": 755, - "Coding LOC": 718, - "Documentation LOC": 0, - "Structural Magnitude": 288.56, - "Control Flow Ratio": "37.3%", - "Popularity Rank": 3, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.095 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.78%", - "Error & Exception Exposure": "81.94%", - "Tech Debt Exposure": "26.16%", - "Testing Exposure": "80.0%", - "API Exposure": "0.77%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "21.66%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "28.93%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__init__", - "Structural Impact": 75.3, - "Lines of Code (LOC)": 106, - "Control Flow Branches": 11, - "Input Parameters": 33, - "Control Flow Ratio": "91.7%", - "Start Line": 470, - "End Line": 575 + "Start Line": 1177, + "End Line": 1218 }, { - "Function Name": "__init__", - "Structural Impact": 73.0, - "Lines of Code (LOC)": 103, - "Control Flow Branches": 11, - "Input Parameters": 31, - "Control Flow Ratio": "91.7%", - "Start Line": 29, - "End Line": 131 + "Function Name": "getAllHeaders", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 1551, + "End Line": 1562 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "stopProducing", + "Structural Impact": 3.4, + "Lines of Code (LOC)": 11, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 306, - "End Line": 384 + "Start Line": 2885, + "End Line": 2895 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "handleResponseEnd", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 582, - "End Line": 660 + "Start Line": 772, + "End Line": 781 }, { - "Function Name": "__init__", - "Structural Impact": 15.4, - "Lines of Code (LOC)": 79, + "Function Name": "noMoreData", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, "Control Flow Branches": 1, - "Input Parameters": 32, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 664, - "End Line": 742 + "Start Line": 2157, + "End Line": 2166 }, { - "Function Name": "__init__", - "Structural Impact": 15.3, - "Lines of Code (LOC)": 79, + "Function Name": "connectionMade", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 31, - "Control Flow Ratio": "33.3%", - "Start Line": 140, - "End Line": 218 + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 2348, + "End Line": 2355 }, { - "Function Name": "__init__", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, + "Function Name": "timeoutConnection", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 8, "Control Flow Branches": 1, - "Input Parameters": 31, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 224, - "End Line": 300 + "Start Line": 2695, + "End Line": 2702 }, { - "Function Name": "__init__", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 77, + "Function Name": "loseConnection", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 6, "Control Flow Branches": 1, - "Input Parameters": 31, + "Input Parameters": 1, "Control Flow Ratio": "50.0%", - "Start Line": 390, - "End Line": 466 + "Start Line": 1740, + "End Line": 1745 + }, + { + "Function Name": "_get_logFile", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 3404, + "End Line": 3407 + }, + { + "Function Name": "_protocolUpgradeForWebsockets", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2547, + "End Line": 2568 + }, + { + "Function Name": "setHeader", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1451, + "End Line": 1464 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1986, + "End Line": 1997 + }, + { + "Function Name": "buildProtocol", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3429, + "End Line": 3444 + }, + { + "Function Name": "redirect", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1466, + "End Line": 1479 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1826, + "End Line": 1829 + }, + { + "Function Name": "handleStatus", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 789, + "End Line": 789 + }, + { + "Function Name": "gotLength", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 997, + "End Line": 1007 + }, + { + "Function Name": "getCookie", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1164, + "End Line": 1175 + }, + { + "Function Name": "requestFactory", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3165, + "End Line": 3176 + }, + { + "Function Name": "site", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3188, + "End Line": 3199 + }, + { + "Function Name": "timeOut", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3209, + "End Line": 3220 }, { "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 133, - "End Line": 134 + "Start Line": 1098, + "End Line": 1112 }, { - "Function Name": "__repr__", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "getClientAddress", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 577, - "End Line": 578 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 28, - "Sequential Logic Declarations": 47, - "Function Parameters": 10, - "Function/Method Declarations": 10, - "Class/Entity Declarations": 11, - "Defensive Programming Constructs": 6, - "Type/Safety Bypasses": 58, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 11, - "State Mutations / Variable Reassignments": 20, - "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": 2, - "Generic Type Abstractions": 35, - "Collection Iterators / Comprehensions": 2, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 12, - "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": 2, - "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": 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": 96, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 692, - "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": 2, - "Core Var Decl": 459, - "Design Camel Case": 0, - "Design Snake Case": 247, - "Design Pascal Case": 212, - "Design Upper Case": 0, - "Design Short Vars": 32, - "Design Long Vars": 2, - "Duplicate Logic": 4, - "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)": 12, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "._compat", - ".datastructures", - "collections.abc", - "dataclasses", - "enum", - "fastapi.exceptions", - "fastapi.openapi.models", - "pydantic", - "pydantic.fields", - "typing", - "typing_extensions", - "warnings" - ] - }, - "python/fastapi/fastapi/requests.py": { - "1. Artifact Identity": { - "Filename": "requests.py", - "Path": "python/fastapi/fastapi/requests.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3424.77, - "Y": -174.92, - "Z": 3741.03 - }, - "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": 3, - "Coding LOC": 2, - "Documentation LOC": 0, - "Structural Magnitude": 11.04, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 5, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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": 6, - "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": 2, - "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)": 2, - "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": 0, - "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": 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": 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)": 5, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "starlette.requests" - ] - }, - "python/fastapi/fastapi/responses.py": { - "1. Artifact Identity": { - "Filename": "responses.py", - "Path": "python/fastapi/fastapi/responses.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "JSONResponse", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2269.7, - "Y": -250.69, - "Z": 2507.74 - }, - "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": 86, - "Coding LOC": 47, - "Documentation LOC": 22, - "Structural Magnitude": 8.84, - "Control Flow Ratio": "17.9%", - "Popularity Rank": 27, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.2 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.99%", - "Error & Exception Exposure": "60.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "7.21%", - "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": "26.17%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Start Line": 1640, + "End Line": 1654 + }, { - "Function Name": "render", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 5, + "Function Name": "write", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 81, - "End Line": 85 + "Start Line": 2779, + "End Line": 2788 }, { - "Function Name": "render", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, + "Function Name": "writeSequence", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 53 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 10, - "Sequential Logic Declarations": 46, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 6, - "Type/Safety Bypasses": 3, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 4, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 0, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 2, - "Closures and Anonymous Functions": 0, - "Global State Dependencies": 0, - "Decorators and Annotations": 2, - "Generic Type Abstractions": 2, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 4, - "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": 26, - "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": 2, - "Core Var Decl": 8, - "Design Camel Case": 0, - "Design Snake Case": 8, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 7, - "Direct Downstream (Dependency Blast Radius)": 27, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "fastapi.exceptions", - "fastapi.sse", - "orjson", - "starlette.responses", - "typing", - "typing_extensions", - "ujson" - ] - }, - "python/fastapi/fastapi/routing.py": { - "1. Artifact Identity": { - "Filename": "routing.py", - "Path": "python/fastapi/fastapi/routing.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Parent Entity": "AbstractAsyncContextManager[_T], routing.WebSocketRoute, routing.Route", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2823.64, - "Y": -207.95, - "Z": 3200.6 - }, - "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": 4957, - "Coding LOC": 2505, - "Documentation LOC": 1869, - "Structural Magnitude": 1734.8, - "Control Flow Ratio": "45.3%", - "Popularity Rank": 4, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.503 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.57%", - "Error & Exception Exposure": "71.33%", - "Tech Debt Exposure": "11.4%", - "Testing Exposure": "80.0%", - "API Exposure": "3.37%", - "Concurrency Exposure": "53.75%", - "State Flux Exposure": "74.67%", - "Commented Logic Exposure": "4.91%", - "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": "get_request_handler", - "Structural Impact": 282.8, - "Lines of Code (LOC)": 379, - "Control Flow Branches": 63, - "Input Parameters": 16, - "Control Flow Ratio": "55.8%", - "Start Line": 351, - "End Line": 729 + "Start Line": 2790, + "End Line": 2799 }, { - "Function Name": "__init__", - "Structural Impact": 191.3, - "Lines of Code (LOC)": 165, - "Control Flow Branches": 33, - "Input Parameters": 28, - "Control Flow Ratio": "84.6%", - "Start Line": 812, - "End Line": 976 + "Function Name": "getClientAddress", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3050, + "End Line": 3064 }, { - "Function Name": "include_router", - "Structural Impact": 123.5, - "Lines of Code (LOC)": 252, - "Control Flow Branches": 31, - "Input Parameters": 11, - "Control Flow Ratio": "81.6%", - "Start Line": 1578, - "End Line": 1829 + "Function Name": "proxiedLogFormatter", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3093, + "End Line": 3101 }, { - "Function Name": "app", - "Structural Impact": 100.7, - "Lines of Code (LOC)": 346, - "Control Flow Branches": 58, - "Input Parameters": 1, - "Control Flow Ratio": "56.3%", - "Start Line": 382, - "End Line": 727 + "Function Name": "callLater", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3231, + "End Line": 3240 }, { - "Function Name": "__init__", - "Structural Impact": 94.7, - "Lines of Code (LOC)": 284, - "Control Flow Branches": 17, - "Input Parameters": 19, - "Control Flow Ratio": "73.9%", - "Start Line": 1032, - "End Line": 1315 + "Function Name": "sendCommand", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 699, + "End Line": 700 }, { - "Function Name": "add_api_route", - "Structural Impact": 47.2, - "Lines of Code (LOC)": 82, - "Control Flow Branches": 7, - "Input Parameters": 28, - "Control Flow Ratio": "70.0%", - "Start Line": 1336, - "End Line": 1417 + "Function Name": "handleContentChunk", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1030, + "End Line": 1036 }, { - "Function Name": "serialize_response", - "Structural Impact": 33.2, - "Lines of Code (LOC)": 41, - "Control Flow Branches": 8, - "Input Parameters": 11, - "Control Flow Ratio": "66.7%", - "Start Line": 277, - "End Line": 317 + "Function Name": "forceAbortClient", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2704, + "End Line": 2717 }, { - "Function Name": "app", - "Structural Impact": 27.2, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 12, + "Function Name": "requestReceived", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "63.2%", - "Start Line": 110, - "End Line": 134 + "Control Flow Ratio": "0.0%", + "Start Line": 610, + "End Line": 610 }, { - "Function Name": "app", - "Structural Impact": 26.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Function Name": "handleHeader", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, "Input Parameters": 3, - "Control Flow Ratio": "70.6%", - "Start Line": 113, - "End Line": 131 + "Control Flow Ratio": "0.0%", + "Start Line": 799, + "End Line": 799 }, { - "Function Name": "request_response", - "Structural Impact": 23.2, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 14, + "Function Name": "noLongerQueued", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 97, - "End Line": 136 + "Control Flow Ratio": "0.0%", + "Start Line": 984, + "End Line": 995 }, { - "Function Name": "get", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "registerProducer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 3, "Control Flow Ratio": "0.0%", - "Start Line": 1831, - "End Line": 2206 + "Start Line": 2193, + "End Line": 2193 }, { - "Function Name": "put", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_openLogFile", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 2208, - "End Line": 2588 + "Start Line": 3465, + "End Line": 3469 }, { - "Function Name": "post", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_parseContentType", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2590, - "End Line": 2970 + "Start Line": 297, + "End Line": 305 }, { - "Function Name": "delete", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "toChunk", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 2972, - "End Line": 3347 + "Start Line": 510, + "End Line": 518 }, { - "Function Name": "options", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 376, + "Function Name": "_sanitize", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3349, - "End Line": 3724 + "Start Line": 1398, + "End Line": 1406 }, { - "Function Name": "head", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "getHost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 3726, - "End Line": 4106 + "Start Line": 1581, + "End Line": 1589 }, { - "Function Name": "patch", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "_dataReceived_FINISHED", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4108, - "End Line": 4488 + "Start Line": 2136, + "End Line": 2145 }, { - "Function Name": "trace", - "Structural Impact": 19.0, - "Lines of Code (LOC)": 381, + "Function Name": "dataReceived", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 24, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 4490, - "End Line": 4870 - }, - { - "Function Name": "__init__", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 33, - "Control Flow Branches": 4, - "Input Parameters": 6, - "Control Flow Ratio": "80.0%", - "Start Line": 770, - "End Line": 802 + "Start Line": 2357, + "End Line": 2359 }, { - "Function Name": "_merge_lifespan_context", - "Structural Impact": 14.6, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 7, + "Function Name": "_finishRequestBody", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "58.3%", - "Start Line": 209, - "End Line": 223 + "Control Flow Ratio": "0.0%", + "Start Line": 2427, + "End Line": 2429 }, { - "Function Name": "_serialize_sse_item", - "Structural Impact": 12.7, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 7, + "Function Name": "loseConnection", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 500, - "End Line": 527 + "Control Flow Ratio": "0.0%", + "Start Line": 2817, + "End Line": 2826 }, { - "Function Name": "merged_lifespan", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 7, + "Function Name": "_respondToBadRequestAndDisconnect", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "70.0%", - "Start Line": 213, - "End Line": 221 + "Control Flow Ratio": "0.0%", + "Start Line": 2958, + "End Line": 2967 }, { - "Function Name": "get_websocket_app", - "Structural Impact": 11.8, - "Lines of Code (LOC)": 35, - "Control Flow Branches": 4, - "Input Parameters": 3, - "Control Flow Ratio": "36.4%", - "Start Line": 732, - "End Line": 766 + "Function Name": "factory", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3151, + "End Line": 3153 }, { - "Function Name": "_extract_endpoint_context", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 254, - "End Line": 274 + "Function Name": "writeSequence", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 666, + "End Line": 667 }, { - "Function Name": "_build_response_args", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 4, + "Function Name": "__getattr__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 333, - "End Line": 348 + "Control Flow Ratio": "0.0%", + "Start Line": 669, + "End Line": 670 }, { - "Function Name": "matches", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, + "Function Name": "connectionLost", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 804, - "End Line": 808 + "Control Flow Ratio": "0.0%", + "Start Line": 769, + "End Line": 770 }, { - "Function Name": "matches", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 4, + "Function Name": "handleResponsePart", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 998, - "End Line": 1002 + "Control Flow Ratio": "0.0%", + "Start Line": 783, + "End Line": 784 }, { - "Function Name": "app", - "Structural Impact": 8.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 4, + "Function Name": "process", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "44.4%", - "Start Line": 737, - "End Line": 764 + "Control Flow Ratio": "0.0%", + "Start Line": 1114, + "End Line": 1120 }, { - "Function Name": "_serialize_data", - "Structural Impact": 8.3, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 4, + "Function Name": "__hash__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 471, - "End Line": 494 + "Control Flow Ratio": "0.0%", + "Start Line": 1767, + "End Line": 1773 }, { - "Function Name": "api_route", - "Structural Impact": 8.1, - "Lines of Code (LOC)": 61, + "Function Name": "_failChooseTransferDecoder", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, - "Input Parameters": 25, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1419, - "End Line": 1479 - }, - { - "Function Name": "add_event_handler", - "Structural Impact": 6.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "50.0%", - "Start Line": 4905, - "End Line": 4922 + "Start Line": 2431, + "End Line": 2437 }, { - "Function Name": "_keepalive_inserter", - "Structural Impact": 6.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 5, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 565, - "End Line": 578 + "Function Name": "getPeer", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2801, + "End Line": 2807 }, { - "Function Name": "app", - "Structural Impact": 6.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 149, - "End Line": 160 + "Function Name": "getHost", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2809, + "End Line": 2815 }, { - "Function Name": "run_endpoint_function", - "Structural Impact": 6.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "25.0%", - "Start Line": 320, - "End Line": 330 + "Function Name": "__init__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 3040, + "End Line": 3041 }, { - "Function Name": "_startup", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "requestFactory", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4873, - "End Line": 4886 + "Control Flow Ratio": "0.0%", + "Start Line": 3156, + "End Line": 3162 }, { - "Function Name": "_shutdown", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, + "Function Name": "site", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "60.0%", - "Start Line": 4889, - "End Line": 4902 - }, - { - "Function Name": "app", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 3, - "Control Flow Ratio": "33.3%", - "Start Line": 152, - "End Line": 157 + "Control Flow Ratio": "0.0%", + "Start Line": 3179, + "End Line": 3185 }, { - "Function Name": "add_api_websocket_route", - "Structural Impact": 5.9, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 1, - "Input Parameters": 5, - "Control Flow Ratio": "50.0%", - "Start Line": 1481, - "End Line": 1500 + "Function Name": "_genericHTTPChannelProtocolFactory", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3292, + "End Line": 3298 }, { - "Function Name": "websocket", - "Structural Impact": 5.5, - "Lines of Code (LOC)": 66, + "Function Name": "write", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 2, "Control Flow Ratio": "0.0%", - "Start Line": 1502, - "End Line": 1567 + "Start Line": 3302, + "End Line": 3302 }, { - "Function Name": "websocket_session", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Function Name": "unregisterProducer", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "20.0%", - "Start Line": 141, - "End Line": 162 + "Control Flow Ratio": "0.0%", + "Start Line": 1138, + "End Line": 1143 }, { - "Function Name": "_sse_with_checkpoints", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 1, + "Function Name": "__init__", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 597, - "End Line": 605 + "Control Flow Ratio": "0.0%", + "Start Line": 2341, + "End Line": 2346 }, { - "Function Name": "route", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 18, + "Function Name": "_send100Continue", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 5, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1317, - "End Line": 1334 + "Start Line": 2951, + "End Line": 2956 }, { - "Function Name": "_producer", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 556, - "End Line": 559 + "Function Name": "clientproto", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 3068, + "End Line": 3073 }, { - "Function Name": "_async_stream_raw", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 1, + "Function Name": "code", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 658, - "End Line": 665 + "Control Flow Ratio": "0.0%", + "Start Line": 3076, + "End Line": 3081 }, { - "Function Name": "on_event", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 25, + "Function Name": "sentLength", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4932, - "End Line": 4956 + "Start Line": 3084, + "End Line": 3089 }, { - "Function Name": "decorator", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 29, + "Function Name": "factory", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1449, - "End Line": 1477 + "Start Line": 3144, + "End Line": 3148 }, { - "Function Name": "__aexit__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 7, + "Function Name": "timeOut", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 4, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 182, - "End Line": 188 + "Start Line": 3202, + "End Line": 3206 }, { - "Function Name": "get_route_handler", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 19, + "Function Name": "callLater", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 978, - "End Line": 996 + "Start Line": 3223, + "End Line": 3228 }, { - "Function Name": "websocket_route", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 8, + "Function Name": "_updateLogDateTime", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 3, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1569, - "End Line": 1576 + "Start Line": 3422, + "End Line": 3427 }, { - "Function Name": "_async_stream_jsonl", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 629, - "End Line": 634 + "Function Name": "connectionLost", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 577, + "End Line": 577 }, { - "Function Name": "_wrap_gen_lifespan_context", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, + "Function Name": "gotLength", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 192, - "End Line": 206 + "Start Line": 586, + "End Line": 586 }, { - "Function Name": "_sync_stream_jsonl", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "50.0%", - "Start Line": 641, - "End Line": 643 + "Function Name": "handleContentChunk", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 596, + "End Line": 596 }, { - "Function Name": "decorator", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 9, + "Function Name": "__eq__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1324, - "End Line": 1332 + "Start Line": 626, + "End Line": 626 }, { - "Function Name": "__init__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 2, + "Function Name": "__ne__", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 177 + "Start Line": 637, + "End Line": 637 }, { "Function Name": "__init__", - "Structural Impact": 1.8, + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 237, - "End Line": 238 + "Start Line": 663, + "End Line": 664 }, { - "Function Name": "__aexit__", - "Structural Impact": 1.8, + "Function Name": "endHeaders", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 243, - "End Line": 244 + "Start Line": 710, + "End Line": 711 }, { - "Function Name": "__call__", - "Structural Impact": 1.8, + "Function Name": "connectionMade", + "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 246, - "End Line": 247 + "Start Line": 786, + "End Line": 787 }, { - "Function Name": "decorator", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "handleEndHeaders", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1561, - "End Line": 1565 + "Start Line": 804, + "End Line": 804 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "pauseProducing", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1572, - "End Line": 1574 + "Start Line": 2177, + "End Line": 2177 }, { - "Function Name": "decorator", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, + "Function Name": "resumeProducing", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 4952, - "End Line": 4954 + "Start Line": 2185, + "End Line": 2185 }, { - "Function Name": "__aenter__", + "Function Name": "unregisterProducer", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 179, - "End Line": 180 + "Start Line": 2201, + "End Line": 2201 }, { - "Function Name": "wrapper", + "Function Name": "stopProducing", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 203, - "End Line": 204 + "Start Line": 2206, + "End Line": 2206 }, { - "Function Name": "__aenter__", + "Function Name": "close", "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 240, - "End Line": 241 + "Start Line": 3307, + "End Line": 3307 }, { - "Function Name": "_serialize_item", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 2, + "Function Name": "parseCookies", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 624, - "End Line": 625 + "Start Line": 605, + "End Line": 605 }, { - "Function Name": "_sse_producer_cm", + "Function Name": "__hash__", "Structural Impact": 1.1, - "Lines of Code (LOC)": 2, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 535, - "End Line": 536 + "Start Line": 648, + "End Line": 648 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 218, - "Sequential Logic Declarations": 263, - "Function Parameters": 65, - "Function/Method Declarations": 65, - "Class/Entity Declarations": 5, - "Defensive Programming Constructs": 54, - "Type/Safety Bypasses": 106, + "Control Flow Branches": 295, + "Sequential Logic Declarations": 372, + "Function Parameters": 156, + "Function/Method Declarations": 153, + "Class/Entity Declarations": 17, + "Defensive Programming Constructs": 52, + "Type/Safety Bypasses": 28, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 52, - "State Mutations / Variable Reassignments": 218, - "Commented-out Code (Dead Logic)": 2, - "Structured Documentation Blocks": 237, - "Unit Test Assertions": 1, - "Asynchronous/Concurrent Execution": 68, + "I/O and Network Boundaries": 13, + "Exposed API / Public Exports": 130, + "State Mutations / Variable Reassignments": 329, + "Commented-out Code (Dead Logic)": 4, + "Structured Documentation Blocks": 146, + "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": 4, - "Generic Type Abstractions": 196, - "Collection Iterators / Comprehensions": 3, + "Decorators and Annotations": 23, + "Generic Type Abstractions": 44, + "Collection Iterators / Comprehensions": 9, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 9, - "Module Dependencies (Imports)": 36, + "Metaprogramming & Reflection": 14, + "Module Dependencies (Imports)": 35, "Authorship Metadata": 0, "Planned Work (TODOs)": 4, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 3, "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 15, - "Event Publishers / Emitters": 13, - "Dependency Injection Constructs": 17, + "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": 8, - "Fatal Aborts & Exceptions": 9, + "Explicit Type Casts": 14, + "Fatal Aborts & Exceptions": 33, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 1, - "Private / Encapsulated Scopes": 92, - "Event Listeners & Subscribers": 13, + "Resource Deallocation & Cleanup": 4, + "Private / Encapsulated Scopes": 408, + "Event Listeners & Subscribers": 1, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2434, + "Structural Space Indentations": 1410, "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, + "Regex Execution": 1, + "Time Date Logic": 4, "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)": 26, - "Vectorized Math & Tensor Operations": 3, - "Core Var Decl": 604, - "Design Camel Case": 0, - "Design Snake Case": 521, - "Design Pascal Case": 82, - "Design Upper Case": 0, - "Design Short Vars": 2, - "Design Long Vars": 57, - "Duplicate Logic": 2, + "Lazy Evaluation & Generators (O(1) Memory)": 0, + "Vectorized Math & Tensor Operations": 22, + "Core Var Decl": 292, + "Design Camel Case": 55, + "Design Snake Case": 199, + "Design Pascal Case": 13, + "Design Upper Case": 5, + "Design Short Vars": 20, + "Design Long Vars": 1, + "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, + "High-Entropy / Obfuscated Logic": 129, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 3, - "Dynamic Code Execution (Eval/Exec)": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 2, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 1, + "Commented-Out Executable Logic": 8, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -521453,66 +521277,65 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 35, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 1, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 34, + "Direct Downstream (Dependency Blast Radius)": 9, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "annotated_doc", - "anyio", - "anyio.abc", - "collections.abc", - "contextlib", + "__future__", + "base64", + "binascii", + "calendar", + "collections", + "email", "email.message", - "enum", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.dependencies.models", - "fastapi.dependencies.utils", - "fastapi.encoders", - "fastapi.exceptions", - "fastapi.sse", - "fastapi.types", - "fastapi.utils", - "functools", - "inspect", - "json", - "pydantic", - "starlette", - "starlette._exception_handler", - "starlette._utils", - "starlette.concurrency", - "starlette.datastructures", - "starlette.exceptions", - "starlette.requests", - "starlette.responses", - "starlette.routing", - "starlette.types", - "starlette.websockets", - "types", + "incremental", + "io", + "math", + "os", + "re", + "tempfile", + "time", + "twisted.internet", + "twisted.internet._producer_helpers", + "twisted.internet.defer", + "twisted.internet.interfaces", + "twisted.logger", + "twisted.protocols", + "twisted.python", + "twisted.python.compat", + "twisted.python.components", + "twisted.python.deprecate", + "twisted.python.failure", + "twisted.web._abnf", + "twisted.web._http2", + "twisted.web._responses", + "twisted.web.http_headers", + "twisted.web.iweb", "typing", - "typing_extensions" + "urllib.parse", + "warnings", + "zope.interface" ] }, - "python/fastapi/fastapi/sse.py": { + "python/twisted/reflect.py": { "1. Artifact Identity": { - "Filename": "sse.py", - "Path": "python/fastapi/fastapi/sse.py", + "Filename": "reflect.py", + "Path": "python/twisted/reflect.py", "Language": "Python", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Parent Entity": "StreamingResponse, BaseModel", + "Parent Entity": "Exception, ValueError, InvalidName", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 2718.26, - "Y": -206.74, - "Z": 3638.12 + "X": -7268.7, + "Y": -135.81, + "Z": 4700.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -521521,967 +521344,343 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 223, - "Coding LOC": 107, - "Documentation LOC": 77, - "Structural Magnitude": 65.84, - "Control Flow Ratio": "41.7%", - "Popularity Rank": 3, + "Total LOC": 687, + "Coding LOC": 295, + "Documentation LOC": 249, + "Structural Magnitude": 264.9, + "Control Flow Ratio": "40.6%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.533 + "Raw Cognitive Density": 0.753 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.77%", - "Error & Exception Exposure": "77.52%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.51%", - "API Exposure": "3.31%", + "Cognitive Load Exposure": "25.16%", + "Error & Exception Exposure": "45.82%", + "Tech Debt Exposure": "13.92%", + "Testing Exposure": "80.0%", + "API Exposure": "3.52%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.57%", - "Commented Logic Exposure": "0.0%", + "State Flux Exposure": "44.26%", + "Commented Logic Exposure": "5.37%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "39.94%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "format_sse_event", - "Structural Impact": 23.0, - "Lines of Code (LOC)": 69, + "Function Name": "objgrep", + "Structural Impact": 62.9, + "Lines of Code (LOC)": 117, + "Control Flow Branches": 18, + "Input Parameters": 8, + "Control Flow Ratio": "66.7%", + "Start Line": 534, + "End Line": 650 + }, + { + "Function Name": "addMethodNamesToDict", + "Structural Impact": 19.9, + "Lines of Code (LOC)": 40, "Control Flow Branches": 7, - "Input Parameters": 5, + "Input Parameters": 4, "Control Flow Ratio": "77.8%", - "Start Line": 146, - "End Line": 214 + "Start Line": 48, + "End Line": 87 }, { - "Function Name": "_check_data_exclusive", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 6, + "Function Name": "accumulateMethods", + "Structural Impact": 19.9, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 7, + "Input Parameters": 4, + "Control Flow Ratio": "77.8%", + "Start Line": 109, + "End Line": 149 + }, + { + "Function Name": "namedAny", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 62, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "75.0%", - "Start Line": 136, - "End Line": 143 + "Control Flow Ratio": "81.8%", + "Start Line": 249, + "End Line": 310 }, { - "Function Name": "_check_id_no_null", - "Structural Impact": 4.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, + "Function Name": "filenameToModuleName", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 36, - "End Line": 39 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 21, - "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 2, - "Defensive Programming Constructs": 4, - "Type/Safety Bypasses": 4, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 5, - "State Mutations / Variable Reassignments": 21, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 14, - "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": 5, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 4, - "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": 2, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 5, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 94, - "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": 1, - "Core Var Decl": 3, - "Design Camel Case": 0, - "Design Snake Case": 2, - "Design Pascal Case": 0, - "Design Upper Case": 1, - "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, - "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)": 4, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "annotated_doc", - "pydantic", - "starlette.responses", - "typing" - ] - }, - "python/fastapi/fastapi/staticfiles.py": { - "1. Artifact Identity": { - "Filename": "staticfiles.py", - "Path": "python/fastapi/fastapi/staticfiles.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2002.21, - "Y": -261.45, - "Z": 3018.53 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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": [ - "starlette.staticfiles" - ] - }, - "python/fastapi/fastapi/templating.py": { - "1. Artifact Identity": { - "Filename": "templating.py", - "Path": "python/fastapi/fastapi/templating.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3414.93, - "Y": -180.12, - "Z": 2449.04 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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": [ - "starlette.templating" - ] - }, - "python/fastapi/fastapi/testclient.py": { - "1. Artifact Identity": { - "Filename": "testclient.py", - "Path": "python/fastapi/fastapi/testclient.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 2799.88, - "Y": -228.99, - "Z": 4153.78 - }, - "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": 2, - "Coding LOC": 1, - "Documentation LOC": 0, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 185, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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, - "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)": 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": 0, - "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": 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": 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)": 185, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "starlette.testclient" - ] - }, - "python/fastapi/fastapi/types.py": { - "1. Artifact Identity": { - "Filename": "types.py", - "Path": "python/fastapi/fastapi/types.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 1.5, - "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" - }, - "2. Topological Coordinates": { - "X": 3083.58, - "Y": -263.69, - "Z": 3769.22 - }, - "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": 13, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 15.2, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 34, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "64.57%", - "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": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "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": 14, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, - "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, - "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": 5, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 6, - "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": 0, - "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": 4, - "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 4, - "Design Upper Case": 0, - "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, - "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)": 6, - "Direct Downstream (Dependency Blast Radius)": 34, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 9 - }, - "9. Extracted Dependencies": [ - "collections.abc", - "enum", - "pydantic", - "pydantic.main", - "types", - "typing" - ] - }, - "python/fastapi/fastapi/utils.py": { - "1. Artifact Identity": { - "Filename": "utils.py", - "Path": "python/fastapi/fastapi/utils.py", - "Language": "Python", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "python", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Shebang)" - }, - "2. Topological Coordinates": { - "X": 2573.21, - "Y": -255.49, - "Z": 2454.89 - }, - "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": 137, - "Coding LOC": 109, - "Documentation LOC": 6, - "Structural Magnitude": 62.48, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 3, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.183 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.54%", - "Error & Exception Exposure": "62.11%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.0%", - "API Exposure": "7.81%", - "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": "81.61%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ + "Control Flow Ratio": "66.7%", + "Start Line": 313, + "End Line": 348 + }, { - "Function Name": "deep_dict_update", - "Structural Impact": 16.4, - "Lines of Code (LOC)": 16, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "88.9%", - "Start Line": 103, - "End Line": 118 + "Function Name": "accumulateClassDict", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 465, + "End Line": 499 }, { - "Function Name": "create_model_field", - "Structural Impact": 11.6, - "Lines of Code (LOC)": 20, + "Function Name": "accumulateClassList", + "Structural Impact": 9.4, + "Lines of Code (LOC)": 10, "Control Flow Branches": 3, - "Input Parameters": 6, - "Control Flow Ratio": "50.0%", - "Start Line": 58, - "End Line": 77 + "Input Parameters": 4, + "Control Flow Ratio": "75.0%", + "Start Line": 502, + "End Line": 511 }, { - "Function Name": "is_body_allowed_for_status_code", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 15, + "Function Name": "_importAndCheckStack", + "Structural Impact": 7.0, + "Lines of Code (LOC)": 26, "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 26, - "End Line": 40 + "Control Flow Ratio": "60.0%", + "Start Line": 221, + "End Line": 246 }, { - "Function Name": "get_value_or_default", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 16, + "Function Name": "safe_str", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 418, + "End Line": 435 + }, + { + "Function Name": "_determineClassName", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 9, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "40.0%", - "Start Line": 121, - "End Line": 136 + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 365, + "End Line": 373 }, { - "Function Name": "generate_operation_id_for_path", + "Function Name": "_safeFormat", "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 376, + "End Line": 400 + }, + { + "Function Name": "requireModule", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "25.0%", + "Start Line": 176, + "End Line": 192 + }, + { + "Function Name": "safe_repr", + "Structural Impact": 3.5, "Lines of Code (LOC)": 13, "Control Flow Branches": 1, - "Input Parameters": 3, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 403, + "End Line": 415 + }, + { + "Function Name": "namedModule", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 1, + "Input Parameters": 1, "Control Flow Ratio": "33.3%", - "Start Line": 80, - "End Line": 92 + "Start Line": 152, + "End Line": 161 }, { - "Function Name": "generate_unique_id", + "Function Name": "_determineClass", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "20.0%", + "Start Line": 358, + "End Line": 362 + }, + { + "Function Name": "fullFuncName", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "25.0%", + "Start Line": 451, + "End Line": 455 + }, + { + "Function Name": "prefixedMethodNames", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 45 + }, + { + "Function Name": "prefixedMethods", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 106 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 443, + "End Line": 445 + }, + { + "Function Name": "namedObject", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 164, + "End Line": 170 + }, + { + "Function Name": "__call__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 447, + "End Line": 448 + }, + { + "Function Name": "isSame", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 514, + "End Line": 515 + }, + { + "Function Name": "isLike", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 518, + "End Line": 519 + }, + { + "Function Name": "isOfType", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 526, + "End Line": 527 + }, + { + "Function Name": "findInstances", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 2, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 530, + "End Line": 531 + }, + { + "Function Name": "qual", "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 95, - "End Line": 100 + "Start Line": 351, + "End Line": 355 }, { - "Function Name": "get_path_param_names", + "Function Name": "getClass", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 458, + "End Line": 462 + }, + { + "Function Name": "modgrep", "Structural Impact": 1.5, "Lines of Code (LOC)": 2, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 43, - "End Line": 44 + "Start Line": 522, + "End Line": 523 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 20, - "Sequential Logic Declarations": 40, - "Function Parameters": 7, - "Function/Method Declarations": 7, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 8, - "Type/Safety Bypasses": 7, + "Control Flow Branches": 67, + "Sequential Logic Declarations": 98, + "Function Parameters": 28, + "Function/Method Declarations": 28, + "Class/Entity Declarations": 5, + "Defensive Programming Constructs": 30, + "Type/Safety Bypasses": 12, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 12, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, + "I/O and Network Boundaries": 11, + "Exposed API / Public Exports": 28, + "State Mutations / Variable Reassignments": 16, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 24, "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": 11, - "Collection Iterators / Comprehensions": 1, + "Generic Type Abstractions": 7, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 10, + "Metaprogramming & Reflection": 13, + "Module Dependencies (Imports)": 14, "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, @@ -522491,26 +521690,26 @@ "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 3, - "Fatal Aborts & Exceptions": 2, + "Ad-hoc Print / Debug Statements": 1, + "Explicit Type Casts": 6, + "Fatal Aborts & Exceptions": 7, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 4, + "Private / Encapsulated Scopes": 54, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 85, + "Structural Space Indentations": 246, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 3, + "Regex Execution": 1, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -522520,12 +521719,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 17, - "Design Camel Case": 0, - "Design Snake Case": 14, - "Design Pascal Case": 3, + "Core Var Decl": 52, + "Design Camel Case": 26, + "Design Snake Case": 25, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 5, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -522552,40 +521751,45 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 10, - "Direct Downstream (Dependency Blast Radius)": 3, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Direct Upstream (Fragility)": 14, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 3, + "Total Downstream (Absolute Dependency Blast Radius)": 2 }, "9. Extracted Dependencies": [ - "._compat", - ".routing", - "fastapi", - "fastapi._compat", - "fastapi.datastructures", - "fastapi.exceptions", - "pydantic.fields", + "__future__", + "a", + "collections", + "io", + "os", + "path", + "pickle", "re", - "typing", - "warnings" + "sys", + "traceback", + "twisted.python.compat", + "twisted.python.deprecate", + "types", + "weakref" ] }, - "python/fastapi/fastapi/websockets.py": { + "python/twisted/transport.py": { "1. Artifact Identity": { - "Filename": "websockets.py", - "Path": "python/fastapi/fastapi/websockets.py", + "Filename": "transport.py", + "Path": "python/twisted/transport.py", "Language": "Python", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", + "Parent Entity": "Tuple[_DigestMod, bytes, bytes, int], protocol.Protocol, SSHTransportBase", "Doc Umbrella": 0.0, "Folder Dominant Lang": "python", "Lock Tier": 1.5, "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": 3533.89, - "Y": -238.75, - "Z": 3133.15 + "X": -7537.55, + "Y": -69.45, + "Z": 3729.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -522594,65 +521798,836 @@ "File Archetype": "Unclassified", "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 4, - "Coding LOC": 3, - "Documentation LOC": 0, - "Structural Magnitude": 11.56, - "Control Flow Ratio": "0.0%", - "Popularity Rank": 4, + "Total LOC": 2264, + "Coding LOC": 1015, + "Documentation LOC": 886, + "Structural Magnitude": 761.4, + "Control Flow Ratio": "41.5%", + "Popularity Rank": 2, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.598 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "17.63%", + "Error & Exception Exposure": "77.49%", + "Tech Debt Exposure": "10.38%", + "Testing Exposure": "80.0%", + "API Exposure": "2.55%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "99.84%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" + "Documentation Exposure": "11.92%", + "Hardcoded Payload Artifacts": "24.56%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 28.6, + "Lines of Code (LOC)": 121, + "Control Flow Branches": 12, + "Input Parameters": 2, + "Control Flow Ratio": "75.0%", + "Start Line": 864, + "End Line": 984 + }, + { + "Function Name": "getPacket", + "Structural Impact": 20.0, + "Lines of Code (LOC)": 61, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "52.4%", + "Start Line": 662, + "End Line": 722 + }, + { + "Function Name": "dataReceived", + "Structural Impact": 16.1, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 7, + "Input Parameters": 2, + "Control Flow Ratio": "63.6%", + "Start Line": 737, + "End Line": 780 + }, + { + "Function Name": "dispatchMessage", + "Structural Impact": 15.6, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 6, + "Input Parameters": 3, + "Control Flow Ratio": "85.7%", + "Start Line": 782, + "End Line": 812 + }, + { + "Function Name": "_generateECSharedSecret", + "Structural Impact": 13.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "71.4%", + "Start Line": 1394, + "End Line": 1428 + }, + { + "Function Name": "isEncrypted", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1252, + "End Line": 1269 + }, + { + "Function Name": "isVerified", + "Structural Impact": 13.0, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, + "Input Parameters": 2, + "Control Flow Ratio": "60.0%", + "Start Line": 1271, + "End Line": 1288 + }, + { + "Function Name": "sendPacket", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 38, + "Control Flow Branches": 4, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 623, + "End Line": 660 + }, + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 5, + "Input Parameters": 2, + "Control Flow Ratio": "71.4%", + "Start Line": 1478, + "End Line": 1496 + }, + { + "Function Name": "ssh_KEXINIT", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 46, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1805, + "End Line": 1850 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REQUEST_OLD", + "Structural Impact": 10.5, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1596, + "End Line": 1631 + }, + { + "Function Name": "_ssh_KEX_ECDH_REPLY", + "Structural Impact": 10.2, + "Lines of Code (LOC)": 66, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1852, + "End Line": 1917 + }, + { + "Function Name": "_encodeECPublicKey", + "Structural Impact": 10.0, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 1367, + "End Line": 1392 + }, + { + "Function Name": "_generateECPrivateKey", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 1342, + "End Line": 1365 + }, + { + "Function Name": "ssh_SERVICE_ACCEPT", + "Structural Impact": 9.7, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "80.0%", + "Start Line": 2109, + "End Line": 2128 + }, + { + "Function Name": "sendKexInit", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 49, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "80.0%", + "Start Line": 547, + "End Line": 595 + }, + { + "Function Name": "ssh_KEX_DH_GEX_GROUP", + "Structural Impact": 8.1, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1957, + "End Line": 1980 + }, + { + "Function Name": "_continue_KEX_ECDH_REPLY", + "Structural Impact": 7.8, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1875, + "End Line": 1896 + }, + { + "Function Name": "sendDebug", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 2, + "Input Parameters": 4, + "Control Flow Ratio": "66.7%", + "Start Line": 1075, + "End Line": 1089 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 7.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 3, + "Control Flow Ratio": "66.7%", + "Start Line": 1207, + "End Line": 1230 + }, + { + "Function Name": "_continueGEX_REPLY", + "Structural Impact": 6.9, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 2042, + "End Line": 2081 + }, + { + "Function Name": "setKeys", + "Structural Impact": 6.7, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 7, + "Control Flow Ratio": "50.0%", + "Start Line": 145, + "End Line": 165 + }, + { + "Function Name": "_finishEphemeralDH", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 1157, + "End Line": 1185 + }, + { + "Function Name": "_newKeys", + "Structural Impact": 6.6, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "75.0%", + "Start Line": 1232, + "End Line": 1250 + }, + { + "Function Name": "_allowedKeyExchangeMessageType", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 597, + "End Line": 621 + }, + { + "Function Name": "_getHostKeys", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1453, + "End Line": 1476 + }, + { + "Function Name": "_continueKEXDH_REPLY", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 1, + "Input Parameters": 5, + "Control Flow Ratio": "33.3%", + "Start Line": 1982, + "End Line": 2011 + }, + { + "Function Name": "ssh_SERVICE_REQUEST", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1730, + "End Line": 1751 + }, + { + "Function Name": "ssh_NEWKEYS", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "40.0%", + "Start Line": 2091, + "End Line": 2107 + }, + { + "Function Name": "sendExtInfo", + "Structural Impact": 5.9, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 1128, + "End Line": 1141 + }, + { + "Function Name": "_getMAC", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 35, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 187, + "End Line": 221 + }, + { + "Function Name": "connectionLost", + "Structural Impact": 5.8, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", + "Start Line": 523, + "End Line": 535 + }, + { + "Function Name": "verify", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 266, + "End Line": 286 + }, + { + "Function Name": "_getSupportedCiphers", + "Structural Impact": 5.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "50.0%", + "Start Line": 289, + "End Line": 319 + }, + { + "Function Name": "_getCipher", + "Structural Impact": 5.4, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "25.0%", + "Start Line": 167, + "End Line": 185 + }, + { + "Function Name": "_ssh_KEXDH_REPLY", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 37, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1919, + "End Line": 1955 + }, + { + "Function Name": "receiveDebug", + "Structural Impact": 5.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 4, + "Control Flow Ratio": "50.0%", + "Start Line": 1327, + "End Line": 1340 + }, + { + "Function Name": "makeMAC", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "25.0%", + "Start Line": 247, + "End Line": 264 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REPLY", + "Structural Impact": 4.9, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 2013, + "End Line": 2040 + }, + { + "Function Name": "sendDisconnect", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1110, + "End Line": 1126 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 1701, + "End Line": 1715 + }, + { + "Function Name": "ssh_KEX_DH_GEX_REQUEST", + "Structural Impact": 4.7, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1633, + "End Line": 1657 + }, + { + "Function Name": "ssh_EXT_INFO", + "Structural Impact": 4.4, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1041, + "End Line": 1058 + }, + { + "Function Name": "_keySetup", + "Structural Impact": 4.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 3, + "Control Flow Ratio": "50.0%", + "Start Line": 2083, + "End Line": 2089 + }, + { + "Function Name": "setService", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 1060, + "End Line": 1073 + }, + { + "Function Name": "ssh_NEWKEYS", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 1, + "Input Parameters": 2, + "Control Flow Ratio": "33.3%", + "Start Line": 1717, + "End Line": 1728 + }, + { + "Function Name": "_ssh_KEX_ECDH_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1498, + "End Line": 1553 + }, + { + "Function Name": "_ssh_KEXDH_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1555, + "End Line": 1594 + }, + { + "Function Name": "ssh_KEX_DH_GEX_INIT", + "Structural Impact": 3.7, + "Lines of Code (LOC)": 41, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1659, + "End Line": 1699 + }, + { + "Function Name": "_getKey", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 1187, + "End Line": 1205 + }, + { + "Function Name": "__init__", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 5, + "Control Flow Ratio": "0.0%", + "Start Line": 134, + "End Line": 143 + }, + { + "Function Name": "receiveError", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 1299, + "End Line": 1315 + }, + { + "Function Name": "verifyHostKey", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 2142, + "End Line": 2155 + }, + { + "Function Name": "ssh_DISCONNECT", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 986, + "End Line": 1001 + }, + { + "Function Name": "ssh_DEBUG", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1025, + "End Line": 1039 + }, + { + "Function Name": "encrypt", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 223, + "End Line": 233 + }, + { + "Function Name": "decrypt", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 235, + "End Line": 245 + }, + { + "Function Name": "_unsupportedVersionReceived", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 724, + "End Line": 735 + }, + { + "Function Name": "ssh_UNIMPLEMENTED", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1012, + "End Line": 1023 + }, + { + "Function Name": "update", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2170, + "End Line": 2180 + }, + { + "Function Name": "sendIgnore", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1091, + "End Line": 1100 + }, + { + "Function Name": "receiveUnimplemented", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1317, + "End Line": 1325 + }, + { + "Function Name": "requestService", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 2130, + "End Line": 2138 + }, + { + "Function Name": "_startEphemeralDH", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1143, + "End Line": 1155 + }, + { + "Function Name": "_mpFromBytes", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 62 + }, + { + "Function Name": "kexAlg", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 844, + "End Line": 848 + }, + { + "Function Name": "connectionMade", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 537, + "End Line": 545 + }, + { + "Function Name": "getPeer", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 814, + "End Line": 823 + }, + { + "Function Name": "getHost", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 825, + "End Line": 834 + }, + { + "Function Name": "ssh_IGNORE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1003, + "End Line": 1003 + }, + { + "Function Name": "sendUnimplemented", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1102, + "End Line": 1108 + }, + { + "Function Name": "connectionMade", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1797, + "End Line": 1803 + }, + { + "Function Name": "encryptor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2201, + "End Line": 2207 + }, + { + "Function Name": "decryptor", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2209, + "End Line": 2215 + }, + { + "Function Name": "kexAlg", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 837, + "End Line": 841 + }, + { + "Function Name": "loseConnection", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 1290, + "End Line": 1295 + }, + { + "Function Name": "connectionSecure", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 2157, + "End Line": 2162 + } + ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 9, - "Function Parameters": 0, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, - "Type/Safety Bypasses": 0, + "Control Flow Branches": 144, + "Sequential Logic Declarations": 203, + "Function Parameters": 80, + "Function/Method Declarations": 77, + "Class/Entity Declarations": 8, + "Defensive Programming Constructs": 14, + "Type/Safety Bypasses": 10, "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": 57, + "State Mutations / Variable Reassignments": 224, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, + "Structured Documentation Blocks": 84, "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, + "Closures and Anonymous Functions": 3, + "Global State Dependencies": 1, + "Decorators and Annotations": 2, + "Generic Type Abstractions": 21, + "Collection Iterators / Comprehensions": 8, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 3, + "Metaprogramming & Reflection": 3, + "Module Dependencies (Imports)": 25, "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Planned Work (TODOs)": 3, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -522660,18 +522635,18 @@ "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": 6, + "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, + "Private / Encapsulated Scopes": 178, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 943, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -522687,30 +522662,30 @@ "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": 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, + "Vectorized Math & Tensor Operations": 5, + "Core Var Decl": 246, + "Design Camel Case": 80, + "Design Snake Case": 118, + "Design Pascal Case": 3, + "Design Upper Case": 32, + "Design Short Vars": 26, + "Design Long Vars": 15, "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, + "High-Entropy / Obfuscated Logic": 3, "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, + "Commented-Out Executable Logic": 1, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, - "Embedded Credentials & Keys": 0, + "Embedded Credentials & Keys": 1, "Sec Extension Mismatch": 0, "Sec Entropy": 0, "Sec Tainted Injection": 0, @@ -522720,19 +522695,44 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, - "Direct Downstream (Dependency Blast Radius)": 4, - "Total Upstream (Absolute Fragility)": 0, + "Direct Upstream (Fragility)": 26, + "Direct Downstream (Dependency Blast Radius)": 2, + "Total Upstream (Absolute Fragility)": 1, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [ - "starlette.websockets" + "__future__", + "binascii", + "cryptography.exceptions", + "cryptography.hazmat.backends", + "cryptography.hazmat.decrepit.ciphers.algorithms", + "cryptography.hazmat.primitives", + "cryptography.hazmat.primitives.asymmetric", + "cryptography.hazmat.primitives.ciphers", + "cryptography.hazmat.primitives.ciphers.algorithms", + "hashlib", + "hmac", + "is", + "struct", + "twisted", + "twisted.conch.ssh", + "twisted.conch.ssh.common", + "twisted.conch.ssh.factory", + "twisted.conch.ssh.service", + "twisted.internet", + "twisted.logger", + "twisted.python", + "twisted.python.compat", + "twisted.python.failure", + "types", + "typing", + "zlib" ] } } }, "zig/zls/mach": { - "Directory Group Magnitude": 3155.88, + "Directory Group Magnitude": 3149.88, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -522742,14 +522742,14 @@ "Error & Exception Exposure": "32.92%", "Tech Debt Exposure": "36.48%", "Testing Exposure": "41.24%", - "API Exposure": "5.9%", + "API Exposure": "5.83%", "Concurrency Exposure": "1.67%", "State Flux Exposure": "15.97%", "Commented Logic Exposure": "3.69%", "Specification Exposure": "87.5%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.03%", + "Documentation Exposure": "44.6%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -524284,9 +524284,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -8968.67, + "X": -8968.6, "Y": 237.91, - "Z": -1610.37 + "Z": -1610.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -524298,7 +524298,7 @@ "Total LOC": 1021, "Coding LOC": 720, "Documentation LOC": 174, - "Structural Magnitude": 655.3, + "Structural Magnitude": 650.3, "Control Flow Ratio": "59.6%", "Popularity Rank": 4, "Raw Churn Frequency": 0.0, @@ -524311,14 +524311,14 @@ "Error & Exception Exposure": "63.97%", "Tech Debt Exposure": "28.14%", "Testing Exposure": "80.0%", - "API Exposure": "4.41%", + "API Exposure": "4.12%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "12.1%", "Commented Logic Exposure": "5.61%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "86.6%", + "Documentation Exposure": "83.14%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -524884,7 +524884,7 @@ "Type/Safety Bypasses": 33, "High-Risk Execution Commands": 3, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 69, + "Exposed API / Public Exports": 64, "State Mutations / Variable Reassignments": 70, "Commented-out Code (Dead Logic)": 2, "Structured Documentation Blocks": 136, @@ -524997,9 +524997,9 @@ "Identity Proof": "Single Indicator (Ext: .zig)" }, "2. Topological Coordinates": { - "X": -8180.52, - "Y": 256.01, - "Z": -2000.84 + "X": -8180.6, + "Y": 256.0, + "Z": -2000.79 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -525011,7 +525011,7 @@ "Total LOC": 224, "Coding LOC": 115, "Documentation LOC": 84, - "Structural Magnitude": 124.4, + "Structural Magnitude": 123.4, "Control Flow Ratio": "54.1%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -525024,7 +525024,7 @@ "Error & Exception Exposure": "26.11%", "Tech Debt Exposure": "100.0%", "Testing Exposure": "2.7%", - "API Exposure": "5.34%", + "API Exposure": "5.07%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", @@ -525247,7 +525247,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 16, "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 57, @@ -538955,9 +538955,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4889.55, + "X": -4883.64, "Y": 4.45, - "Z": -7341.52 + "Z": -7332.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539213,9 +539213,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4564.75, + "X": -4558.84, "Y": 56.66, - "Z": -7317.31 + "Z": -7308.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539661,9 +539661,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5278.31, + "X": -5272.4, "Y": -8.05, - "Z": -7352.75 + "Z": -7343.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -539839,9 +539839,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4322.86, + "X": -4316.95, "Y": 121.9, - "Z": -6676.13 + "Z": -6667.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540067,9 +540067,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4380.42, + "X": -4374.51, "Y": 48.05, - "Z": -7529.42 + "Z": -7520.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540275,9 +540275,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5112.31, + "X": -5106.4, "Y": -0.05, - "Z": -7028.19 + "Z": -7019.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540493,9 +540493,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4860.34, + "X": -4854.43, "Y": 100.67, - "Z": -6801.74 + "Z": -6792.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540741,9 +540741,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4469.68, + "X": -4463.77, "Y": 187.15, - "Z": -6213.14 + "Z": -6204.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -540929,9 +540929,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4072.93, + "X": -4067.02, "Y": 196.82, - "Z": -6678.31 + "Z": -6669.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541147,9 +541147,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -5191.47, + "X": -5185.56, "Y": 53.47, - "Z": -6713.02 + "Z": -6704.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541405,9 +541405,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4671.56, + "X": -4665.65, "Y": 123.45, - "Z": -6895.8 + "Z": -6886.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -541963,9 +541963,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4823.1, + "X": -4817.19, "Y": 93.56, - "Z": -6398.42 + "Z": -6389.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -542161,9 +542161,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": -4192.02, + "X": -4186.11, "Y": 86.28, - "Z": -7181.89 + "Z": -7172.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564389,7 +564389,7 @@ } }, "embedded_python/meow_turtle": { - "Directory Group Magnitude": 2283.92, + "Directory Group Magnitude": 2265.92, "File Count": 14, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -564399,14 +564399,14 @@ "Error & Exception Exposure": "69.44%", "Tech Debt Exposure": "26.75%", "Testing Exposure": "30.26%", - "API Exposure": "5.33%", + "API Exposure": "4.79%", "Concurrency Exposure": "10.84%", "State Flux Exposure": "79.28%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "7.14%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "21.06%", + "Documentation Exposure": "16.61%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -564423,9 +564423,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7901.5, + "X": -7901.93, "Y": -39.7, - "Z": -4142.36 + "Z": -4142.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564437,7 +564437,7 @@ "Total LOC": 169, "Coding LOC": 82, "Documentation LOC": 65, - "Structural Magnitude": 67.34, + "Structural Magnitude": 64.34, "Control Flow Ratio": "37.0%", "Popularity Rank": 5, "Raw Churn Frequency": 0.0, @@ -564450,14 +564450,14 @@ "Error & Exception Exposure": "54.39%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.61%", - "API Exposure": "6.68%", + "API Exposure": "5.49%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "50.98%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "43.06%", + "Documentation Exposure": "18.91%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -564573,7 +564573,7 @@ "Type/Safety Bypasses": 4, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 3, - "Exposed API / Public Exports": 13, + "Exposed API / Public Exports": 10, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 13, @@ -564937,9 +564937,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7997.31, - "Y": 75.93, - "Z": -4550.98 + "X": -7997.48, + "Y": 75.91, + "Z": -4550.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -564951,7 +564951,7 @@ "Total LOC": 253, "Coding LOC": 132, "Documentation LOC": 82, - "Structural Magnitude": 103.04, + "Structural Magnitude": 101.04, "Control Flow Ratio": "49.2%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -564964,14 +564964,14 @@ "Error & Exception Exposure": "59.17%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "6.24%", + "API Exposure": "5.26%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "86.32%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.59%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -565057,7 +565057,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 9, + "Exposed API / Public Exports": 7, "State Mutations / Variable Reassignments": 14, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 8, @@ -565412,9 +565412,9 @@ "Identity Proof": "Ecosystem Consensus Lock (72% Local Dominance)" }, "2. Topological Coordinates": { - "X": -9009.07, - "Y": 33.15, - "Z": -4425.36 + "X": -9008.77, + "Y": 33.16, + "Z": -4425.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -565426,7 +565426,7 @@ "Total LOC": 238, "Coding LOC": 143, "Documentation LOC": 65, - "Structural Magnitude": 140.46, + "Structural Magnitude": 136.46, "Control Flow Ratio": "42.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -565439,14 +565439,14 @@ "Error & Exception Exposure": "88.11%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.49%", - "API Exposure": "6.74%", + "API Exposure": "4.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -565522,7 +565522,7 @@ "Type/Safety Bypasses": 14, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 10, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 58, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 8, @@ -566087,9 +566087,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8432.09, - "Y": 26.08, - "Z": -4860.77 + "X": -8432.1, + "Y": 26.06, + "Z": -4860.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566101,7 +566101,7 @@ "Total LOC": 535, "Coding LOC": 314, "Documentation LOC": 142, - "Structural Magnitude": 306.78, + "Structural Magnitude": 302.78, "Control Flow Ratio": "72.3%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -566114,14 +566114,14 @@ "Error & Exception Exposure": "63.41%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "4.14%", + "API Exposure": "3.11%", "Concurrency Exposure": "67.13%", "State Flux Exposure": "76.26%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.35%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -566237,7 +566237,7 @@ "Type/Safety Bypasses": 7, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 11, - "Exposed API / Public Exports": 15, + "Exposed API / Public Exports": 11, "State Mutations / Variable Reassignments": 28, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 12, @@ -566726,9 +566726,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8730.48, - "Y": 58.12, - "Z": -4928.16 + "X": -8730.42, + "Y": 58.11, + "Z": -4928.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -566740,7 +566740,7 @@ "Total LOC": 121, "Coding LOC": 57, "Documentation LOC": 49, - "Structural Magnitude": 81.94, + "Structural Magnitude": 80.94, "Control Flow Ratio": "57.7%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -566753,14 +566753,14 @@ "Error & Exception Exposure": "94.54%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.74%", - "API Exposure": "5.51%", + "API Exposure": "4.86%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "20.22%", + "Documentation Exposure": "13.1%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -566826,7 +566826,7 @@ "Type/Safety Bypasses": 2, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 7, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 32, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 7, @@ -567520,9 +567520,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8729.64, + "X": -8729.58, "Y": -68.26, - "Z": -4108.82 + "Z": -4108.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567534,7 +567534,7 @@ "Total LOC": 509, "Coding LOC": 294, "Documentation LOC": 142, - "Structural Magnitude": 345.08, + "Structural Magnitude": 343.08, "Control Flow Ratio": "58.5%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -567547,14 +567547,14 @@ "Error & Exception Exposure": "92.62%", "Tech Debt Exposure": "13.95%", "Testing Exposure": "80.0%", - "API Exposure": "4.26%", + "API Exposure": "3.81%", "Concurrency Exposure": "68.11%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.65%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -567740,7 +567740,7 @@ "Type/Safety Bypasses": 18, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 12, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 112, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 23, @@ -567855,9 +567855,9 @@ "Identity Proof": "Single Indicator (Shebang)" }, "2. Topological Coordinates": { - "X": -8591.57, - "Y": -36.77, - "Z": -3760.99 + "X": -8591.51, + "Y": -36.74, + "Z": -3761.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -567869,7 +567869,7 @@ "Total LOC": 118, "Coding LOC": 53, "Documentation LOC": 48, - "Structural Magnitude": 84.46, + "Structural Magnitude": 82.46, "Control Flow Ratio": "51.9%", "Popularity Rank": 1, "Raw Churn Frequency": 0.0, @@ -567882,14 +567882,14 @@ "Error & Exception Exposure": "95.98%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.77%", - "API Exposure": "5.66%", + "API Exposure": "4.44%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.19%", + "Documentation Exposure": "13.69%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -567955,7 +567955,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 5, - "Exposed API / Public Exports": 8, + "Exposed API / Public Exports": 6, "State Mutations / Variable Reassignments": 33, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 7, @@ -577194,9 +577194,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4685.9, + "X": -4680.9, "Y": -38.82, - "Z": -7971.87 + "Z": -7963.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -577687,9 +577687,9 @@ "Identity Proof": "Sibling Anchor (C++)" }, "2. Topological Coordinates": { - "X": -4206.87, + "X": -4201.88, "Y": 30.72, - "Z": -8278.31 + "Z": -8269.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -577847,9 +577847,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -5238.44, + "X": -5233.44, "Y": -77.73, - "Z": -8259.81 + "Z": -8251.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578060,9 +578060,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4670.22, + "X": -4665.22, "Y": 13.64, - "Z": -8726.75 + "Z": -8718.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578335,9 +578335,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4387.78, + "X": -4382.78, "Y": -140.05, - "Z": -7901.07 + "Z": -7892.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578543,9 +578543,9 @@ "Identity Proof": "Single Indicator (Ext: .cpp)" }, "2. Topological Coordinates": { - "X": -4952.42, + "X": -4947.43, "Y": -172.93, - "Z": -8002.45 + "Z": -7993.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -578841,9 +578841,9 @@ "Identity Proof": "Ecosystem Consensus Lock (81% Local Dominance)" }, "2. Topological Coordinates": { - "X": -4800.82, + "X": -4795.82, "Y": -222.35, - "Z": -7464.74 + "Z": -7456.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -587701,7 +587701,7 @@ } }, "typescript/assemblyscript": { - "Directory Group Magnitude": 1974.82, + "Directory Group Magnitude": 1974.62, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "80.0%", @@ -587719,7 +587719,7 @@ "Specification Exposure": "60.0%", "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.06%", + "Documentation Exposure": "22.97%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -588051,9 +588051,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4895.15, + "X": 4895.14, "Y": 292.43, - "Z": -9843.7 + "Z": -9843.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -588065,7 +588065,7 @@ "Total LOC": 2420, "Coding LOC": 1756, "Documentation LOC": 439, - "Structural Magnitude": 119.74, + "Structural Magnitude": 119.54, "Control Flow Ratio": "21.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -588078,14 +588078,14 @@ "Error & Exception Exposure": "62.54%", "Tech Debt Exposure": "32.57%", "Testing Exposure": "80.0%", - "API Exposure": "14.62%", + "API Exposure": "14.61%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "95.25%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "88.53%", + "Documentation Exposure": "88.06%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -589971,7 +589971,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 21, - "Exposed API / Public Exports": 319, + "Exposed API / Public Exports": 317, "State Mutations / Variable Reassignments": 241, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 413, @@ -610389,7 +610389,7 @@ } }, "typescript/vscode": { - "Directory Group Magnitude": 1472.92, + "Directory Group Magnitude": 1472.32, "File Count": 11, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "81.8%", @@ -610400,14 +610400,14 @@ "Error & Exception Exposure": "62.42%", "Tech Debt Exposure": "46.95%", "Testing Exposure": "58.39%", - "API Exposure": "4.25%", + "API Exposure": "4.21%", "Concurrency Exposure": "39.38%", "State Flux Exposure": "47.13%", "Commented Logic Exposure": "1.55%", "Specification Exposure": "72.73%", "Instability Exposure": "40.91%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "24.23%", + "Documentation Exposure": "23.42%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -622001,9 +622001,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": -7618.06, + "X": -7618.04, "Y": 207.62, - "Z": 2838.24 + "Z": 2838.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -622015,7 +622015,7 @@ "Total LOC": 975, "Coding LOC": 637, "Documentation LOC": 181, - "Structural Magnitude": 75.64, + "Structural Magnitude": 75.04, "Control Flow Ratio": "39.1%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -622028,14 +622028,14 @@ "Error & Exception Exposure": "91.22%", "Tech Debt Exposure": "97.24%", "Testing Exposure": "80.0%", - "API Exposure": "8.12%", + "API Exposure": "7.62%", "Concurrency Exposure": "87.95%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "47.29%", + "Documentation Exposure": "38.37%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -623051,7 +623051,7 @@ "Type/Safety Bypasses": 15, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 56, + "Exposed API / Public Exports": 50, "State Mutations / Variable Reassignments": 320, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 40, @@ -630060,9 +630060,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4956.43, + "X": -4949.75, "Y": 11.21, - "Z": -5611.94 + "Z": -5603.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630238,9 +630238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3538.86, + "X": -3532.19, "Y": 150.86, - "Z": -6135.31 + "Z": -6126.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630416,9 +630416,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4285.95, + "X": -4279.27, "Y": -67.81, - "Z": -4874.77 + "Z": -4865.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630604,9 +630604,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3851.65, + "X": -3844.98, "Y": 152.92, - "Z": -5933.89 + "Z": -5925.1 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630782,9 +630782,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4720.51, + "X": -4713.84, "Y": -28.59, - "Z": -5109.97 + "Z": -5101.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -630980,9 +630980,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4394.07, + "X": -4387.39, "Y": -40.58, - "Z": -5236.51 + "Z": -5227.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631238,9 +631238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4133.07, + "X": -4126.39, "Y": 60.19, - "Z": -5317.56 + "Z": -5308.76 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631436,9 +631436,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3589.43, + "X": -3582.76, "Y": -102.43, - "Z": -5102.82 + "Z": -5094.02 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631614,9 +631614,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3289.8, + "X": -3283.12, "Y": -27.2, - "Z": -5439.51 + "Z": -5430.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631782,9 +631782,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4729.58, + "X": -4722.9, "Y": 167.57, - "Z": -5962.42 + "Z": -5953.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -631960,9 +631960,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3940.04, + "X": -3933.36, "Y": 253.61, - "Z": -6288.13 + "Z": -6279.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632128,9 +632128,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4605.45, + "X": -4598.77, "Y": 25.64, - "Z": -5424.97 + "Z": -5416.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632406,9 +632406,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4538.79, + "X": -4532.11, "Y": -117.75, - "Z": -5014.69 + "Z": -5005.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632584,9 +632584,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4098.16, + "X": -4091.48, "Y": 154.95, - "Z": -6009.59 + "Z": -6000.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632804,9 +632804,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4868.41, + "X": -4861.73, "Y": -91.87, - "Z": -5053.21 + "Z": -5044.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -632972,9 +632972,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3883.02, + "X": -3876.35, "Y": -45.39, - "Z": -5206.64 + "Z": -5197.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633210,9 +633210,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4192.1, + "X": -4185.42, "Y": -113.36, - "Z": -4791.61 + "Z": -4782.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633388,9 +633388,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -4797.77, + "X": -4791.09, "Y": 68.97, - "Z": -5658.71 + "Z": -5649.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633586,9 +633586,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3579.06, + "X": -3572.38, "Y": -15.87, - "Z": -5239.55 + "Z": -5230.75 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633754,9 +633754,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4271.81, + "X": -4265.13, "Y": 227.2, - "Z": -6269.65 + "Z": -6260.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -633925,9 +633925,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3422.27, + "X": -3415.59, "Y": 105.78, - "Z": -5596.95 + "Z": -5588.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634103,9 +634103,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3908.5, + "X": -3901.83, "Y": -100.54, - "Z": -4685.14 + "Z": -4676.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634291,9 +634291,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -3719.9, + "X": -3713.22, "Y": 101.34, - "Z": -5636.26 + "Z": -5627.46 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -634501,9 +634501,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -4430.39, + "X": -4423.71, "Y": 164.03, - "Z": -6031.73 + "Z": -6022.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636065,55 +636065,1957 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 68, - "Sequential Logic Declarations": 84, - "Function Parameters": 16, - "Function/Method Declarations": 7, + "Control Flow Branches": 68, + "Sequential Logic Declarations": 84, + "Function Parameters": 16, + "Function/Method Declarations": 7, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 17, + "Type/Safety Bypasses": 15, + "High-Risk Execution Commands": 5, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 56, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 12, + "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": 2, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 1, + "Authorship Metadata": 0, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 8, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, + "Pointer Arithmetic & Addressing": 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": 12, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 4, + "Immutable Data Declarations": 1, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 1, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 332, + "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": 42, + "Design Camel Case": 0, + "Design Snake Case": 39, + "Design Pascal Case": 2, + "Design Upper Case": 0, + "Design Short Vars": 1, + "Design Long Vars": 0, + "Duplicate Logic": 0, + "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": 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)": 11, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 6, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "ArraySliceRange", + "BinOpKind", + "Constant", + "Expr", + "FixedArraySize", + "Function", + "GlobalStmt", + "Stmt", + "Type", + "UnaryOpKind", + "crate::ast::\n AST" + ] + } + } + }, + "lua/darwin-xnu": { + "Directory Group Magnitude": 1317.6, + "File Count": 7, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "71.67%", + "Error & Exception Exposure": "96.73%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "35.75%", + "API Exposure": "0.64%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.99%", + "Commented Logic Exposure": "1.22%", + "Specification Exposure": "42.86%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "10.56%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "lua/darwin-xnu/benchmark.lua": { + "1. Artifact Identity": { + "Filename": "benchmark.lua", + "Path": "lua/darwin-xnu/benchmark.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1550.32, + "Y": 252.97, + "Z": -8848.69 + }, + "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": 108, + "Coding LOC": 94, + "Documentation LOC": 3, + "Structural Magnitude": 152.08, + "Control Flow Ratio": "50.7%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.112 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "72.34%", + "Error & Exception Exposure": "99.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.61%", + "API Exposure": "0.16%", + "Concurrency Exposure": "0.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": "13.9%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 17.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 15, + "Input Parameters": 0, + "Control Flow Ratio": "60.0%", + "Start Line": 82, + "End Line": 105 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "70.6%", + "Start Line": 62, + "End Line": 80 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.9, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "83.3%", + "Start Line": 15, + "End Line": 43 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "11.1%", + "Start Line": 1, + "End Line": 107 + }, + { + "Function Name": "QueueTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 55, + "End Line": 60 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 34, + "Sequential Logic Declarations": 33, + "Function Parameters": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 5, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 102, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 3, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 5, + "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": 2, + "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": 17, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 70, + "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": 44, + "Design Camel Case": 1, + "Design Snake Case": 43, + "Design Pascal Case": 0, + "Design Upper Case": 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": 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)": 3, + "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)": 5, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "perfdata", + "strict", + "sysctl" + ] + }, + "lua/darwin-xnu/bridgetime.lua": { + "1. Artifact Identity": { + "Filename": "bridgetime.lua", + "Path": "lua/darwin-xnu/bridgetime.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1286.35, + "Y": 98.48, + "Z": -7795.32 + }, + "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": 143, + "Coding LOC": 110, + "Documentation LOC": 5, + "Structural Magnitude": 147.6, + "Control Flow Ratio": "42.3%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.023 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "74.86%", + "Error & Exception Exposure": "97.78%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "8.54%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 15.2, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 9, + "Input Parameters": 1, + "Control Flow Ratio": "64.3%", + "Start Line": 81, + "End Line": 102 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.6, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 40, + "End Line": 57 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 59, + "End Line": 72 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 104, + "End Line": 117 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.3, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 130, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 13, + "End Line": 21 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 119, + "End Line": 128 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 79 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 27 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 33 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 38 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 30, + "Sequential Logic Declarations": 41, + "Function Parameters": 12, + "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": 76, + "Commented-out Code (Dead Logic)": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 0, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 12, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 3, + "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": 18, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 3, + "Structural Tab Indentations": 82, + "Structural Space Indentations": 0, + "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": 34, + "Design Camel Case": 0, + "Design Snake Case": 34, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "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": [] + }, + "lua/darwin-xnu/fault_throughput.lua": { + "1. Artifact Identity": { + "Filename": "fault_throughput.lua", + "Path": "lua/darwin-xnu/fault_throughput.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -2036.34, + "Y": 273.31, + "Z": -8398.05 + }, + "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": 104, + "Coding LOC": 90, + "Documentation LOC": 3, + "Structural Magnitude": 144.2, + "Control Flow Ratio": "51.5%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.128 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "72.82%", + "Error & Exception Exposure": "98.98%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.62%", + "API Exposure": "0.18%", + "Concurrency Exposure": "0.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": "13.98%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 14.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 13, + "Input Parameters": 0, + "Control Flow Ratio": "65.0%", + "Start Line": 84, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.9, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 12, + "Input Parameters": 0, + "Control Flow Ratio": "70.6%", + "Start Line": 64, + "End Line": 82 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.3, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "85.7%", + "Start Line": 16, + "End Line": 43 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "14.3%", + "Start Line": 1, + "End Line": 103 + }, + { + "Function Name": "QueueTest", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 57, + "End Line": 62 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 34, + "Sequential Logic Declarations": 32, + "Function Parameters": 2, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 94, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 4, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 2, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 6, + "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": 2, + "Fatal Aborts & Exceptions": 4, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 16, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 64, + "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": 40, + "Design Camel Case": 1, + "Design Snake Case": 39, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "Design Short Vars": 4, + "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)": 4, + "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)": 6, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 2, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "os", + "perfdata", + "strict", + "sysctl" + ] + }, + "lua/darwin-xnu/kqtrace.lua": { + "1. Artifact Identity": { + "Filename": "kqtrace.lua", + "Path": "lua/darwin-xnu/kqtrace.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1886.14, + "Y": 174.48, + "Z": -8161.22 + }, + "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": 336, + "Coding LOC": 299, + "Documentation LOC": 2, + "Structural Magnitude": 353.18, + "Control Flow Ratio": "55.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.585 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "96.57%", + "Error & Exception Exposure": "89.51%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "4.12%", + "Concurrency Exposure": "0.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": "46.04%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "kevent_filter_string", + "Structural Impact": 108.6, + "Lines of Code (LOC)": 79, + "Control Flow Branches": 73, + "Input Parameters": 1, + "Control Flow Ratio": "65.2%", + "Start Line": 130, + "End Line": 208 + }, + { + "Function Name": "qos_string", + "Structural Impact": 26.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "60.7%", + "Start Line": 40, + "End Line": 60 + }, + { + "Function Name": "event_prefix_string", + "Structural Impact": 20.3, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 10, + "Input Parameters": 2, + "Control Flow Ratio": "43.5%", + "Start Line": 14, + "End Line": 38 + }, + { + "Function Name": "state_string", + "Structural Impact": 16.3, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 2, + "Control Flow Ratio": "53.3%", + "Start Line": 62, + "End Line": 75 + }, + { + "Function Name": "processing_begin", + "Structural Impact": 10.7, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "46.2%", + "Start Line": 212, + "End Line": 228 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "processing_end", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "37.5%", + "Start Line": 234, + "End Line": 244 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.8, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 261, + "End Line": 272 + }, + { + "Function Name": "thread_adjust", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 290, + "End Line": 305 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 93, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 335 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 274, + "End Line": 280 + }, + { + "Function Name": "thread_request", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 282, + "End Line": 288 + }, + { + "Function Name": "kevent_register", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 311, + "End Line": 318 + }, + { + "Function Name": "kevent_process", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 324, + "End Line": 331 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 250, + "End Line": 254 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 256, + "End Line": 259 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 123, + "Sequential Logic Declarations": 100, + "Function Parameters": 20, + "Function/Method Declarations": 10, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 6, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 10, + "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": 10, + "Global State Dependencies": 0, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 6, + "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": 13, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 10, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 244, + "Structural Space Indentations": 0, + "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": 47, + "Design Camel Case": 0, + "Design Snake Case": 44, + "Design Pascal Case": 3, + "Design Upper Case": 0, + "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, + "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": [] + }, + "lua/darwin-xnu/ktruss.lua": { + "1. Artifact Identity": { + "Filename": "ktruss.lua", + "Path": "lua/darwin-xnu/ktruss.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1743.84, + "Y": 141.19, + "Z": -7753.88 + }, + "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": 29, + "Coding LOC": 22, + "Documentation LOC": 0, + "Structural Magnitude": 28.94, + "Control Flow Ratio": "50.0%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.66 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "41.1%", + "Error & Exception Exposure": "94.85%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.54%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "99.93%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 2, + "Control Flow Ratio": "50.0%", + "Start Line": 15, + "End Line": 22 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 4, + "Input Parameters": 0, + "Control Flow Ratio": "80.0%", + "Start Line": 5, + "End Line": 11 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 3, + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 25, + "End Line": 28 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 28 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 9, + "Sequential Logic Declarations": 9, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 2, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 12, + "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": 6, + "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": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 2, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 0, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 4, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 10, + "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": 4, + "Design Camel Case": 0, + "Design Snake Case": 4, + "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)": 1, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "ktrace" + ] + }, + "lua/darwin-xnu/perf_madvise.lua": { + "1. Artifact Identity": { + "Filename": "perf_madvise.lua", + "Path": "lua/darwin-xnu/perf_madvise.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -1153.24, + "Y": 125.77, + "Z": -8420.77 + }, + "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": 70, + "Coding LOC": 62, + "Documentation LOC": 0, + "Structural Magnitude": 86.54, + "Control Flow Ratio": "38.2%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.96 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "58.56%", + "Error & Exception Exposure": "99.14%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.49%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.7, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 10, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 54, + "End Line": 66 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 26, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 16, + "End Line": 41 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 50, + "End Line": 52 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 69 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 13, + "Sequential Logic Declarations": 21, + "Function Parameters": 1, + "Function/Method Declarations": 0, + "Class/Entity Declarations": 0, + "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": 64, + "Commented-out Code (Dead Logic)": 0, + "Structured Documentation Blocks": 1, + "Unit Test Assertions": 1, + "Asynchronous/Concurrent Execution": 0, + "UI / View Layer Components": 0, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 2, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 1, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 4, + "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": 1, + "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": 12, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 42, + "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": 31, + "Design Camel Case": 2, + "Design Snake Case": 29, + "Design Pascal Case": 0, + "Design Upper Case": 0, + "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, + "Hyperlinked Literature References": 0, + "High-Entropy / Obfuscated Logic": 0, + "Safety & Constraint Bypasses": 0, + "External Network & I/O Hooks": 0, + "Dynamic Code Execution (Eval/Exec)": 1, + "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)": 4, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 1, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [ + "benchrun", + "csv", + "perfdata", + "strict" + ] + }, + "lua/darwin-xnu/wqtrace.lua": { + "1. Artifact Identity": { + "Filename": "wqtrace.lua", + "Path": "lua/darwin-xnu/wqtrace.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Tabs", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 0, + "Identity Proof": "Absolute Consensus (Ext + Shebang)" + }, + "2. Topological Coordinates": { + "X": -1621.99, + "Y": 214.14, + "Z": -8454.77 + }, + "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": 310, + "Coding LOC": 273, + "Documentation LOC": 3, + "Structural Magnitude": 405.06, + "Control Flow Ratio": "53.5%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 1.193 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "85.48%", + "Error & Exception Exposure": "97.55%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "80.0%", + "API Exposure": "0.0%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "100.0%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "0.0%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Anonymous_Block", + "Structural Impact": 26.7, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "56.7%", + "Start Line": 45, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 26.5, + "Lines of Code (LOC)": 21, + "Control Flow Branches": 17, + "Input Parameters": 1, + "Control Flow Ratio": "60.7%", + "Start Line": 70, + "End Line": 90 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 22.7, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 14, + "Input Parameters": 1, + "Control Flow Ratio": "60.9%", + "Start Line": 14, + "End Line": 43 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.4, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 157, + "End Line": 170 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.4, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "61.5%", + "Start Line": 284, + "End Line": 296 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 13.3, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 8, + "Input Parameters": 1, + "Control Flow Ratio": "72.7%", + "Start Line": 144, + "End Line": 155 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 11.0, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "46.2%", + "Start Line": 196, + "End Line": 217 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 10.4, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 6, + "Input Parameters": 1, + "Control Flow Ratio": "66.7%", + "Start Line": 237, + "End Line": 247 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "57.1%", + "Start Line": 3, + "End Line": 10 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 9.0, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 5, + "Input Parameters": 1, + "Control Flow Ratio": "62.5%", + "Start Line": 298, + "End Line": 307 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 133, + "End Line": 142 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 172, + "End Line": 182 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 7.5, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 4, + "Input Parameters": 1, + "Control Flow Ratio": "57.1%", + "Start Line": 109, + "End Line": 116 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 225, + "End Line": 235 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.2, + "Lines of Code (LOC)": 10, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "42.9%", + "Start Line": 253, + "End Line": 262 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 118, + "End Line": 125 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 1, + "Control Flow Ratio": "50.0%", + "Start Line": 184, + "End Line": 191 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 92, + "End Line": 97 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 127, + "End Line": 131 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 3.0, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 1, + "Input Parameters": 1, + "Control Flow Ratio": "33.3%", + "Start Line": 264, + "End Line": 267 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 105 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 36, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 309 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 219, + "End Line": 223 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 249, + "End Line": 251 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 269, + "End Line": 272 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 274, + "End Line": 277 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 279, + "End Line": 282 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 121, + "Sequential Logic Declarations": 105, + "Function Parameters": 26, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 17, - "Type/Safety Bypasses": 15, - "High-Risk Execution Commands": 5, + "Defensive Programming Constructs": 0, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 56, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 174, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 12, + "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": 26, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, + "Scientific & Mathematical Operations": 11, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 1, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 8, + "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": 8, + "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": 12, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 4, - "Immutable Data Declarations": 1, + "Bitwise Operations": 24, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 34, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 332, + "Structural Tab Indentations": 215, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -636130,15 +638032,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 42, + "Core Var Decl": 54, "Design Camel Case": 0, - "Design Snake Case": 39, - "Design Pascal Case": 2, + "Design Snake Case": 54, + "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": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -636162,29 +638064,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 11, + "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 6, + "Total Upstream (Absolute Fragility)": 0, "Total Downstream (Absolute Dependency Blast Radius)": 0 }, - "9. Extracted Dependencies": [ - "ArraySliceRange", - "BinOpKind", - "Constant", - "Expr", - "FixedArraySize", - "Function", - "GlobalStmt", - "Stmt", - "Type", - "UnaryOpKind", - "crate::ast::\n AST" - ] + "9. Extracted Dependencies": [] } } }, "lua/pandoc": { - "Directory Group Magnitude": 1344.84, + "Directory Group Magnitude": 1308.84, "File Count": 26, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "92.3%", @@ -636195,14 +638085,14 @@ "Error & Exception Exposure": "50.07%", "Tech Debt Exposure": "27.87%", "Testing Exposure": "5.19%", - "API Exposure": "1.78%", + "API Exposure": "1.65%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "72.81%", "Commented Logic Exposure": "1.12%", "Specification Exposure": "50.0%", "Instability Exposure": "46.15%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.26%", + "Documentation Exposure": "9.33%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -636219,9 +638109,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -3560.99, + "X": -3561.22, "Y": -92.25, - "Z": -3944.38 + "Z": -3943.9 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -636376,9 +638266,9 @@ "Identity Proof": "Metadata Anchor (COPYRIGHT)" }, "2. Topological Coordinates": { - "X": -5299.07, + "X": -5297.59, "Y": -83.52, - "Z": -4529.66 + "Z": -4528.79 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -636533,9 +638423,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4930.03, - "Y": -133.7, - "Z": -4824.91 + "X": -4928.83, + "Y": -133.71, + "Z": -4823.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636721,9 +638611,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5151.96, + "X": -5150.44, "Y": -75.82, - "Z": -4172.83 + "Z": -4172.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -636889,9 +638779,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4447.7, - "Y": -83.89, - "Z": -4726.55 + "X": -4446.95, + "Y": -83.91, + "Z": -4725.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637057,9 +638947,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4782.6, - "Y": -82.78, - "Z": -3579.1 + "X": -4781.45, + "Y": -82.76, + "Z": -3579.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637225,9 +639115,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4875.01, + "X": -4873.5, "Y": -114.56, - "Z": -4332.2 + "Z": -4331.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637443,9 +639333,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4630.01, - "Y": -114.75, - "Z": -3720.97 + "X": -4628.72, + "Y": -114.73, + "Z": -3720.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637681,9 +639571,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3679.38, - "Y": -92.75, - "Z": -4249.3 + "X": -3679.6, + "Y": -92.76, + "Z": -4248.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -637859,9 +639749,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4147.27, - "Y": -50.21, - "Z": -4889.55 + "X": -4147.0, + "Y": -50.23, + "Z": -4888.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638027,9 +639917,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4126.49, - "Y": -149.59, - "Z": -3744.41 + "X": -4126.38, + "Y": -149.57, + "Z": -3744.51 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638607,9 +640497,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -5147.74, - "Y": -161.67, - "Z": -3657.93 + "X": -5146.38, + "Y": -161.66, + "Z": -3657.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638785,9 +640675,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4226.27, - "Y": -55.46, - "Z": -5134.4 + "X": -4225.83, + "Y": -55.48, + "Z": -5132.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -638953,9 +640843,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4452.16, - "Y": -160.12, - "Z": -3202.8 + "X": -4451.48, + "Y": -160.1, + "Z": -3203.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639110,9 +641000,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3809.34, + "X": -3809.52, "Y": -88.5, - "Z": -3732.16 + "Z": -3731.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -639136,2001 +641026,12 @@ "Cognitive Load Exposure": "30.15%", "Error & Exception Exposure": "70.21%", "Tech Debt Exposure": "73.11%", - "Testing Exposure": "2.64%", - "API Exposure": "5.59%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "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": "Inlines", - "Structural Impact": 17.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 11, - "Input Parameters": 1, - "Control Flow Ratio": "68.8%", - "Start Line": 6, - "End Line": 19 - }, - { - "Function Name": "isWorldAfterSpace", - "Structural Impact": 8.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "66.7%", - "Start Line": 1, - "End Line": 4 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, - "Sequential Logic Declarations": 7, - "Function Parameters": 2, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 1, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 6, - "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": 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, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 11, - "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": 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": 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": [] - }, - "lua/pandoc/manfilter.lua": { - "1. Artifact Identity": { - "Filename": "manfilter.lua", - "Path": "lua/pandoc/manfilter.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4153.19, - "Y": -87.86, - "Z": -3559.73 - }, - "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": 45, - "Coding LOC": 33, - "Documentation LOC": 6, - "Structural Magnitude": 27.56, - "Control Flow Ratio": "9.5%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.495 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "26.5%", - "Error & Exception Exposure": "76.85%", - "Tech Debt Exposure": "99.91%", - "Testing Exposure": "2.49%", - "API Exposure": "4.68%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "98.2%", - "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": "Header", - "Structural Impact": 4.6, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "28.6%", - "Start Line": 5, - "End Line": 12 - }, - { - "Function Name": "Table", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 33 - }, - { - "Function Name": "Link", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 37, - "End Line": 39 - }, - { - "Function Name": "Note", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 44 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 44 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 22 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 26 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 19, - "Function Parameters": 7, - "Function/Method Declarations": 4, - "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": 8, - "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": 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": 3, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, - "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": 4, - "Design Camel Case": 0, - "Design Snake Case": 3, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "Design Short Vars": 0, - "Design Long Vars": 0, - "Duplicate Logic": 0, - "Orphaned Logic": 4, - "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": [ - "text" - ] - }, - "lua/pandoc/markdown-reader.lua": { - "1. Artifact Identity": { - "Filename": "markdown-reader.lua", - "Path": "lua/pandoc/markdown-reader.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -3765.86, - "Y": -126.74, - "Z": -3689.93 - }, - "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": 13, - "Coding LOC": 12, - "Documentation LOC": 0, - "Structural Magnitude": 13.54, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.3 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "14.19%", - "Error & Exception Exposure": "73.66%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.39%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 3, - "End Line": 10 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 12 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 6, - "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": 6, - "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)": 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": 1, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, - "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": 1, - "Design Pascal Case": 1, - "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": [] - }, - "lua/pandoc/math.lua": { - "1. Artifact Identity": { - "Filename": "math.lua", - "Path": "lua/pandoc/math.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -3803.79, - "Y": -114.75, - "Z": -4606.13 - }, - "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": 11, - "Coding LOC": 10, - "Documentation LOC": 0, - "Structural Magnitude": 11.9, - "Control Flow Ratio": "33.3%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.28 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "13.24%", - "Error & Exception Exposure": "73.66%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.37%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "91.68%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "40.0%", - "Start Line": 3, - "End Line": 8 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 10 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "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": 6, - "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)": 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": 8, - "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": 0, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "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, - "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)": 23 - }, - "9. Extracted Dependencies": [] - }, - "lua/pandoc/pandoc-format.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-format.lua", - "Path": "lua/pandoc/pandoc-format.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4968.1, - "Y": -64.92, - "Z": -4637.9 - }, - "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": 53, - "Coding LOC": 47, - "Documentation LOC": 0, - "Structural Magnitude": 25.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": 0.0 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "68.38%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 52 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 36, - "End Line": 50 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 20, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 16 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 14, - "Function Parameters": 3, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 5, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 18, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 5, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 3, - "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, - "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": 5, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 40, - "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": 18, - "Design Camel Case": 0, - "Design Snake Case": 18, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.format", - "tasty" - ] - }, - "lua/pandoc/pandoc-image.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-image.lua", - "Path": "lua/pandoc/pandoc-image.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4500.55, - "Y": -150.22, - "Z": -3423.93 - }, - "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": 69, - "Coding LOC": 59, - "Documentation LOC": 4, - "Structural Magnitude": 47.68, - "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.886 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "63.24%", - "Error & Exception Exposure": "57.54%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.4%", - "API Exposure": "1.03%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 4, - "Input Parameters": 0, - "Control Flow Ratio": "57.1%", - "Start Line": 43, - "End Line": 48 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 64, - "End Line": 66 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 2.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 37, - "End Line": 42 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 36 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 49, - "End Line": 57 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 39, - "End Line": 39 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 45, - "End Line": 45 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 8, - "Sequential Logic Declarations": 20, - "Function Parameters": 8, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 9, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 2, - "State Mutations / Variable Reassignments": 24, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 8, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 8, - "Global State Dependencies": 0, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 2, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 2, - "Authorship Metadata": 0, - "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 1, - "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": 8, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 48, - "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": 20, - "Design Camel Case": 1, - "Design Snake Case": 19, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.image", - "tasty" - ] - }, - "lua/pandoc/pandoc-json.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-json.lua", - "Path": "lua/pandoc/pandoc-json.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4662.73, - "Y": -97.64, - "Z": -4727.55 - }, - "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": 119, - "Coding LOC": 110, - "Documentation LOC": 4, - "Structural Magnitude": 44.6, - "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 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "8.32%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.31%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "95.5%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "__global_context__", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 118 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 43 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 44, - "End Line": 50 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 51, - "End Line": 56 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 62 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 68 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 69, - "End Line": 74 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 80 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 105, - "End Line": 110 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 111, - "End Line": 116 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 15, - "End Line": 17 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 21, - "End Line": 23 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 26 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 32 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 84, - "End Line": 86 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 90, - "End Line": 92 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 93, - "End Line": 95 - }, - { - "Function Name": "Anonymous_Block", - "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": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 101 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 102, - "End Line": 104 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, - "Function Parameters": 22, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 25, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 15, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 23, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 22, - "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)": 3, - "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": 23, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 8, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 102, - "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": 9, - "Design Camel Case": 0, - "Design Snake Case": 9, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "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, - "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)": 3, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc", - "pandoc.json", - "tasty" - ] - }, - "lua/pandoc/pandoc-list.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-list.lua", - "Path": "lua/pandoc/pandoc-list.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -4389.69, - "Y": -99.43, - "Z": -4454.7 - }, - "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": 161, - "Coding LOC": 147, - "Documentation LOC": 0, - "Structural Magnitude": 103.04, - "Control Flow Ratio": "14.8%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.838 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "58.75%", - "Error & Exception Exposure": "15.13%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "40.0%", - "Start Line": 51, - "End Line": 56 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "28.6%", - "Start Line": 69, - "End Line": 74 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 75, - "End Line": 78 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 3.2, - "Lines of Code (LOC)": 44, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 160 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 63, - "End Line": 65 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 19, - "End Line": 25 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "16.7%", - "Start Line": 41, - "End Line": 47 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 82, - "End Line": 88 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 97, - "End Line": 101 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "33.3%", - "Start Line": 125, - "End Line": 127 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 10, - "End Line": 15 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 124 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 57, - "End Line": 62 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 140 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 26, - "End Line": 29 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 33, - "End Line": 37 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 92, - "End Line": 96 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 105, - "End Line": 109 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 114 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 131 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 141, - "End Line": 145 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 153 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 158 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 75, - "Function Parameters": 29, - "Function/Method Declarations": 0, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 38, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 56, - "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 34, - "Asynchronous/Concurrent Execution": 0, - "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 29, - "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, - "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": 34, - "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 3, - "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, - "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 33, - "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 0, - "Structural Space Indentations": 140, - "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": 33, - "Design Camel Case": 0, - "Design Snake Case": 32, - "Design Pascal Case": 1, - "Design Upper Case": 0, - "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, - "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)": 2, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [ - "pandoc.List", - "tasty" - ] - }, - "lua/pandoc/pandoc-log.lua": { - "1. Artifact Identity": { - "Filename": "pandoc-log.lua", - "Path": "lua/pandoc/pandoc-log.lua", - "Language": "Lua", - "Architect": "Unknown Architect", - "Indentation Style": "Spaces", - "Doc Umbrella": 1.0, - "Folder Dominant Lang": "lua", - "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .lua)" - }, - "2. Topological Coordinates": { - "X": -5012.71, - "Y": -123.45, - "Z": -3846.86 - }, - "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": 76, - "Coding LOC": 61, - "Documentation LOC": 10, - "Structural Magnitude": 34.82, - "Control Flow Ratio": "5.7%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.623 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "37.56%", - "Error & Exception Exposure": "10.45%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.32%", - "API Exposure": "0.23%", + "Testing Exposure": "2.64%", + "API Exposure": "5.59%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", "Documentation Exposure": "11.92%", @@ -641138,122 +641039,52 @@ }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "40.0%", - "Start Line": 50, - "End Line": 60 + "Function Name": "Inlines", + "Structural Impact": 17.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 11, + "Input Parameters": 1, + "Control Flow Ratio": "68.8%", + "Start Line": 6, + "End Line": 19 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", + "Function Name": "isWorldAfterSpace", + "Structural Impact": 8.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "66.7%", "Start Line": 1, - "End Line": 75 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 28 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 29, - "End Line": 34 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 46 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.3, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 67, - "End Line": 72 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 61, - "End Line": 65 - }, - { - "Function Name": "Anonymous_Block", - "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 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 40 + "End Line": 4 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 33, - "Function Parameters": 9, - "Function/Method Declarations": 0, + "Control Flow Branches": 15, + "Sequential Logic Declarations": 7, + "Function Parameters": 2, + "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 19, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 18, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 6, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 15, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 9, + "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)": 3, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -641265,20 +641096,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 7, - "Ad-hoc Print / Debug Statements": 3, + "Structured Telemetry & Logging": 0, + "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 15, + "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": 13, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 53, + "Structural Space Indentations": 11, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -641295,15 +641126,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 14, + "Core Var Decl": 1, "Design Camel Case": 0, - "Design Snake Case": 14, + "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": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -641315,7 +641146,7 @@ "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 1, + "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, @@ -641327,21 +641158,17 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 3, + "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": [ - "pandoc.json", - "pandoc.log", - "tasty" - ] + "9. Extracted Dependencies": [] }, - "lua/pandoc/pandoc-mediabag.lua": { + "lua/pandoc/manfilter.lua": { "1. Artifact Identity": { - "Filename": "pandoc-mediabag.lua", - "Path": "lua/pandoc/pandoc-mediabag.lua", + "Filename": "manfilter.lua", + "Path": "lua/pandoc/manfilter.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -641351,9 +641178,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3900.72, - "Y": -133.74, - "Z": -4235.81 + "X": -4152.81, + "Y": -87.84, + "Z": -3559.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641362,160 +641189,130 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 119, - "Coding LOC": 107, - "Documentation LOC": 1, - "Structural Magnitude": 54.14, - "Control Flow Ratio": "14.0%", + "Total LOC": 45, + "Coding LOC": 33, + "Documentation LOC": 6, + "Structural Magnitude": 27.56, + "Control Flow Ratio": "9.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.607 + "Raw Cognitive Density": 0.495 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "36.12%", - "Error & Exception Exposure": "21.03%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "26.5%", + "Error & Exception Exposure": "76.85%", + "Tech Debt Exposure": "99.91%", + "Testing Exposure": "2.49%", + "API Exposure": "4.68%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.98%", + "State Flux Exposure": "98.2%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 6, - "Input Parameters": 0, - "Control Flow Ratio": "54.5%", - "Start Line": 77, - "End Line": 94 + "Function Name": "Header", + "Structural Impact": 4.6, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "28.6%", + "Start Line": 5, + "End Line": 12 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.5, - "Lines of Code (LOC)": 30, + "Function Name": "Table", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 118 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "25.0%", - "Start Line": 98, - "End Line": 104 + "Start Line": 16, + "End Line": 33 }, { - "Function Name": "Anonymous_Block", + "Function Name": "Link", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 11, - "End Line": 22 + "Start Line": 37, + "End Line": 39 }, { - "Function Name": "Anonymous_Block", + "Function Name": "Note", "Structural Impact": 1.6, - "Lines of Code (LOC)": 12, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 23, - "End Line": 34 + "Start Line": 42, + "End Line": 44 }, { - "Function Name": "Anonymous_Block", + "Function Name": "__global_context__", "Structural Impact": 1.6, "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 49 + "Start Line": 1, + "End Line": 44 }, { "Function Name": "Anonymous_Block", "Structural Impact": 1.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 63, - "End Line": 73 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 53, - "End Line": 59 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 108, - "End Line": 111 + "Start Line": 20, + "End Line": 22 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.2, - "Lines of Code (LOC)": 5, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 112, - "End Line": 116 + "Start Line": 24, + "End Line": 26 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 7, - "Sequential Logic Declarations": 43, - "Function Parameters": 9, - "Function/Method Declarations": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 19, + "Function Parameters": 7, + "Function/Method Declarations": 4, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 23, + "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": 29, + "Exposed API / Public Exports": 4, + "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 17, + "Unit Test Assertions": 0, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 9, + "Closures and Anonymous Functions": 3, "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)": 2, + "Module Dependencies (Imports)": 1, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -641530,17 +641327,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 17, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 0, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 22, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 100, + "Structural Space Indentations": 24, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -641557,22 +641354,22 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 22, + "Core Var Decl": 4, "Design Camel Case": 0, - "Design Snake Case": 22, - "Design Pascal Case": 0, + "Design Snake Case": 3, + "Design Pascal Case": 1, "Design Upper Case": 0, - "Design Short Vars": 4, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 4, "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, @@ -641589,20 +641386,19 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 2, + "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": [ - "pandoc.mediabag", - "tasty" + "text" ] }, - "lua/pandoc/sample.lua": { + "lua/pandoc/markdown-reader.lua": { "1. Artifact Identity": { - "Filename": "sample.lua", - "Path": "lua/pandoc/sample.lua", + "Filename": "markdown-reader.lua", + "Path": "lua/pandoc/markdown-reader.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -641612,9 +641408,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -4383.83, - "Y": -138.4, - "Z": -4194.61 + "X": -3765.89, + "Y": -126.73, + "Z": -3689.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -641623,530 +641419,80 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 370, - "Coding LOC": 277, - "Documentation LOC": 45, - "Structural Magnitude": 531.84, - "Control Flow Ratio": "35.4%", + "Total LOC": 13, + "Coding LOC": 12, + "Documentation LOC": 0, + "Structural Magnitude": 13.54, + "Control Flow Ratio": "33.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.513 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "95.49%", - "Error & Exception Exposure": "97.22%", + "Cognitive Load Exposure": "14.19%", + "Error & Exception Exposure": "73.66%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "10.87%", + "Testing Exposure": "2.39%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "5.97%", - "Specification Exposure": "100.0%", + "State Flux Exposure": "91.68%", + "Commented Logic Exposure": "0.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "99.75%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ - { - "Function Name": "Table", - "Structural Impact": 68.1, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 26, - "Input Parameters": 5, - "Control Flow Ratio": "60.5%", - "Start Line": 307, - "End Line": 346 - }, - { - "Function Name": "escape", - "Structural Impact": 25.1, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 13, - "Input Parameters": 2, - "Control Flow Ratio": "54.2%", - "Start Line": 39, - "End Line": 56 - }, { "Function Name": "Anonymous_Block", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 41, - "End Line": 55 - }, - { - "Function Name": "Doc", - "Structural Impact": 12.8, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 5, - "Input Parameters": 3, - "Control Flow Ratio": "41.7%", - "Start Line": 83, - "End Line": 97 - }, - { - "Function Name": "html_align", - "Structural Impact": 11.9, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 7, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 274, - "End Line": 284 - }, - { - "Function Name": "attributes", - "Structural Impact": 10.3, - "Lines of Code (LOC)": 9, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 60, - "End Line": 68 - }, - { - "Function Name": "CaptionedImage", - "Structural Impact": 9.5, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 4, - "Control Flow Ratio": "37.5%", - "Start Line": 286, - "End Line": 296 - }, - { - "Function Name": "CodeBlock", - "Structural Impact": 9.3, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "44.4%", - "Start Line": 233, - "End Line": 244 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 8.0, - "Lines of Code (LOC)": 101, - "Control Flow Branches": 2, - "Input Parameters": 0, - "Control Flow Ratio": "22.2%", - "Start Line": 1, - "End Line": 369 - }, - { - "Function Name": "RawInline", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 190, - "End Line": 196 - }, - { - "Function Name": "Cite", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 198, - "End Line": 205 - }, - { - "Function Name": "RawBlock", - "Structural Impact": 7.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 2, - "Control Flow Ratio": "42.9%", - "Start Line": 348, - "End Line": 354 - }, - { - "Function Name": "DefinitionList", "Structural Impact": 6.1, - "Lines of Code (LOC)": 9, + "Lines of Code (LOC)": 8, "Control Flow Branches": 3, "Input Parameters": 1, "Control Flow Ratio": "37.5%", - "Start Line": 262, - "End Line": 270 - }, - { - "Function Name": "BulletList", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 246, - "End Line": 252 - }, - { - "Function Name": "OrderedList", - "Structural Impact": 6.0, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 254, - "End Line": 260 - }, - { - "Function Name": "Link", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 144, - "End Line": 147 - }, - { - "Function Name": "Image", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 4, - "Control Flow Ratio": "0.0%", - "Start Line": 149, - "End Line": 152 - }, - { - "Function Name": "Figure", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 298, - "End Line": 302 - }, - { - "Function Name": "Header", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 3, - "Control Flow Ratio": "0.0%", - "Start Line": 216, - "End Line": 218 - }, - { - "Function Name": "Writer", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 16, - "End Line": 21 - }, - { - "Function Name": "Note", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 174, - "End Line": 184 - }, - { - "Function Name": "Code", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 156 - }, - { - "Function Name": "Span", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 186, - "End Line": 188 - }, - { - "Function Name": "Div", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 356, - "End Line": 358 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 365, - "End Line": 368 - }, - { - "Function Name": "Str", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 104, - "End Line": 106 - }, - { - "Function Name": "Emph", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 122 - }, - { - "Function Name": "Strong", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 124, - "End Line": 126 - }, - { - "Function Name": "Subscript", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 128, - "End Line": 130 - }, - { - "Function Name": "Superscript", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 132, - "End Line": 134 - }, - { - "Function Name": "SmallCaps", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 136, - "End Line": 138 - }, - { - "Function Name": "Strikeout", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 140, - "End Line": 142 - }, - { - "Function Name": "InlineMath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 158, - "End Line": 160 - }, - { - "Function Name": "DisplayMath", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 162, - "End Line": 164 - }, - { - "Function Name": "SingleQuoted", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 166, - "End Line": 168 - }, - { - "Function Name": "DoubleQuoted", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 170, - "End Line": 172 - }, - { - "Function Name": "Plain", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 207, - "End Line": 209 - }, - { - "Function Name": "Para", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 211, - "End Line": 213 - }, - { - "Function Name": "BlockQuote", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 220, - "End Line": 222 + "Start Line": 3, + "End Line": 10 }, { - "Function Name": "LineBlock", - "Structural Impact": 1.6, + "Function Name": "__global_context__", + "Structural Impact": 1.2, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 228, - "End Line": 231 - }, - { - "Function Name": "add", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 85, - "End Line": 87 - }, - { - "Function Name": "add", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 309, - "End Line": 311 - }, - { - "Function Name": "Blocksep", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 76 - }, - { - "Function Name": "Space", - "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": "SoftBreak", - "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": "LineBreak", - "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": "HorizontalRule", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 224, - "End Line": 226 + "Start Line": 1, + "End Line": 12 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 84, - "Sequential Logic Declarations": 153, - "Function Parameters": 47, - "Function/Method Declarations": 44, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 6, + "Function Parameters": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 13, + "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 1, - "I/O and Network Boundaries": 1, - "Exposed API / Public Exports": 75, - "State Mutations / Variable Reassignments": 188, - "Commented-out Code (Dead Logic)": 1, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, + "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": 3, + "Closures and Anonymous Functions": 1, + "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 12, + "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, - "Metaprogramming & Reflection": 1, - "Module Dependencies (Imports)": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -642161,24 +641507,24 @@ "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": 12, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 26, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 185, + "Structural Space Indentations": 10, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, "Ipc Rpc Bridges": 0, "Feature Flags": 0, "Serialization Parsing": 0, - "Regex Execution": 2, + "Regex Execution": 0, "Time Date Logic": 0, "Cloud LLM API Integrations": 0, "AI Orchestration Frameworks": 0, @@ -642188,12 +641534,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 49, + "Core Var Decl": 2, "Design Camel Case": 0, - "Design Snake Case": 47, - "Design Pascal Case": 0, - "Design Upper Case": 2, - "Design Short Vars": 5, + "Design Snake Case": 1, + "Design Pascal Case": 1, + "Design Upper Case": 0, + "Design Short Vars": 1, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -642206,7 +641552,7 @@ "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, @@ -642220,19 +641566,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": [ - "pandoc.utils" - ] + "9. Extracted Dependencies": [] }, - "lua/pandoc/writer-template.lua": { + "lua/pandoc/math.lua": { "1. Artifact Identity": { - "Filename": "writer-template.lua", - "Path": "lua/pandoc/writer-template.lua", + "Filename": "math.lua", + "Path": "lua/pandoc/math.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", @@ -642242,9 +641586,9 @@ "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -3924.02, - "Y": -124.78, - "Z": -3296.47 + "X": -3803.77, + "Y": -114.77, + "Z": -4604.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642253,73 +641597,73 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 8, - "Coding LOC": 6, + "Total LOC": 11, + "Coding LOC": 10, "Documentation LOC": 0, - "Structural Magnitude": 5.12, - "Control Flow Ratio": "0.0%", + "Structural Magnitude": 11.9, + "Control Flow Ratio": "33.3%", "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.28 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "95.26%", - "Testing Exposure": "2.34%", - "API Exposure": "5.59%", + "Cognitive Load Exposure": "13.24%", + "Error & Exception Exposure": "73.66%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.37%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "91.68%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Writer", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 0, - "Input Parameters": 2, - "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 3 + "Function Name": "Anonymous_Block", + "Structural Impact": 4.5, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 1, + "Control Flow Ratio": "40.0%", + "Start Line": 3, + "End Line": 8 }, { - "Function Name": "Template", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 3, + "Function Name": "__global_context__", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 5, - "End Line": 7 + "Start Line": 1, + "End Line": 10 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 2, "Sequential Logic Declarations": 4, - "Function Parameters": 2, - "Function/Method Declarations": 2, + "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": 2, - "State Mutations / Variable Reassignments": 0, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 6, "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, @@ -642351,7 +641695,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 2, + "Structural Space Indentations": 8, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642368,15 +641712,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 Pascal Case": 0, + "Design Pascal Case": 1, "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, @@ -642403,50 +641747,26 @@ "Direct Upstream (Fragility)": 0, "Direct Downstream (Dependency Blast Radius)": 0, "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 + "Total Downstream (Absolute Dependency Blast Radius)": 23 }, "9. Extracted Dependencies": [] - } - } - }, - "lua/darwin-xnu": { - "Directory Group Magnitude": 1317.6, - "File Count": 7, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "71.67%", - "Error & Exception Exposure": "96.73%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "35.75%", - "API Exposure": "0.64%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.99%", - "Commented Logic Exposure": "1.22%", - "Specification Exposure": "42.86%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "10.56%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "lua/darwin-xnu/benchmark.lua": { + }, + "lua/pandoc/pandoc-format.lua": { "1. Artifact Identity": { - "Filename": "benchmark.lua", - "Path": "lua/darwin-xnu/benchmark.lua", + "Filename": "pandoc-format.lua", + "Path": "lua/pandoc/pandoc-format.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1550.32, - "Y": 252.97, - "Z": -8848.69 + "X": -4966.7, + "Y": -64.93, + "Z": -4636.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642455,110 +641775,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 108, - "Coding LOC": 94, - "Documentation LOC": 3, - "Structural Magnitude": 152.08, - "Control Flow Ratio": "50.7%", + "Total LOC": 53, + "Coding LOC": 47, + "Documentation LOC": 0, + "Structural Magnitude": 25.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.112 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "72.34%", - "Error & Exception Exposure": "99.32%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "68.38%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.61%", - "API Exposure": "0.16%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.9%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 17.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 15, + "Function Name": "__global_context__", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 82, - "End Line": 105 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 52 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Structural Impact": 1.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "70.6%", - "Start Line": 62, - "End Line": 80 + "Control Flow Ratio": "0.0%", + "Start Line": 36, + "End Line": 50 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 9.9, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 5, - "Input Parameters": 1, - "Control Flow Ratio": "83.3%", - "Start Line": 15, - "End Line": 43 - }, - { - "Function Name": "__global_context__", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 29, - "Control Flow Branches": 2, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 13, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "11.1%", - "Start Line": 1, - "End Line": 107 + "Control Flow Ratio": "0.0%", + "Start Line": 20, + "End Line": 32 }, { - "Function Name": "QueueTest", - "Structural Impact": 1.7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 55, - "End Line": 60 + "Start Line": 11, + "End Line": 16 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 34, - "Sequential Logic Declarations": 33, - "Function Parameters": 2, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 14, + "Function Parameters": 3, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 5, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 102, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 3, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 5, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 3, + "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)": 5, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -642572,18 +641882,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 3, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 5, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 17, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 70, + "Structural Space Indentations": 40, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642600,12 +641910,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 44, - "Design Camel Case": 1, - "Design Snake Case": 43, + "Core Var Decl": 18, + "Design Camel Case": 0, + "Design Snake Case": 18, "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, @@ -642616,7 +641926,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 3, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -642632,35 +641942,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 5, + "Direct Upstream (Fragility)": 2, "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": [ - "benchrun", - "csv", - "perfdata", - "strict", - "sysctl" + "pandoc.format", + "tasty" ] }, - "lua/darwin-xnu/bridgetime.lua": { + "lua/pandoc/pandoc-image.lua": { "1. Artifact Identity": { - "Filename": "bridgetime.lua", - "Path": "lua/darwin-xnu/bridgetime.lua", + "Filename": "pandoc-image.lua", + "Path": "lua/pandoc/pandoc-image.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1286.35, - "Y": 98.48, - "Z": -7795.32 + "X": -4499.68, + "Y": -150.2, + "Z": -3424.17 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642669,196 +641976,156 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 143, - "Coding LOC": 110, - "Documentation LOC": 5, - "Structural Magnitude": 147.6, - "Control Flow Ratio": "42.3%", + "Total LOC": 69, + "Coding LOC": 59, + "Documentation LOC": 4, + "Structural Magnitude": 47.68, + "Control Flow Ratio": "28.6%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.023 + "Raw Cognitive Density": 0.886 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "74.86%", - "Error & Exception Exposure": "97.78%", + "Cognitive Load Exposure": "63.24%", + "Error & Exception Exposure": "57.54%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "0.0%", + "Testing Exposure": "2.4%", + "API Exposure": "1.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "8.54%", + "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 15.2, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 9, - "Input Parameters": 1, - "Control Flow Ratio": "64.3%", - "Start Line": 81, - "End Line": 102 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.6, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 8, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 40, - "End Line": 57 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, + "Structural Impact": 5.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 4, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 59, - "End Line": 72 - }, - { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 104, - "End Line": 117 + "Start Line": 43, + "End Line": 48 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 6.3, - "Lines of Code (LOC)": 13, + "Structural Impact": 4.2, + "Lines of Code (LOC)": 3, "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 130, - "End Line": 142 + "Input Parameters": 0, + "Control Flow Ratio": "75.0%", + "Start Line": 64, + "End Line": 66 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 9, + "Function Name": "__global_context__", + "Structural Impact": 2.6, + "Lines of Code (LOC)": 32, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 13, - "End Line": 21 + "Start Line": 1, + "End Line": 68 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 119, - "End Line": 128 + "Structural Impact": 2.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 37, + "End Line": 42 }, { - "Function Name": "__global_context__", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 142 + "Start Line": 28, + "End Line": 36 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, + "Structural Impact": 1.4, + "Lines of Code (LOC)": 9, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 74, - "End Line": 79 + "Start Line": 49, + "End Line": 57 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 24, - "End Line": 27 + "Start Line": 61, + "End Line": 63 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 33 + "Start Line": 39, + "End Line": 39 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 38 + "Start Line": 45, + "End Line": 45 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 30, - "Sequential Logic Declarations": 41, - "Function Parameters": 12, + "Control Flow Branches": 8, + "Sequential Logic Declarations": 20, + "Function Parameters": 8, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 9, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 76, - "Commented-out Code (Dead Logic)": 1, + "Exposed API / Public Exports": 2, + "State Mutations / Variable Reassignments": 24, + "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 8, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 12, + "Closures and Anonymous Functions": 8, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 3, + "Scientific & Mathematical Operations": 2, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 2, "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, + "Event Publishers / Emitters": 1, "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, @@ -642867,17 +642134,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 8, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 18, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 3, - "Structural Tab Indentations": 82, - "Structural Space Indentations": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 48, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -642894,9 +642161,9 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 34, - "Design Camel Case": 0, - "Design Snake Case": 34, + "Core Var Decl": 20, + "Design Camel Case": 1, + "Design Snake Case": 19, "Design Pascal Case": 0, "Design Upper Case": 0, "Design Short Vars": 0, @@ -642926,29 +642193,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": [ + "pandoc.image", + "tasty" + ] }, - "lua/darwin-xnu/fault_throughput.lua": { + "lua/pandoc/pandoc-json.lua": { "1. Artifact Identity": { - "Filename": "fault_throughput.lua", - "Path": "lua/darwin-xnu/fault_throughput.lua", + "Filename": "pandoc-json.lua", + "Path": "lua/pandoc/pandoc-json.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -2036.34, - "Y": 273.31, - "Z": -8398.05 + "X": -4661.68, + "Y": -97.65, + "Z": -4726.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -642957,110 +642227,280 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 104, - "Coding LOC": 90, - "Documentation LOC": 3, - "Structural Magnitude": 144.2, - "Control Flow Ratio": "51.5%", + "Total LOC": 119, + "Coding LOC": 110, + "Documentation LOC": 4, + "Structural Magnitude": 44.6, + "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.128 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "72.82%", - "Error & Exception Exposure": "98.98%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "8.32%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.62%", - "API Exposure": "0.18%", + "Testing Exposure": "2.31%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "95.5%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.98%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 14.9, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 13, + "Function Name": "__global_context__", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "65.0%", - "Start Line": 84, - "End Line": 101 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 118 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 13.9, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 12, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "70.6%", - "Start Line": 64, - "End Line": 82 + "Control Flow Ratio": "0.0%", + "Start Line": 33, + "End Line": 43 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 11.3, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "85.7%", - "Start Line": 16, - "End Line": 43 + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 44, + "End Line": 50 }, { - "Function Name": "__global_context__", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 3, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "14.3%", - "Start Line": 1, - "End Line": 103 + "Control Flow Ratio": "0.0%", + "Start Line": 51, + "End Line": 56 }, { - "Function Name": "QueueTest", - "Structural Impact": 1.7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 57, "End Line": 62 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 68 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 69, + "End Line": 74 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 80 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 105, + "End Line": 110 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 111, + "End Line": 116 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 15, + "End Line": 17 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 21, + "End Line": 23 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 24, + "End Line": 26 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 32 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 84, + "End Line": 86 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 90, + "End Line": 92 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 93, + "End Line": 95 + }, + { + "Function Name": "Anonymous_Block", + "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": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 99, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 102, + "End Line": 104 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 34, - "Sequential Logic Declarations": 32, - "Function Parameters": 2, - "Function/Method Declarations": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 22, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 25, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 1, - "State Mutations / Variable Reassignments": 94, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 15, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 4, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 23, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 22, + "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)": 6, + "Module Dependencies (Imports)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643074,18 +642514,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 2, - "Fatal Aborts & Exceptions": 4, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 23, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 16, + "Private / Encapsulated Scopes": 8, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 64, + "Structural Space Indentations": 102, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643102,12 +642542,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 40, - "Design Camel Case": 1, - "Design Snake Case": 39, + "Core Var Decl": 9, + "Design Camel Case": 0, + "Design Snake Case": 9, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 4, + "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -643118,7 +642558,7 @@ "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 4, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -643134,36 +642574,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 6, + "Direct Upstream (Fragility)": 3, "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": [ - "benchrun", - "csv", - "os", - "perfdata", - "strict", - "sysctl" + "pandoc", + "pandoc.json", + "tasty" ] }, - "lua/darwin-xnu/kqtrace.lua": { + "lua/pandoc/pandoc-list.lua": { "1. Artifact Identity": { - "Filename": "kqtrace.lua", - "Path": "lua/darwin-xnu/kqtrace.lua", + "Filename": "pandoc-list.lua", + "Path": "lua/pandoc/pandoc-list.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1886.14, - "Y": 174.48, - "Z": -8161.22 + "X": -4389.13, + "Y": -99.45, + "Z": -4453.22 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643172,220 +642609,290 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 336, - "Coding LOC": 299, - "Documentation LOC": 2, - "Structural Magnitude": 353.18, - "Control Flow Ratio": "55.2%", + "Total LOC": 161, + "Coding LOC": 147, + "Documentation LOC": 0, + "Structural Magnitude": 103.04, + "Control Flow Ratio": "14.8%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.585 + "Raw Cognitive Density": 0.838 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "96.57%", - "Error & Exception Exposure": "89.51%", + "Cognitive Load Exposure": "58.75%", + "Error & Exception Exposure": "15.13%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "80.0%", - "API Exposure": "4.12%", + "Testing Exposure": "2.32%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "46.04%", + "Documentation Exposure": "0.0%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "kevent_filter_string", - "Structural Impact": 108.6, - "Lines of Code (LOC)": 79, - "Control Flow Branches": 73, - "Input Parameters": 1, - "Control Flow Ratio": "65.2%", - "Start Line": 130, - "End Line": 208 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "40.0%", + "Start Line": 51, + "End Line": 56 }, { - "Function Name": "qos_string", - "Structural Impact": 26.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "60.7%", - "Start Line": 40, - "End Line": 60 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "28.6%", + "Start Line": 69, + "End Line": 74 }, { - "Function Name": "event_prefix_string", - "Structural Impact": 20.3, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 10, - "Input Parameters": 2, - "Control Flow Ratio": "43.5%", - "Start Line": 14, - "End Line": 38 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 75, + "End Line": 78 }, { - "Function Name": "state_string", - "Structural Impact": 16.3, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, - "Input Parameters": 2, - "Control Flow Ratio": "53.3%", - "Start Line": 62, - "End Line": 75 + "Function Name": "__global_context__", + "Structural Impact": 3.2, + "Lines of Code (LOC)": 44, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 160 }, { - "Function Name": "processing_begin", - "Structural Impact": 10.7, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 6, - "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 212, - "End Line": 228 + "Function Name": "Anonymous_Block", + "Structural Impact": 3.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 63, + "End Line": 65 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, - "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 19, + "End Line": 25 }, { - "Function Name": "processing_end", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, - "Input Parameters": 1, - "Control Flow Ratio": "37.5%", - "Start Line": 234, - "End Line": 244 + "Function Name": "Anonymous_Block", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "16.7%", + "Start Line": 41, + "End Line": 47 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.8, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 2, - "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 261, - "End Line": 272 + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 82, + "End Line": 88 }, { - "Function Name": "thread_adjust", + "Function Name": "Anonymous_Block", "Structural Impact": 2.2, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 97, + "End Line": 101 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "33.3%", + "Start Line": 125, + "End Line": 127 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 290, - "End Line": 305 + "Start Line": 10, + "End Line": 15 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 93, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 335 + "Start Line": 118, + "End Line": 124 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 274, - "End Line": 280 + "Start Line": 57, + "End Line": 62 }, { - "Function Name": "thread_request", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 282, - "End Line": 288 + "Start Line": 135, + "End Line": 140 }, { - "Function Name": "kevent_register", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 311, - "End Line": 318 + "Start Line": 26, + "End Line": 29 }, { - "Function Name": "kevent_process", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 8, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 324, - "End Line": 331 + "Start Line": 33, + "End Line": 37 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, + "Structural Impact": 1.2, "Lines of Code (LOC)": 5, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 250, - "End Line": 254 + "Start Line": 92, + "End Line": 96 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 1.6, + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 105, + "End Line": 109 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 114 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 256, - "End Line": 259 + "Start Line": 128, + "End Line": 131 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 141, + "End Line": 145 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 153 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 158 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 123, - "Sequential Logic Declarations": 100, - "Function Parameters": 20, - "Function/Method Declarations": 10, + "Control Flow Branches": 13, + "Sequential Logic Declarations": 75, + "Function Parameters": 29, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 6, + "Defensive Programming Constructs": 38, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 10, - "State Mutations / Variable Reassignments": 120, + "Exposed API / Public Exports": 0, + "State Mutations / Variable Reassignments": 56, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 34, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 10, + "Closures and Anonymous Functions": 29, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 1, - "Scientific & Mathematical Operations": 6, + "Collection Iterators / Comprehensions": 0, + "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, @@ -643400,17 +642907,17 @@ "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 34, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 13, + "Bitwise Operations": 3, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 10, + "Private / Encapsulated Scopes": 33, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 244, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 140, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643427,10 +642934,10 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 47, + "Core Var Decl": 33, "Design Camel Case": 0, - "Design Snake Case": 44, - "Design Pascal Case": 3, + "Design Snake Case": 32, + "Design Pascal Case": 1, "Design Upper Case": 0, "Design Short Vars": 0, "Design Long Vars": 0, @@ -643459,29 +642966,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": [ + "pandoc.List", + "tasty" + ] }, - "lua/darwin-xnu/ktruss.lua": { + "lua/pandoc/pandoc-log.lua": { "1. Artifact Identity": { - "Filename": "ktruss.lua", - "Path": "lua/darwin-xnu/ktruss.lua", + "Filename": "pandoc-log.lua", + "Path": "lua/pandoc/pandoc-log.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1743.84, - "Y": 141.19, - "Z": -7753.88 + "X": -5011.26, + "Y": -123.44, + "Z": -3846.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643490,100 +643000,150 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 29, - "Coding LOC": 22, - "Documentation LOC": 0, - "Structural Magnitude": 28.94, - "Control Flow Ratio": "50.0%", + "Total LOC": 76, + "Coding LOC": 61, + "Documentation LOC": 10, + "Structural Magnitude": 34.82, + "Control Flow Ratio": "5.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.66 + "Raw Cognitive Density": 0.623 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "41.1%", - "Error & Exception Exposure": "94.85%", + "Cognitive Load Exposure": "37.56%", + "Error & Exception Exposure": "10.45%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.54%", - "API Exposure": "0.0%", + "Testing Exposure": "2.32%", + "API Exposure": "0.23%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "99.93%", + "State Flux Exposure": "99.99%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 5.6, - "Lines of Code (LOC)": 8, + "Structural Impact": 3.5, + "Lines of Code (LOC)": 11, "Control Flow Branches": 2, - "Input Parameters": 2, - "Control Flow Ratio": "50.0%", - "Start Line": 15, - "End Line": 22 + "Input Parameters": 0, + "Control Flow Ratio": "40.0%", + "Start Line": 50, + "End Line": 60 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 4, + "Function Name": "__global_context__", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "80.0%", - "Start Line": 5, - "End Line": 11 + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 75 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.2, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 3, + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "75.0%", - "Start Line": 25, + "Control Flow Ratio": "0.0%", + "Start Line": 23, "End Line": 28 }, { - "Function Name": "__global_context__", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 28 + "Start Line": 29, + "End Line": 34 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 41, + "End Line": 46 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.3, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 67, + "End Line": 72 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 61, + "End Line": 65 + }, + { + "Function Name": "Anonymous_Block", + "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 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 40 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 9, - "Sequential Logic Declarations": 9, - "Function Parameters": 1, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 33, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 19, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 2, + "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 18, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 15, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 6, + "Closures and Anonymous Functions": 9, + "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)": 3, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643595,20 +643155,20 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 7, "Ad-hoc Print / Debug Statements": 3, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 2, + "Fatal Aborts & Exceptions": 15, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 4, + "Private / Encapsulated Scopes": 13, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 10, + "Structural Space Indentations": 53, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643625,12 +643185,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 4, + "Core Var Decl": 14, "Design Camel Case": 0, - "Design Snake Case": 4, + "Design Snake Case": 14, "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, @@ -643645,7 +643205,7 @@ "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, - "Non-Standard / Steganographic Imports": 0, + "Non-Standard / Steganographic Imports": 1, "Non-Standard Unicode / Homoglyphs": 0, "Embedded Credentials & Keys": 0, "Sec Extension Mismatch": 0, @@ -643657,31 +643217,33 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 1, + "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": [ - "ktrace" + "pandoc.json", + "pandoc.log", + "tasty" ] }, - "lua/darwin-xnu/perf_madvise.lua": { + "lua/pandoc/pandoc-mediabag.lua": { "1. Artifact Identity": { - "Filename": "perf_madvise.lua", - "Path": "lua/darwin-xnu/perf_madvise.lua", + "Filename": "pandoc-mediabag.lua", + "Path": "lua/pandoc/pandoc-mediabag.lua", "Language": "Lua", "Architect": "Unknown Architect", "Indentation Style": "Spaces", - "Doc Umbrella": 0.0, + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", "Lock Tier": 2, "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1153.24, - "Y": 125.77, - "Z": -8420.77 + "X": -3900.82, + "Y": -133.76, + "Z": -4234.73 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643690,25 +643252,25 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 70, - "Coding LOC": 62, - "Documentation LOC": 0, - "Structural Magnitude": 86.54, - "Control Flow Ratio": "38.2%", + "Total LOC": 119, + "Coding LOC": 107, + "Documentation LOC": 1, + "Structural Magnitude": 54.14, + "Control Flow Ratio": "14.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.96 + "Raw Cognitive Density": 0.607 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "58.56%", - "Error & Exception Exposure": "99.14%", + "Cognitive Load Exposure": "36.12%", + "Error & Exception Exposure": "21.03%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "100.0%", + "State Flux Exposure": "99.98%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "0.0%", "Instability Exposure": "50.0%", @@ -643719,71 +643281,131 @@ "5. Function Analysis": [ { "Function Name": "Anonymous_Block", - "Structural Impact": 11.7, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 10, + "Structural Impact": 7.9, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 6, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 54, - "End Line": 66 + "Control Flow Ratio": "54.5%", + "Start Line": 77, + "End Line": 94 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 2.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 118 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 26, + "Structural Impact": 2.4, + "Lines of Code (LOC)": 7, "Control Flow Branches": 1, - "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 16, - "End Line": 41 + "Input Parameters": 0, + "Control Flow Ratio": "25.0%", + "Start Line": 98, + "End Line": 104 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 3, - "Control Flow Branches": 2, + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 50, - "End Line": 52 + "Control Flow Ratio": "0.0%", + "Start Line": 11, + "End Line": 22 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 69 + "Start Line": 23, + "End Line": 34 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 49 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 63, + "End Line": 73 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 53, + "End Line": 59 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 108, + "End Line": 111 + }, + { + "Function Name": "Anonymous_Block", + "Structural Impact": 1.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 112, + "End Line": 116 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 13, - "Sequential Logic Declarations": 21, - "Function Parameters": 1, + "Control Flow Branches": 7, + "Sequential Logic Declarations": 43, + "Function Parameters": 9, "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 2, + "Defensive Programming Constructs": 23, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 64, + "State Mutations / Variable Reassignments": 29, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 1, - "Unit Test Assertions": 1, + "Structured Documentation Blocks": 0, + "Unit Test Assertions": 17, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, - "Closures and Anonymous Functions": 1, - "Global State Dependencies": 2, + "Closures and Anonymous Functions": 9, + "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)": 4, + "Module Dependencies (Imports)": 2, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -643797,18 +643419,18 @@ "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 1, - "Fatal Aborts & Exceptions": 1, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 17, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 12, + "Private / Encapsulated Scopes": 22, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 42, + "Structural Space Indentations": 100, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -643825,12 +643447,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 31, - "Design Camel Case": 2, - "Design Snake Case": 29, + "Core Var Decl": 22, + "Design Camel Case": 0, + "Design Snake Case": 22, "Design Pascal Case": 0, "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Short Vars": 4, "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, @@ -643840,8 +643462,8 @@ "Hyperlinked Literature References": 0, "High-Entropy / Obfuscated Logic": 0, "Safety & Constraint Bypasses": 0, - "External Network & I/O Hooks": 0, - "Dynamic Code Execution (Eval/Exec)": 1, + "External Network & I/O Hooks": 1, + "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, @@ -643857,34 +643479,32 @@ "Self-Referential File Copy/Overwrite (Worm Pattern)": 0 }, "8. Dependency Network": { - "Direct Upstream (Fragility)": 4, + "Direct Upstream (Fragility)": 2, "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": [ - "benchrun", - "csv", - "perfdata", - "strict" + "pandoc.mediabag", + "tasty" ] }, - "lua/darwin-xnu/wqtrace.lua": { + "lua/pandoc/sample.lua": { "1. Artifact Identity": { - "Filename": "wqtrace.lua", - "Path": "lua/darwin-xnu/wqtrace.lua", + "Filename": "sample.lua", + "Path": "lua/pandoc/sample.lua", "Language": "Lua", "Architect": "Unknown Architect", - "Indentation Style": "Tabs", - "Doc Umbrella": 0.0, + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, "Folder Dominant Lang": "lua", - "Lock Tier": 0, - "Identity Proof": "Absolute Consensus (Ext + Shebang)" + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" }, "2. Topological Coordinates": { - "X": -1621.99, - "Y": 214.14, - "Z": -8454.77 + "X": -4383.19, + "Y": -138.4, + "Z": -4194.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -643893,328 +643513,708 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 310, - "Coding LOC": 273, - "Documentation LOC": 3, - "Structural Magnitude": 405.06, - "Control Flow Ratio": "53.5%", + "Total LOC": 370, + "Coding LOC": 277, + "Documentation LOC": 45, + "Structural Magnitude": 495.84, + "Control Flow Ratio": "35.4%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 1.193 + "Raw Cognitive Density": 1.513 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "85.48%", - "Error & Exception Exposure": "97.55%", + "Cognitive Load Exposure": "95.49%", + "Error & Exception Exposure": "97.22%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "0.0%", + "API Exposure": "7.48%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "0.0%", + "Commented Logic Exposure": "5.97%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "0.0%", + "Documentation Exposure": "75.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "Anonymous_Block", - "Structural Impact": 26.7, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "56.7%", - "Start Line": 45, - "End Line": 68 + "Function Name": "Table", + "Structural Impact": 68.1, + "Lines of Code (LOC)": 40, + "Control Flow Branches": 26, + "Input Parameters": 5, + "Control Flow Ratio": "60.5%", + "Start Line": 307, + "End Line": 346 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 26.5, - "Lines of Code (LOC)": 21, - "Control Flow Branches": 17, - "Input Parameters": 1, - "Control Flow Ratio": "60.7%", - "Start Line": 70, - "End Line": 90 + "Function Name": "escape", + "Structural Impact": 25.1, + "Lines of Code (LOC)": 18, + "Control Flow Branches": 13, + "Input Parameters": 2, + "Control Flow Ratio": "54.2%", + "Start Line": 39, + "End Line": 56 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 22.7, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 14, + "Structural Impact": 14.9, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 9, "Input Parameters": 1, - "Control Flow Ratio": "60.9%", - "Start Line": 14, - "End Line": 43 + "Control Flow Ratio": "64.3%", + "Start Line": 41, + "End Line": 55 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.4, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 8, + "Function Name": "Doc", + "Structural Impact": 12.8, + "Lines of Code (LOC)": 15, + "Control Flow Branches": 5, + "Input Parameters": 3, + "Control Flow Ratio": "41.7%", + "Start Line": 83, + "End Line": 97 + }, + { + "Function Name": "html_align", + "Structural Impact": 11.9, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 7, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 157, - "End Line": 170 + "Control Flow Ratio": "50.0%", + "Start Line": 274, + "End Line": 284 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.4, - "Lines of Code (LOC)": 13, - "Control Flow Branches": 8, + "Function Name": "attributes", + "Structural Impact": 10.3, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 6, "Input Parameters": 1, - "Control Flow Ratio": "61.5%", - "Start Line": 284, + "Control Flow Ratio": "50.0%", + "Start Line": 60, + "End Line": 68 + }, + { + "Function Name": "CaptionedImage", + "Structural Impact": 9.5, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 3, + "Input Parameters": 4, + "Control Flow Ratio": "37.5%", + "Start Line": 286, "End Line": 296 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 13.3, + "Function Name": "CodeBlock", + "Structural Impact": 9.3, "Lines of Code (LOC)": 12, - "Control Flow Branches": 8, + "Control Flow Branches": 4, + "Input Parameters": 2, + "Control Flow Ratio": "44.4%", + "Start Line": 233, + "End Line": 244 + }, + { + "Function Name": "__global_context__", + "Structural Impact": 8.0, + "Lines of Code (LOC)": 101, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "22.2%", + "Start Line": 1, + "End Line": 369 + }, + { + "Function Name": "RawInline", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 190, + "End Line": 196 + }, + { + "Function Name": "Cite", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 8, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 198, + "End Line": 205 + }, + { + "Function Name": "RawBlock", + "Structural Impact": 7.3, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, + "Input Parameters": 2, + "Control Flow Ratio": "42.9%", + "Start Line": 348, + "End Line": 354 + }, + { + "Function Name": "DefinitionList", + "Structural Impact": 6.1, + "Lines of Code (LOC)": 9, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "72.7%", - "Start Line": 144, - "End Line": 155 + "Control Flow Ratio": "37.5%", + "Start Line": 262, + "End Line": 270 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 11.0, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 6, + "Function Name": "BulletList", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "46.2%", - "Start Line": 196, - "End Line": 217 + "Control Flow Ratio": "42.9%", + "Start Line": 246, + "End Line": 252 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 10.4, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 6, + "Function Name": "OrderedList", + "Structural Impact": 6.0, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 3, "Input Parameters": 1, - "Control Flow Ratio": "66.7%", - "Start Line": 237, - "End Line": 247 + "Control Flow Ratio": "42.9%", + "Start Line": 254, + "End Line": 260 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, + "Function Name": "Link", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 144, + "End Line": 147 + }, + { + "Function Name": "Image", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 4, + "Control Flow Ratio": "0.0%", + "Start Line": 149, + "End Line": 152 + }, + { + "Function Name": "Figure", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 298, + "End Line": 302 + }, + { + "Function Name": "Header", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 3, + "Control Flow Ratio": "0.0%", + "Start Line": 216, + "End Line": 218 + }, + { + "Function Name": "Writer", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, "Input Parameters": 2, - "Control Flow Ratio": "57.1%", - "Start Line": 3, - "End Line": 10 + "Control Flow Ratio": "0.0%", + "Start Line": 16, + "End Line": 21 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 9.0, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 5, + "Function Name": "Note", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 11, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "62.5%", - "Start Line": 298, - "End Line": 307 + "Control Flow Ratio": "0.0%", + "Start Line": 174, + "End Line": 184 + }, + { + "Function Name": "Code", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 156 + }, + { + "Function Name": "Span", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 186, + "End Line": 188 + }, + { + "Function Name": "Div", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 356, + "End Line": 358 }, { "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 4, + "Structural Impact": 1.9, + "Lines of Code (LOC)": 4, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 365, + "End Line": 368 + }, + { + "Function Name": "Str", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 133, - "End Line": 142 + "Control Flow Ratio": "0.0%", + "Start Line": 104, + "End Line": 106 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.6, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 4, + "Function Name": "Emph", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 172, - "End Line": 182 + "Control Flow Ratio": "0.0%", + "Start Line": 120, + "End Line": 122 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 7.5, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 4, + "Function Name": "Strong", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "57.1%", - "Start Line": 109, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 124, + "End Line": 126 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 11, - "Control Flow Branches": 3, + "Function Name": "Subscript", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 225, - "End Line": 235 + "Control Flow Ratio": "0.0%", + "Start Line": 128, + "End Line": 130 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.2, - "Lines of Code (LOC)": 10, - "Control Flow Branches": 3, + "Function Name": "Superscript", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "42.9%", - "Start Line": 253, - "End Line": 262 + "Control Flow Ratio": "0.0%", + "Start Line": 132, + "End Line": 134 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, + "Function Name": "SmallCaps", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 118, - "End Line": 125 + "Control Flow Ratio": "0.0%", + "Start Line": 136, + "End Line": 138 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 6.1, - "Lines of Code (LOC)": 8, - "Control Flow Branches": 3, + "Function Name": "Strikeout", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "50.0%", - "Start Line": 184, - "End Line": 191 + "Control Flow Ratio": "0.0%", + "Start Line": 140, + "End Line": 142 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 4.5, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 2, + "Function Name": "InlineMath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 92, - "End Line": 97 + "Control Flow Ratio": "0.0%", + "Start Line": 158, + "End Line": 160 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.1, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 1, + "Function Name": "DisplayMath", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 127, - "End Line": 131 + "Control Flow Ratio": "0.0%", + "Start Line": 162, + "End Line": 164 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 3.0, - "Lines of Code (LOC)": 4, - "Control Flow Branches": 1, + "Function Name": "SingleQuoted", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, "Input Parameters": 1, - "Control Flow Ratio": "33.3%", - "Start Line": 264, - "End Line": 267 + "Control Flow Ratio": "0.0%", + "Start Line": 166, + "End Line": 168 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 7, + "Function Name": "DoubleQuoted", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 2, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 99, - "End Line": 105 + "Start Line": 170, + "End Line": 172 }, { - "Function Name": "__global_context__", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 36, + "Function Name": "Plain", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 1, - "End Line": 309 + "Start Line": 207, + "End Line": 209 }, { - "Function Name": "Anonymous_Block", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, + "Function Name": "Para", + "Structural Impact": 1.6, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 219, - "End Line": 223 + "Start Line": 211, + "End Line": 213 }, { - "Function Name": "Anonymous_Block", + "Function Name": "BlockQuote", "Structural Impact": 1.6, "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 249, - "End Line": 251 + "Start Line": 220, + "End Line": 222 }, { - "Function Name": "Anonymous_Block", + "Function Name": "LineBlock", "Structural Impact": 1.6, "Lines of Code (LOC)": 4, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 269, - "End Line": 272 + "Start Line": 228, + "End Line": 231 }, { - "Function Name": "Anonymous_Block", + "Function Name": "add", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 274, - "End Line": 277 + "Start Line": 85, + "End Line": 87 }, { - "Function Name": "Anonymous_Block", + "Function Name": "add", "Structural Impact": 1.6, - "Lines of Code (LOC)": 4, + "Lines of Code (LOC)": 3, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 279, - "End Line": 282 + "Start Line": 309, + "End Line": 311 + }, + { + "Function Name": "Blocksep", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 74, + "End Line": 76 + }, + { + "Function Name": "Space", + "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": "SoftBreak", + "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": "LineBreak", + "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": "HorizontalRule", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 224, + "End Line": 226 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 121, - "Sequential Logic Declarations": 105, - "Function Parameters": 26, - "Function/Method Declarations": 0, + "Control Flow Branches": 84, + "Sequential Logic Declarations": 153, + "Function Parameters": 47, + "Function/Method Declarations": 44, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 13, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 1, + "I/O and Network Boundaries": 1, + "Exposed API / Public Exports": 39, + "State Mutations / Variable Reassignments": 188, + "Commented-out Code (Dead Logic)": 1, + "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": 3, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 12, + "Scientific & Mathematical Operations": 0, + "Metaprogramming & Reflection": 1, + "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": 1, + "Thread Sleeps & Blocking Waits": 0, + "Bitwise Operations": 12, + "Thread Synchronization Locks": 0, + "Immutable Data Declarations": 0, + "Resource Deallocation & Cleanup": 0, + "Private / Encapsulated Scopes": 26, + "Event Listeners & Subscribers": 0, + "Bypassed / Skipped Tests": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 185, + "Hardware Bridge": 0, + "Cryptography": 0, + "Auth Middleware": 0, + "Ipc Rpc Bridges": 0, + "Feature Flags": 0, + "Serialization Parsing": 0, + "Regex Execution": 2, + "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": 49, + "Design Camel Case": 0, + "Design Snake Case": 47, + "Design Pascal Case": 0, + "Design Upper Case": 2, + "Design Short Vars": 5, + "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": 1, + "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": [ + "pandoc.utils" + ] + }, + "lua/pandoc/writer-template.lua": { + "1. Artifact Identity": { + "Filename": "writer-template.lua", + "Path": "lua/pandoc/writer-template.lua", + "Language": "Lua", + "Architect": "Unknown Architect", + "Indentation Style": "Spaces", + "Doc Umbrella": 1.0, + "Folder Dominant Lang": "lua", + "Lock Tier": 2, + "Identity Proof": "Single Indicator (Ext: .lua)" + }, + "2. Topological Coordinates": { + "X": -3923.81, + "Y": -124.77, + "Z": -3296.63 + }, + "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": 8, + "Coding LOC": 6, + "Documentation LOC": 0, + "Structural Magnitude": 5.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 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "95.26%", + "Testing Exposure": "2.34%", + "API Exposure": "5.59%", + "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": "11.92%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "Writer", + "Structural Impact": 1.9, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 2, + "Control Flow Ratio": "0.0%", + "Start Line": 1, + "End Line": 3 + }, + { + "Function Name": "Template", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 3, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 5, + "End Line": 7 + } + ], + "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, "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": 174, + "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": 26, + "Closures and Anonymous Functions": 0, "Global State Dependencies": 0, "Decorators and Annotations": 0, "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 11, + "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, @@ -644233,15 +644233,15 @@ "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, - "Bitwise Operations": 24, + "Bitwise Operations": 0, "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 34, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 215, - "Structural Space Indentations": 0, + "Structural Tab Indentations": 0, + "Structural Space Indentations": 2, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -644258,15 +644258,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 54, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 54, + "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": 0, + "Orphaned Logic": 2, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -662148,9 +662148,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 2302.71, + "X": 2302.6, "Y": -120.92, - "Z": 5341.92 + "Z": 5341.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -662305,9 +662305,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2477.66, + "X": 2477.56, "Y": 39.5, - "Z": 4576.08 + "Z": 4575.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662493,9 +662493,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2524.32, + "X": 2524.22, "Y": 8.99, - "Z": 4701.65 + "Z": 4701.48 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662701,9 +662701,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3727.54, + "X": 3727.44, "Y": 80.38, - "Z": 4617.69 + "Z": 4617.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -662869,9 +662869,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3113.38, + "X": 3113.27, "Y": 53.04, - "Z": 4236.94 + "Z": 4236.77 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663047,9 +663047,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2760.19, + "X": 2760.08, "Y": 71.72, - "Z": 4321.6 + "Z": 4321.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663245,9 +663245,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2476.73, + "X": 2476.63, "Y": 116.31, - "Z": 4305.25 + "Z": 4305.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663415,9 +663415,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2908.09, + "X": 2907.99, "Y": 173.78, - "Z": 4137.42 + "Z": 4137.25 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663585,9 +663585,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3656.09, + "X": 3655.99, "Y": -94.58, - "Z": 5337.56 + "Z": 5337.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663755,9 +663755,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3317.12, + "X": 3317.01, "Y": -119.03, - "Z": 5266.89 + "Z": 5266.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -663943,9 +663943,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3477.97, + "X": 3477.87, "Y": 27.61, - "Z": 4578.14 + "Z": 4577.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664141,9 +664141,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2625.11, + "X": 2625.01, "Y": -112.01, - "Z": 5372.73 + "Z": 5372.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664319,9 +664319,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2457.25, + "X": 2457.15, "Y": -47.05, - "Z": 5209.7 + "Z": 5209.54 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664507,9 +664507,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3071.1, + "X": 3071.0, "Y": 10.17, - "Z": 4665.85 + "Z": 4665.69 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664778,9 +664778,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2868.19, + "X": 2868.08, "Y": -104.35, - "Z": 5148.73 + "Z": 5148.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -664976,9 +664976,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2741.52, + "X": 2741.42, "Y": -36.67, - "Z": 5170.09 + "Z": 5169.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665186,9 +665186,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3232.17, + "X": 3232.06, "Y": -138.4, - "Z": 5542.73 + "Z": 5542.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665374,9 +665374,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3842.0, + "X": 3841.89, "Y": 1.89, - "Z": 4982.82 + "Z": 4982.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665542,9 +665542,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3579.13, + "X": 3579.03, "Y": -30.36, - "Z": 5055.72 + "Z": 5055.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665720,9 +665720,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3284.82, + "X": 3284.72, "Y": 138.55, - "Z": 4331.77 + "Z": 4331.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -665898,9 +665898,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2301.94, + "X": 2301.84, "Y": -54.04, - "Z": 4827.2 + "Z": 4827.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -666068,9 +666068,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3576.04, + "X": 3575.94, "Y": 82.86, - "Z": 4175.1 + "Z": 4174.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -666238,9 +666238,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2993.44, + "X": 2993.34, "Y": -148.19, - "Z": 5686.97 + "Z": 5686.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -698897,9 +698897,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2030.54, + "X": 2030.46, "Y": -180.04, - "Z": 8901.09 + "Z": 8900.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699329,9 +699329,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1748.34, + "X": 1748.25, "Y": -268.88, - "Z": 9604.11 + "Z": 9603.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -699689,9 +699689,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 1941.22, + "X": 1941.14, "Y": -217.33, - "Z": 9218.05 + "Z": 9217.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -700450,9 +700450,9 @@ "Identity Proof": "Single Indicator (Ext: .java)" }, "2. Topological Coordinates": { - "X": 2203.47, + "X": 2203.39, "Y": -132.14, - "Z": 9790.75 + "Z": 9790.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -704527,7 +704527,7 @@ } }, "rust/syn": { - "Directory Group Magnitude": 694.6, + "Directory Group Magnitude": 693.6, "File Count": 8, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "87.5%", @@ -704538,14 +704538,14 @@ "Error & Exception Exposure": "28.92%", "Tech Debt Exposure": "42.52%", "Testing Exposure": "2.09%", - "API Exposure": "3.49%", + "API Exposure": "3.47%", "Concurrency Exposure": "1.86%", "State Flux Exposure": "42.34%", "Commented Logic Exposure": "19.37%", "Specification Exposure": "87.5%", "Instability Exposure": "43.75%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "23.82%", + "Documentation Exposure": "23.54%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -706211,9 +706211,9 @@ "Identity Proof": "Single Indicator (Ext: .rs)" }, "2. Topological Coordinates": { - "X": 6569.06, - "Y": -130.58, - "Z": 7183.87 + "X": 6569.11, + "Y": -130.59, + "Z": 7183.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -706225,7 +706225,7 @@ "Total LOC": 426, "Coding LOC": 316, "Documentation LOC": 64, - "Structural Magnitude": 160.22, + "Structural Magnitude": 159.22, "Control Flow Ratio": "38.7%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -706238,14 +706238,14 @@ "Error & Exception Exposure": "22.96%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.41%", - "API Exposure": "5.71%", + "API Exposure": "5.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "56.42%", "Commented Logic Exposure": "17.93%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.33%", + "Documentation Exposure": "23.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -706451,7 +706451,7 @@ "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 29, + "Exposed API / Public Exports": 28, "State Mutations / Variable Reassignments": 21, "Commented-out Code (Dead Logic)": 7, "Structured Documentation Blocks": 64, @@ -712363,9 +712363,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2243.89, + "X": 2243.95, "Y": 121.82, - "Z": 6201.3 + "Z": 6201.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712571,9 +712571,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3046.99, + "X": 3047.06, "Y": 123.14, - "Z": 6093.75 + "Z": 6093.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712749,9 +712749,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2718.79, + "X": 2718.85, "Y": 191.82, - "Z": 6506.02 + "Z": 6506.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -712949,9 +712949,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2415.57, + "X": 2415.63, "Y": 36.01, - "Z": 5278.37 + "Z": 5278.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713117,9 +713117,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2057.92, + "X": 2057.99, "Y": 98.28, - "Z": 5928.56 + "Z": 5928.72 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713315,9 +713315,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1982.09, + "X": 1982.15, "Y": 19.18, - "Z": 5476.38 + "Z": 5476.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713503,9 +713503,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2334.81, + "X": 2334.88, "Y": 154.25, - "Z": 6393.85 + "Z": 6394.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713681,9 +713681,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3329.53, + "X": 3329.59, "Y": 94.59, - "Z": 5967.44 + "Z": 5967.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -713849,9 +713849,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2092.76, + "X": 2092.82, "Y": 141.48, - "Z": 6509.14 + "Z": 6509.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714047,9 +714047,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3082.74, + "X": 3082.8, "Y": 7.86, - "Z": 5417.48 + "Z": 5417.63 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714215,9 +714215,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3102.68, + "X": 3102.74, "Y": 126.35, - "Z": 6595.66 + "Z": 6595.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714403,9 +714403,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2809.21, + "X": 2809.27, "Y": 76.52, - "Z": 5465.98 + "Z": 5466.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714601,9 +714601,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2459.34, + "X": 2459.41, "Y": 168.35, - "Z": 6975.03 + "Z": 6975.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714769,9 +714769,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 3189.02, + "X": 3189.09, "Y": 116.39, - "Z": 5759.38 + "Z": 5759.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -714957,9 +714957,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1748.86, + "X": 1748.92, "Y": 81.45, - "Z": 6044.75 + "Z": 6044.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715135,9 +715135,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2280.26, + "X": 2280.32, "Y": 27.96, - "Z": 5562.2 + "Z": 5562.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715323,9 +715323,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1905.21, + "X": 1905.28, "Y": 66.93, - "Z": 5497.05 + "Z": 5497.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715491,9 +715491,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2752.91, + "X": 2752.97, "Y": 121.84, - "Z": 6402.75 + "Z": 6402.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715689,9 +715689,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2475.59, + "X": 2475.65, "Y": 118.94, - "Z": 6012.15 + "Z": 6012.31 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -715897,9 +715897,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1831.15, + "X": 1831.21, "Y": 147.17, - "Z": 6571.8 + "Z": 6571.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716065,9 +716065,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2543.5, + "X": 2543.57, "Y": 28.87, - "Z": 5658.98 + "Z": 5659.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716295,9 +716295,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 1935.43, + "X": 1935.5, "Y": 124.5, - "Z": 6148.7 + "Z": 6148.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716483,9 +716483,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": 2924.67, + "X": 2924.73, "Y": 95.71, - "Z": 5560.82 + "Z": 5560.97 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -716706,9 +716706,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6411.85, + "X": -6410.18, "Y": -297.08, - "Z": -4506.73 + "Z": -4505.47 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -716863,9 +716863,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6039.06, + "X": -6037.39, "Y": -179.18, - "Z": -4041.27 + "Z": -4040.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717041,9 +717041,9 @@ "Identity Proof": "Single Indicator (Ext: .sh)" }, "2. Topological Coordinates": { - "X": -6538.12, + "X": -6536.45, "Y": -379.97, - "Z": -4656.51 + "Z": -4655.24 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717209,9 +717209,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6157.86, + "X": -6156.19, "Y": -292.28, - "Z": -5140.47 + "Z": -5139.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717387,9 +717387,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5918.1, + "X": -5916.43, "Y": -240.29, - "Z": -4441.93 + "Z": -4440.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717590,9 +717590,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6154.3, + "X": -6152.63, "Y": -269.3, - "Z": -4143.64 + "Z": -4142.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717800,9 +717800,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5649.5, + "X": -5647.83, "Y": -264.86, - "Z": -4907.91 + "Z": -4906.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -717970,9 +717970,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5536.38, + "X": -5534.71, "Y": -181.38, - "Z": -4825.86 + "Z": -4824.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718148,9 +718148,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5922.37, + "X": -5920.7, "Y": -244.29, - "Z": -5059.12 + "Z": -5057.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718366,9 +718366,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5746.19, + "X": -5744.52, "Y": -138.58, - "Z": -3837.66 + "Z": -3836.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718534,9 +718534,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -6445.43, + "X": -6443.76, "Y": -276.61, - "Z": -4192.35 + "Z": -4191.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718702,9 +718702,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5398.2, + "X": -5396.53, "Y": -50.64, - "Z": -4128.1 + "Z": -4126.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -718870,9 +718870,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5208.87, + "X": -5207.2, "Y": -112.55, - "Z": -4507.33 + "Z": -4506.07 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -719038,9 +719038,9 @@ "Identity Proof": "Absolute Consensus (Ext + Shebang)" }, "2. Topological Coordinates": { - "X": -5622.28, + "X": -5620.61, "Y": -116.13, - "Z": -4283.69 + "Z": -4282.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728077,9 +728077,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3076.47, + "X": 3076.53, "Y": -338.21, - "Z": 7203.35 + "Z": 7203.5 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728236,9 +728236,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3107.63, + "X": 3107.69, "Y": -406.69, - "Z": 7708.93 + "Z": 7709.08 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728393,9 +728393,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 2078.79, + "X": 2078.85, "Y": -192.07, - "Z": 7798.05 + "Z": 7798.21 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728550,9 +728550,9 @@ "Identity Proof": "Metadata Anchor (NOTICE)" }, "2. Topological Coordinates": { - "X": 2915.89, + "X": 2915.94, "Y": -252.8, - "Z": 7052.51 + "Z": 7052.66 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -728707,9 +728707,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2464.69, + "X": 2464.75, "Y": -272.98, - "Z": 7967.76 + "Z": 7967.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -728897,9 +728897,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2134.98, + "X": 2135.03, "Y": -157.85, - "Z": 7525.98 + "Z": 7526.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729245,9 +729245,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2685.67, + "X": 2685.73, "Y": -180.49, - "Z": 7027.05 + "Z": 7027.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -729637,9 +729637,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2835.04, + "X": 2835.09, "Y": -329.2, - "Z": 7888.37 + "Z": 7888.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730006,9 +730006,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2366.37, + "X": 2366.42, "Y": -216.96, - "Z": 7620.98 + "Z": 7621.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -730499,9 +730499,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2570.56, + "X": 2570.61, "Y": -230.5, - "Z": 7586.47 + "Z": 7586.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -732270,9 +732270,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 2365.29, + "X": 2365.34, "Y": -153.12, - "Z": 6839.06 + "Z": 6839.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -738860,7 +738860,7 @@ } }, "dockerfile/moby/builder/remotecontext/internal/tarsum": { - "Directory Group Magnitude": 508.82, + "Directory Group Magnitude": 506.82, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -738870,7 +738870,7 @@ "Error & Exception Exposure": "70.14%", "Tech Debt Exposure": "48.46%", "Testing Exposure": "2.44%", - "API Exposure": "4.09%", + "API Exposure": "4.03%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "79.84%", "Commented Logic Exposure": "1.57%", @@ -738895,8 +738895,8 @@ }, "2. Topological Coordinates": { "X": -6267.76, - "Y": -220.38, - "Z": 7543.35 + "Y": -220.37, + "Z": 7543.21 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739062,9 +739062,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6514.18, - "Y": -198.77, - "Z": 6716.81 + "X": -6514.13, + "Y": -198.78, + "Z": 6716.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739364,9 +739364,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6552.37, + "X": -6552.31, "Y": -210.0, - "Z": 7450.68 + "Z": 7450.61 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739378,7 +739378,7 @@ "Total LOC": 299, "Coding LOC": 224, "Documentation LOC": 39, - "Structural Magnitude": 246.18, + "Structural Magnitude": 244.18, "Control Flow Ratio": "45.3%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -739391,7 +739391,7 @@ "Error & Exception Exposure": "94.42%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.46%", - "API Exposure": "2.18%", + "API Exposure": "1.89%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "100.0%", "Commented Logic Exposure": "0.0%", @@ -739544,7 +739544,7 @@ "Type/Safety Bypasses": 3, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 8, - "Exposed API / Public Exports": 17, + "Exposed API / Public Exports": 15, "State Mutations / Variable Reassignments": 141, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 15, @@ -739667,9 +739667,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6764.9, - "Y": -122.11, - "Z": 7372.17 + "X": -6764.77, + "Y": -122.12, + "Z": 7372.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -739925,9 +739925,9 @@ "Identity Proof": "Single Indicator (Ext: .go)" }, "2. Topological Coordinates": { - "X": -6982.23, - "Y": -77.95, - "Z": 7075.68 + "X": -6982.07, + "Y": -77.96, + "Z": 7075.62 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -836673,9 +836673,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4182.42, + "X": 4182.48, "Y": 97.47, - "Z": 8637.3 + "Z": 8637.42 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -836830,9 +836830,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 4385.16, + "X": 4385.23, "Y": 141.84, - "Z": 8430.33 + "Z": 8430.45 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842442,9 +842442,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4381.15, + "X": 4380.94, "Y": 132.99, - "Z": 6064.76 + "Z": 6064.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -842599,9 +842599,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 4512.07, + "X": 4511.86, "Y": 114.61, - "Z": 7367.64 + "Z": 7367.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842756,9 +842756,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 5052.34, + "X": 5052.13, "Y": 58.4, - "Z": 6350.62 + "Z": 6350.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -842954,9 +842954,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4668.16, + "X": 4667.95, "Y": 155.83, - "Z": 6273.74 + "Z": 6273.44 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843122,9 +843122,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4451.16, + "X": 4450.95, "Y": 157.76, - "Z": 7016.56 + "Z": 7016.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843410,9 +843410,9 @@ "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 4689.57, + "X": 4689.36, "Y": 149.53, - "Z": 6649.25 + "Z": 6648.95 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843768,9 +843768,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 4151.42, + "X": 4151.21, "Y": 131.5, - "Z": 6614.05 + "Z": 6613.74 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -843925,9 +843925,9 @@ "Identity Proof": "Single Indicator (Ext: .json)" }, "2. Topological Coordinates": { - "X": 4890.18, + "X": 4889.97, "Y": 46.08, - "Z": 6862.46 + "Z": 6862.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851106,9 +851106,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3805.72, + "X": 3805.77, "Y": 220.88, - "Z": 7729.86 + "Z": 7729.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851296,9 +851296,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3487.04, + "X": 3487.1, "Y": 80.94, - "Z": 8011.76 + "Z": 8011.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -851643,9 +851643,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3731.22, + "X": 3731.28, "Y": 88.82, - "Z": 7928.43 + "Z": 7928.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852305,9 +852305,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3322.35, + "X": 3322.41, "Y": 55.02, - "Z": 7971.46 + "Z": 7971.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852517,9 +852517,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3515.7, + "X": 3515.75, "Y": 189.49, - "Z": 7486.56 + "Z": 7486.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852687,9 +852687,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4033.47, + "X": 4033.52, "Y": 96.85, - "Z": 8182.74 + "Z": 8182.86 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -852898,9 +852898,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 3571.84, + "X": 3571.9, "Y": 43.58, - "Z": 8446.15 + "Z": 8446.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -853099,9 +853099,9 @@ "Identity Proof": "Single Indicator (Ext: .groovy)" }, "2. Topological Coordinates": { - "X": 4113.62, + "X": 4113.68, "Y": 249.89, - "Z": 7770.87 + "Z": 7770.99 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -862226,7 +862226,7 @@ } }, "typescript/fp-ts": { - "Directory Group Magnitude": 181.4, + "Directory Group Magnitude": 179.5, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "80.0%", @@ -862237,14 +862237,14 @@ "Error & Exception Exposure": "46.62%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "48.46%", - "API Exposure": "10.5%", + "API Exposure": "10.42%", "Concurrency Exposure": "4.28%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "80.0%", "Instability Exposure": "40.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "44.34%", + "Documentation Exposure": "41.37%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -862261,9 +862261,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": 4872.22, + "X": 4871.98, "Y": 181.56, - "Z": 6054.92 + "Z": 6054.65 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -862420,8 +862420,8 @@ }, "2. Topological Coordinates": { "X": 5115.29, - "Y": 269.08, - "Z": 6369.13 + "Y": 269.02, + "Z": 6368.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -862433,7 +862433,7 @@ "Total LOC": 1854, "Coding LOC": 608, "Documentation LOC": 1110, - "Structural Magnitude": 42.62, + "Structural Magnitude": 41.22, "Control Flow Ratio": "11.6%", "Popularity Rank": 3, "Raw Churn Frequency": 0.0, @@ -862446,14 +862446,14 @@ "Error & Exception Exposure": "45.36%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "12.86%", + "API Exposure": "12.55%", "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": "19.54%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -863089,7 +863089,7 @@ "Type/Safety Bypasses": 11, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 130, + "Exposed API / Public Exports": 116, "State Mutations / Variable Reassignments": 8, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 119, @@ -863237,9 +863237,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5606.57, + "X": 5606.34, "Y": 227.14, - "Z": 6510.18 + "Z": 6509.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -863395,9 +863395,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5352.27, - "Y": 62.65, - "Z": 5943.64 + "X": 5352.03, + "Y": 62.68, + "Z": 5943.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -863409,7 +863409,7 @@ "Total LOC": 1882, "Coding LOC": 662, "Documentation LOC": 1053, - "Structural Magnitude": 35.14, + "Structural Magnitude": 34.64, "Control Flow Ratio": "2.5%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -863422,14 +863422,14 @@ "Error & Exception Exposure": "41.13%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "80.0%", - "API Exposure": "13.34%", + "API Exposure": "13.26%", "Concurrency Exposure": "21.39%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "50.04%", + "Documentation Exposure": "42.76%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -863845,7 +863845,7 @@ "Type/Safety Bypasses": 16, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 157, + "Exposed API / Public Exports": 152, "State Mutations / Variable Reassignments": 5, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 152, @@ -863995,9 +863995,9 @@ "Identity Proof": "Single Indicator (Ext: .ts)" }, "2. Topological Coordinates": { - "X": 5348.18, + "X": 5347.95, "Y": 177.34, - "Z": 6051.11 + "Z": 6050.84 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867722,9 +867722,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3768.25, + "X": 3768.32, "Y": 16.76, - "Z": 6700.26 + "Z": 6700.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -867879,9 +867879,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3480.56, + "X": 3480.63, "Y": 49.47, - "Z": 6951.69 + "Z": 6951.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868036,9 +868036,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3764.35, + "X": 3764.42, "Y": -76.57, - "Z": 6481.81 + "Z": 6481.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868193,9 +868193,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4005.48, + "X": 4005.55, "Y": 6.25, - "Z": 7025.52 + "Z": 7025.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868350,9 +868350,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3277.39, + "X": 3277.46, "Y": 10.01, - "Z": 6636.47 + "Z": 6636.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868507,9 +868507,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4103.18, + "X": 4103.25, "Y": 1.61, - "Z": 6690.81 + "Z": 6690.94 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868664,9 +868664,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3614.5, + "X": 3614.57, "Y": 51.98, - "Z": 7191.58 + "Z": 7191.71 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868821,9 +868821,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3446.46, + "X": 3446.53, "Y": -98.14, - "Z": 6174.2 + "Z": 6174.32 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -868978,9 +868978,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4220.2, + "X": 4220.27, "Y": 55.71, - "Z": 6995.55 + "Z": 6995.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869135,9 +869135,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3168.11, + "X": 3168.18, "Y": 24.54, - "Z": 6910.67 + "Z": 6910.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869292,9 +869292,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3989.68, + "X": 3989.75, "Y": -131.27, - "Z": 6257.02 + "Z": 6257.15 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869449,9 +869449,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3933.39, + "X": 3933.46, "Y": 70.76, - "Z": 7339.99 + "Z": 7340.12 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869606,9 +869606,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 3129.4, + "X": 3129.47, "Y": -31.6, - "Z": 6325.78 + "Z": 6325.91 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -869763,9 +869763,9 @@ "Identity Proof": "Single Indicator (Ext: .s)" }, "2. Topological Coordinates": { - "X": 4385.23, + "X": 4385.3, "Y": 3.17, - "Z": 6464.96 + "Z": 6465.08 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -870865,9 +870865,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -6217.85, + "X": -6213.7, "Y": 109.85, - "Z": -8045.17 + "Z": -8039.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -871022,9 +871022,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5466.89, + "X": -5462.74, "Y": 123.4, - "Z": -7713.75 + "Z": -7708.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871179,9 +871179,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5709.19, + "X": -5705.05, "Y": 91.46, - "Z": -7750.6 + "Z": -7744.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871367,9 +871367,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -6007.59, + "X": -6003.44, "Y": 89.17, - "Z": -7534.38 + "Z": -7528.67 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -871524,9 +871524,9 @@ "Identity Proof": "Single Indicator (Ext: .gradle)" }, "2. Topological Coordinates": { - "X": -5675.11, + "X": -5670.96, "Y": 93.62, - "Z": -8166.9 + "Z": -8161.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877530,9 +877530,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4606.09, + "X": -4603.68, "Y": -77.64, - "Z": -8469.78 + "Z": -8464.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877828,9 +877828,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4320.04, + "X": -4317.64, "Y": -42.95, - "Z": -9146.88 + "Z": -9142.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -877996,9 +877996,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4847.12, + "X": -4844.71, "Y": -172.45, - "Z": -9025.5 + "Z": -9020.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878164,9 +878164,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4109.19, + "X": -4106.78, "Y": 23.44, - "Z": -8519.41 + "Z": -8514.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -878342,9 +878342,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": -4377.72, + "X": -4375.31, "Y": -92.58, - "Z": -8811.45 + "Z": -8806.6 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889222,9 +889222,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7572.69, + "X": -7571.18, "Y": -160.84, - "Z": -5505.48 + "Z": -5504.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889379,9 +889379,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7349.88, + "X": -7348.37, "Y": -103.73, - "Z": -6239.03 + "Z": -6237.83 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889536,9 +889536,9 @@ "Identity Proof": "Single Indicator (Ext: .proto)" }, "2. Topological Coordinates": { - "X": -7370.99, + "X": -7369.48, "Y": -123.93, - "Z": -5972.62 + "Z": -5971.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889718,9 +889718,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2735.31, + "X": 2735.27, "Y": 13.48, - "Z": 9280.45 + "Z": 9280.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -889884,9 +889884,9 @@ "Identity Proof": "Single Indicator (Ext: .cs)" }, "2. Topological Coordinates": { - "X": 2945.0, + "X": 2944.96, "Y": -7.95, - "Z": 9276.94 + "Z": 9276.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892152,9 +892152,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6648.89, + "X": -6643.0, "Y": -147.44, - "Z": -7315.87 + "Z": -7309.33 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892309,9 +892309,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6921.96, + "X": -6916.07, "Y": -198.73, - "Z": -7385.41 + "Z": -7378.87 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -892466,9 +892466,9 @@ "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": -6680.73, + "X": -6674.84, "Y": -172.08, - "Z": -7751.2 + "Z": -7744.65 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896477,9 +896477,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3438.34, + "X": 3438.38, "Y": 10.06, - "Z": 8594.68 + "Z": 8594.79 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -896634,9 +896634,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3284.0, + "X": 3284.04, "Y": -22.31, - "Z": 9016.83 + "Z": 9016.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896795,9 +896795,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3458.12, + "X": 3458.16, "Y": 78.84, - "Z": 8301.92 + "Z": 8302.03 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -896954,9 +896954,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3701.06, + "X": 3701.1, "Y": 46.7, - "Z": 8968.74 + "Z": 8968.85 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -897114,9 +897114,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 3024.83, + "X": 3024.87, "Y": 6.34, - "Z": 8592.07 + "Z": 8592.18 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899052,9 +899052,9 @@ "Identity Proof": "Single Indicator (Ext: .mlir)" }, "2. Topological Coordinates": { - "X": -6560.51, + "X": -6560.34, "Y": -136.67, - "Z": 8021.21 + "Z": 8021.0 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -899796,9 +899796,9 @@ "Identity Proof": "Ecosystem Consensus Lock (75% Local Dominance)" }, "2. Topological Coordinates": { - "X": -7243.87, + "X": -7242.64, "Y": 164.39, - "Z": -6711.63 + "Z": -6710.52 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901015,9 +901015,9 @@ "Identity Proof": "Single Indicator (Ext: .csv)" }, "2. Topological Coordinates": { - "X": -6375.35, + "X": -6371.25, "Y": 155.1, - "Z": -8020.1 + "Z": -8014.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901196,9 +901196,9 @@ "Identity Proof": "Single Indicator (Ext: .yml)" }, "2. Topological Coordinates": { - "X": 7765.65, + "X": 7765.3, "Y": 95.21, - "Z": -5475.82 + "Z": -5475.57 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901378,9 +901378,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 5412.0, + "X": 5411.79, "Y": -204.31, - "Z": 6742.55 + "Z": 6742.27 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -901535,9 +901535,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5250.47, + "X": 5250.25, "Y": -169.51, - "Z": 7398.86 + "Z": 7398.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901713,9 +901713,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 5411.06, + "X": 5410.84, "Y": -152.64, - "Z": 7051.42 + "Z": 7051.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -901935,9 +901935,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": 5171.5, + "X": 5171.33, "Y": -44.32, - "Z": 7823.61 + "Z": 7823.35 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902116,9 +902116,9 @@ "Identity Proof": "Metadata Anchor (pom.xml)" }, "2. Topological Coordinates": { - "X": -7879.33, + "X": -7879.23, "Y": -82.68, - "Z": 4748.71 + "Z": 4748.64 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902298,9 +902298,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -6640.28, + "X": -6639.03, "Y": 98.47, - "Z": -6407.8 + "Z": -6406.57 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -902455,9 +902455,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6242.09, + "X": -6240.84, "Y": 101.11, - "Z": -6700.62 + "Z": -6699.39 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902623,9 +902623,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -7031.78, + "X": -7030.53, "Y": 78.48, - "Z": -6398.81 + "Z": -6397.59 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902780,9 +902780,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6788.29, + "X": -6787.04, "Y": 122.85, - "Z": -6132.38 + "Z": -6131.16 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -902937,9 +902937,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6386.74, + "X": -6385.49, "Y": 68.89, - "Z": -6163.71 + "Z": -6162.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903094,9 +903094,9 @@ "Identity Proof": "Single Indicator (Ext: .css)" }, "2. Topological Coordinates": { - "X": -6612.3, + "X": -6611.05, "Y": 61.87, - "Z": -6727.32 + "Z": -6726.09 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -903276,9 +903276,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 12050.23, + "X": 12048.84, "Y": 146.31, - "Z": 1849.43 + "Z": 1849.22 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -903433,9 +903433,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 11838.19, + "X": 11836.8, "Y": 104.96, - "Z": 1874.63 + "Z": 1874.42 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -904628,9 +904628,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": -5019.35, + "X": -5016.93, "Y": 12.49, - "Z": -9126.56 + "Z": -9122.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -906406,9 +906406,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3993.08, + "X": 3993.12, "Y": 161.35, - "Z": 9109.88 + "Z": 9109.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -907133,9 +907133,9 @@ "Identity Proof": "Single Indicator (Ext: .sql)" }, "2. Topological Coordinates": { - "X": 2508.87, + "X": 2508.78, "Y": -179.88, - "Z": 9666.24 + "Z": 9665.89 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908064,9 +908064,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5411.39, + "X": -5406.23, "Y": -155.19, - "Z": -9040.39 + "Z": -9032.27 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908232,9 +908232,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5621.14, + "X": -5615.98, "Y": -246.07, - "Z": -8431.94 + "Z": -8423.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -908389,9 +908389,9 @@ "Identity Proof": "Single Indicator (Ext: .cpy)" }, "2. Topological Coordinates": { - "X": -5407.47, + "X": -5402.32, "Y": -270.45, - "Z": -8569.91 + "Z": -8561.78 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -910832,9 +910832,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 4555.46, + "X": 7529.77, "Y": -267.01, - "Z": 7519.05 + "Z": -5095.58 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -910989,9 +910989,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4791.08, + "X": 7765.39, "Y": -224.32, - "Z": 7828.96 + "Z": -4785.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911148,9 +911148,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4663.0, + "X": 7637.31, "Y": -246.16, - "Z": 7419.25 + "Z": -5195.38 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911307,9 +911307,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4365.76, + "X": 7340.07, "Y": -251.61, - "Z": 7836.29 + "Z": -4778.34 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911535,9 +911535,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4192.11, + "X": 7166.42, "Y": -264.83, - "Z": 7517.8 + "Z": -5096.82 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -911694,9 +911694,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 4992.25, + "X": 7966.56, "Y": -156.21, - "Z": 7356.95 + "Z": -5257.68 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -913980,9 +913980,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 12114.26, + "X": 12113.32, "Y": -208.41, - "Z": 2648.11 + "Z": 2647.91 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -915790,9 +915790,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7493.82, + "X": -7492.17, "Y": -57.56, - "Z": -5373.09 + "Z": -5371.89 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916333,9 +916333,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7154.51, + "X": -7154.37, "Y": 130.81, - "Z": 7696.03 + "Z": 7695.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916514,9 +916514,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -6937.11, + "X": -6935.89, "Y": 266.93, - "Z": -7013.4 + "Z": -7012.16 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -916876,9 +916876,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 5627.38, + "X": 5627.15, "Y": 209.11, - "Z": 6872.27 + "Z": 6871.99 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917238,9 +917238,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -5940.1, + "X": -5936.12, "Y": -69.95, - "Z": -8477.49 + "Z": -8471.76 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917419,9 +917419,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 8228.34, + "X": 8228.05, "Y": 22.26, - "Z": -5145.99 + "Z": -5145.81 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917600,9 +917600,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 4765.83, + "X": 4765.67, "Y": 260.38, - "Z": 8322.92 + "Z": 8322.64 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917781,9 +917781,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -8232.79, + "X": -8232.7, "Y": 269.29, - "Z": 4379.51 + "Z": 4379.46 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -917962,9 +917962,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -4476.08, + "X": -4473.8, "Y": 175.43, - "Z": -9445.17 + "Z": -9440.32 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -918324,9 +918324,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 3501.96, + "X": 3502.0, "Y": -26.04, - "Z": 9481.66 + "Z": 9481.77 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -919048,9 +919048,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": 1896.68, + "X": 1896.6, "Y": 215.25, - "Z": 9999.68 + "Z": 9999.31 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -922851,9 +922851,9 @@ "Identity Proof": "Prose Extension (.md)" }, "2. Topological Coordinates": { - "X": -7628.16, + "X": -7626.69, "Y": -9.01, - "Z": -6239.4 + "Z": -6238.19 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -923394,9 +923394,9 @@ "Identity Proof": "Single Indicator (Exact Match)" }, "2. Topological Coordinates": { - "X": -6856.74, + "X": -6851.07, "Y": 220.39, - "Z": -7799.45 + "Z": -7792.88 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -927132,9 +927132,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7532.14, + "X": 4628.99, "Y": -168.29, - "Z": 3786.12 + "Z": 7211.9 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927289,9 +927289,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7298.91, + "X": 4862.22, "Y": -146.06, - "Z": 4354.71 + "Z": 7780.49 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927467,9 +927467,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7601.32, + "X": 4559.82, "Y": -164.4, - "Z": 4302.63 + "Z": 7728.4 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927624,9 +927624,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7966.05, + "X": 4195.08, "Y": -174.69, - "Z": 4061.59 + "Z": 7487.37 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927781,9 +927781,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7798.79, + "X": 4362.34, "Y": -198.47, - "Z": 4239.49 + "Z": 7665.26 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -927938,9 +927938,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": -7209.78, + "X": 4951.35, "Y": -163.76, - "Z": 4042.51 + "Z": 7468.29 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -928797,9 +928797,9 @@ "Identity Proof": "Single Indicator (Ext: .bat)" }, "2. Topological Coordinates": { - "X": 5608.77, + "X": 5608.56, "Y": -64.84, - "Z": 7781.39 + "Z": 7781.11 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",