From ee74a732845aca4d06391998ac3c27c667ef213d Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sun, 23 Aug 2026 21:48:59 -0400 Subject: [PATCH 1/3] fix(m4): implement bracket-aware custom slicing mode (fixes #2204) --- gitgalaxy/core/detector.py | 92 +- tests/core_engine/test_detector.py | 42 + tests/golden_master_zero_dep_audit.json | 1106 +++++++++++------------ 3 files changed, 685 insertions(+), 555 deletions(-) diff --git a/gitgalaxy/core/detector.py b/gitgalaxy/core/detector.py index 17afaba86..fa9aeda2c 100644 --- a/gitgalaxy/core/detector.py +++ b/gitgalaxy/core/detector.py @@ -2018,11 +2018,12 @@ def _function_slice( # which only "succeeds" when a `{` happens to appear by # coincidence. This dropped ~97.4% of real matches (1 of 39 # raw matches reached the named list). Mode A's "greedy to - # the next func_start match" body heuristic is a correct fit. - "m4", ) or family in ("column_sensitive"): mode_name = "Mode_A_Labels" sats, impact = self._slice_by_labels(code, rules, offset, spatial_map) + elif lang_id == "m4": + mode_name = "Mode_F_M4_Brackets" + sats, impact = self._slice_by_m4_brackets(code, rules, offset, spatial_map) elif family in ("single_line_only", "multi_style_dash") or lang_id in ( "python", "yaml", @@ -4414,6 +4415,93 @@ def preserve_newlines(m): # SHARED FUNCTIONAL METRICS ENGINE # ============================================================================== + def _slice_by_m4_brackets( + self, + code: str, + rules: dict[str, Any], + offset: int, + spatial_map: dict[str, list[int]], + ) -> tuple[list[FunctionNode], float]: + """[INTEGRATION MODE F] - M4 Bracket-Aware Slicing""" + satellites: list[FunctionNode] = [] + sum_fxn_impact = 0.0 + func_start = rules.get("func_start") + + if not func_start: + return [], 0.0 + + matches = list(func_start.finditer(code)) + if not matches: + return [], 0.0 + + for match in matches: + start_idx = match.start() + + # Find the opening parenthesis for this macro invocation + paren_start = code.find("(", start_idx) + if paren_start == -1: + continue + + depth_paren = 0 + depth_bracket = 0 + pos = paren_start + + while pos < len(code): + ch = code[pos] + if ch == "[": + depth_bracket += 1 + elif ch == "]": + depth_bracket = max(0, depth_bracket - 1) + elif ch == "(": + # In M4, brackets quote everything inside them, including parens + if depth_bracket == 0: + depth_paren += 1 + elif ch == ")" and depth_bracket == 0: + depth_paren -= 1 + if depth_paren == 0: + break + pos += 1 + + end_idx = min(pos + 1, len(code)) + + block = code[start_idx:end_idx].strip() + if not block: + continue + + name = "unknown" + if match.group(1) is not None: + name = match.group(1).strip() + elif match.lastindex and match.group(match.lastindex) is not None: + name = match.group(match.lastindex).strip() + else: + # Fallback extraction if regex group failed + # The first argument in parentheses + args_text = code[paren_start + 1 : end_idx - 1] + # Regex will typically capture the name, but just in case: + m_name = re.search(r"^\s*(?:`([^']+)'|\[{1,2}([^\]]+)\]{0,2}|([A-Za-z_][A-Za-z0-9_]*))", args_text) + if m_name: + name = next(g for g in m_name.groups() if g is not None).strip() + + start_line = offset + code.count("\n", 0, start_idx) + 1 + loc = block.count("\n") + 1 + + sat, mag = self._calculate_block_metrics( + name, + block, + loc, + start_line, + start_line + loc - 1, + rules, + start_idx, + end_idx, + spatial_map, + ) + + satellites.append(sat) + sum_fxn_impact += mag + + return satellites, sum_fxn_impact + # galaxyscope:ignore sec_high_risk_execution def _matching_paren_end(self, text: str, open_idx: int) -> int: diff --git a/tests/core_engine/test_detector.py b/tests/core_engine/test_detector.py index 88d6ca6eb..a7a4208d6 100644 --- a/tests/core_engine/test_detector.py +++ b/tests/core_engine/test_detector.py @@ -3380,3 +3380,45 @@ def test_detector_nested_functions_in_signature_dropped(): # should prevent it from being extracted as a real satellite function. satellites, _ = opt._slice_by_braces(code, "typescript", opt.languages["typescript"]["rules"], 0, {}) assert len(satellites) == 0, "Nested parameter function `f` should have been skipped by signature_end logic!" + +def test_detector_m4_bracket_slicing_with_unbalanced_quotes(): + """ + Issue #2204: m4 macro bodies are bounded by `(` and `)`, but they can contain + shell fragments with unbalanced quotes (e.g. `"` and `'`) that break Mode B's + string shielding. They also use `[` and `]` to quote strings (which protects + internal parentheses). The custom `_slice_by_m4_brackets` mode handles this. + """ + from gitgalaxy.core.detector import StructuralExtractor + from gitgalaxy.standards.language_standards import LANGUAGE_DEFINITIONS + + code = ''' +AC_DEFUN([AC_PROG_F77], []) + +AC_DEFUN([MY_MACRO], [ + if test "$foo" = "bar("; then + echo "unbalanced quote here -> '" + fi + # [ ( nested bracket paren ignored ) ] +]) + +AC_DEFUN([ANOTHER], +[ + echo "done" +]) +''' + extractor = StructuralExtractor("m4", LANGUAGE_DEFINITIONS) + rules = LANGUAGE_DEFINITIONS["m4"]["rules"] + + sats, _ = extractor._slice_by_m4_brackets(code, rules, 0, {}) + + assert len(sats) == 3 + + # Check names + assert sats[0]["name"] == "AC_PROG_F77" + assert sats[1]["name"] == "MY_MACRO" + assert sats[2]["name"] == "ANOTHER" + + # Check exact lengths + assert sats[0]["loc"] == 1 + assert sats[1]["loc"] == 6 + assert sats[2]["loc"] == 4 diff --git a/tests/golden_master_zero_dep_audit.json b/tests/golden_master_zero_dep_audit.json index 4f8594be8..2dfee2b2e 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-23T22:36:45.480077+00:00", - "Total Scan Duration": "38.05 seconds" + "Analysis ISO Timestamp": "2026-08-24T01:48:48.621223+00:00", + "Total Scan Duration": "35.52 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -26,7 +26,7 @@ "summary": { "total_files": 1104, "verified_files": 935, - "total_loc": 587175, + "total_loc": 588838, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 84.7 @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.695, + "avg_cognitive_load": 24.682, "avg_safety_score": 38.656, - "avg_tech_debt": 25.011, - "avg_documentation": 21.56 + "avg_tech_debt": 24.799, + "avg_documentation": 21.603 }, "composition": { "xml": { @@ -279,8 +279,8 @@ }, "m4": { "files": 8, - "loc": 13321, - "impact": 669.62 + "loc": 14984, + "impact": 658.78 }, "python": { "files": 268, @@ -1135,11 +1135,11 @@ }, "cobol/gnucobol_internals": { "file_count": 5, - "total_mass": 15668.75, + "total_mass": 15672.55, "avg_exposures": { "cognitive_load": 48.32, "safety_score": 68.48, - "tech_debt": 14.48, + "tech_debt": 14.44, "verification": 48.92, "api_exposure": 5.08, "concurrency": 0.0, @@ -1148,7 +1148,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 45.89, + "documentation": 45.92, "secrets_risk": 0.0 } }, @@ -1496,9 +1496,9 @@ }, "m4/curl": { "file_count": 2, - "total_mass": 257.74, + "total_mass": 268.24, "avg_exposures": { - "cognitive_load": 0.0, + "cognitive_load": 2.41, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.15, @@ -1509,26 +1509,26 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 15.08, + "documentation": 16.04, "secrets_risk": 0.0 } }, "m4/gnucobol": { "file_count": 2, - "total_mass": 192.98, + "total_mass": 158.82, "avg_exposures": { - "cognitive_load": 2.61, + "cognitive_load": 2.57, "safety_score": 0.0, - "tech_debt": 13.66, + "tech_debt": 11.15, "verification": 1.15, - "api_exposure": 5.51, + "api_exposure": 5.67, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 2.44, "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 14.78, + "documentation": 17.48, "secrets_risk": 0.0 } }, @@ -1933,12 +1933,12 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 96.06, + "total_mass": 105.08, "avg_exposures": { - "cognitive_load": 4.78, + "cognitive_load": 1.38, "safety_score": 0.0, - "tech_debt": 75.12, - "verification": 2.36, + "tech_debt": 36.53, + "verification": 2.33, "api_exposure": 1.74, "concurrency": 0.0, "state_flux": 0.0, @@ -1946,7 +1946,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 19.01, + "documentation": 25.59, "secrets_risk": 0.0 } }, @@ -62933,7 +62933,7 @@ } }, "cobol/gnucobol_internals": { - "Directory Group Magnitude": 15668.75, + "Directory Group Magnitude": 15672.55, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -62941,7 +62941,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "48.32%", "Error & Exception Exposure": "68.48%", - "Tech Debt Exposure": "14.48%", + "Tech Debt Exposure": "14.44%", "Testing Exposure": "48.92%", "API Exposure": "5.08%", "Concurrency Exposure": "0.0%", @@ -62950,7 +62950,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.89%", + "Documentation Exposure": "45.92%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -65669,9 +65669,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": -4606.72, - "Y": 1.1, - "Z": -3451.53 + "X": -4606.54, + "Y": 1.12, + "Z": -3451.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -65681,9 +65681,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7252, - "Coding LOC": 6117, - "Documentation LOC": 190, - "Structural Magnitude": 137.34, + "Coding LOC": 6307, + "Documentation LOC": 0, + "Structural Magnitude": 141.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -65694,7 +65694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.78%", + "Tech Debt Exposure": "11.63%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -65703,7 +65703,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -65722,7 +65722,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 633, + "Unit Test Assertions": 643, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -220055,7 +220055,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.57%", + "Testing Exposure": "2.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -336297,7 +336297,7 @@ "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "75.17%", "Tech Debt Exposure": "69.71%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -406085,14 +406085,14 @@ } }, "m4/curl": { - "Directory Group Magnitude": 257.74, + "Directory Group Magnitude": 268.24, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "2.41%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", @@ -406103,7 +406103,7 @@ "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.08%", + "Documentation Exposure": "16.04%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -406120,9 +406120,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4380.65, - "Y": 211.04, - "Z": -4664.33 + "X": 4380.63, + "Y": 211.01, + "Z": -4664.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -406277,9 +406277,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4622.19, + "X": 4622.51, "Y": 251.14, - "Z": -5082.8 + "Z": -5083.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -406289,18 +406289,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 5493, - "Coding LOC": 4237, - "Documentation LOC": 724, - "Structural Magnitude": 256.74, - "Control Flow Ratio": "0.0%", + "Coding LOC": 4762, + "Documentation LOC": 199, + "Structural Magnitude": 267.24, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.004 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "4.81%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -406311,13 +406311,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.15%", + "Documentation Exposure": "32.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 15, "Sequential Logic Declarations": 0, "Function Parameters": 7, "Function/Method Declarations": 0, @@ -406365,7 +406365,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3101, + "Structural Space Indentations": 3207, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -413176,366 +413176,6 @@ } } }, - "m4/gnucobol": { - "Directory Group Magnitude": 192.98, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "50.0%", - "Unclassified": "50.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "2.61%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.66%", - "Testing Exposure": "1.15%", - "API Exposure": "5.51%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "2.44%", - "Specification Exposure": "50.0%", - "Instability Exposure": "25.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "m4/gnucobol/COPYING": { - "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "m4/gnucobol/COPYING", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" - }, - "2. Topological Coordinates": { - "X": -4837.46, - "Y": -126.2, - "Z": 4397.19 - }, - "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": 675, - "Coding LOC": 0, - "Documentation LOC": 553, - "Structural Magnitude": 13.5, - "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": [] - }, - "m4/gnucobol/configure.ac": { - "1. Artifact Identity": { - "Filename": "configure.ac", - "Path": "m4/gnucobol/configure.ac", - "Language": "M4", - "Architect": "Unknown Architect", - "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (configure.ac)" - }, - "2. Topological Coordinates": { - "X": -4585.55, - "Y": -118.16, - "Z": 3970.8 - }, - "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": 2922, - "Coding LOC": 2144, - "Documentation LOC": 517, - "Structural Magnitude": 179.48, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.026 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.32%", - "Testing Exposure": "2.31%", - "API Exposure": "11.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "4.88%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "AC_PROG_F77", - "Structural Impact": 55.5, - "Lines of Code (LOC)": 1532, - "Control Flow Branches": 36, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 658, - "End Line": 2189 - }, - { - "Function Name": "AC_PROG_CXX", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 657 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 42, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 80, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "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": 10, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 12, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 126, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 240, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 70, - "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": 814, - "Structural Space Indentations": 491, - "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": 362, - "Design Camel Case": 0, - "Design Snake Case": 85, - "Design Pascal Case": 0, - "Design Upper Case": 273, - "Design Short Vars": 8, - "Design Long Vars": 4, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 160.92, "File Count": 5, @@ -417508,6 +417148,366 @@ } } }, + "m4/gnucobol": { + "Directory Group Magnitude": 158.82, + "File Count": 2, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "50.0%", + "Unclassified": "50.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "2.57%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "11.15%", + "Testing Exposure": "1.15%", + "API Exposure": "5.67%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "2.44%", + "Specification Exposure": "50.0%", + "Instability Exposure": "25.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "17.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/gnucobol/COPYING": { + "1. Artifact Identity": { + "Filename": "COPYING", + "Path": "m4/gnucobol/COPYING", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" + }, + "2. Topological Coordinates": { + "X": -4834.07, + "Y": -126.28, + "Z": 4394.12 + }, + "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": 675, + "Coding LOC": 0, + "Documentation LOC": 553, + "Structural Magnitude": 13.5, + "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": [] + }, + "m4/gnucobol/configure.ac": { + "1. Artifact Identity": { + "Filename": "configure.ac", + "Path": "m4/gnucobol/configure.ac", + "Language": "M4", + "Architect": "Unknown Architect", + "Indentation Style": "Mixed (33.2% Spaces / 66.8% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (configure.ac)" + }, + "2. Topological Coordinates": { + "X": -4583.85, + "Y": -118.16, + "Z": 3969.26 + }, + "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": 2922, + "Coding LOC": 2606, + "Documentation LOC": 55, + "Structural Magnitude": 145.32, + "Control Flow Ratio": "98.1%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.021 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.13%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "22.3%", + "Testing Exposure": "2.3%", + "API Exposure": "11.33%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "4.88%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "34.96%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "AC_PROG_CXX", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 657 + }, + { + "Function Name": "AC_PROG_F77", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 658, + "End Line": 658 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 51, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 48, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 91, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 1, + "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": 10, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 12, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 1, + "Preprocessor Macros": 136, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 248, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 71, + "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": 1014, + "Structural Space Indentations": 504, + "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": 384, + "Design Camel Case": 0, + "Design Snake Case": 86, + "Design Pascal Case": 0, + "Design Upper Case": 294, + "Design Short Vars": 11, + "Design Long Vars": 4, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "assembly/hellosilicon": { "Directory Group Magnitude": 134.16, "File Count": 4, @@ -419660,16 +419660,16 @@ } }, "m4/curl/m4": { - "Directory Group Magnitude": 96.06, + "Directory Group Magnitude": 105.08, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.78%", + "Cognitive Load Exposure": "1.38%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "75.12%", - "Testing Exposure": "2.36%", + "Tech Debt Exposure": "36.53%", + "Testing Exposure": "2.33%", "API Exposure": "1.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -419677,7 +419677,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.01%", + "Documentation Exposure": "25.59%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -419694,9 +419694,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6294.88, - "Y": -77.67, - "Z": -1004.48 + "X": 6294.64, + "Y": -77.89, + "Z": -1003.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419706,9 +419706,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 577, - "Coding LOC": 375, - "Documentation LOC": 163, - "Structural Magnitude": 38.4, + "Coding LOC": 503, + "Documentation LOC": 35, + "Structural Magnitude": 40.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -419719,8 +419719,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.35%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -419728,7 +419728,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "14.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -419855,22 +419855,22 @@ { "Function Name": "CURL_CHECK_OPTION_ECH", "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 510, - "End Line": 538 + "End Line": 537 }, { "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 546, - "End Line": 576 + "End Line": 575 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -419923,7 +419923,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 324, + "Structural Space Indentations": 357, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419948,7 +419948,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -419992,9 +419992,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6581.06, - "Y": -42.94, - "Z": -1681.86 + "X": 6795.59, + "Y": 1.77, + "Z": -995.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420004,9 +420004,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 123, - "Coding LOC": 70, - "Documentation LOC": 35, - "Structural Magnitude": 4.9, + "Coding LOC": 105, + "Documentation LOC": 0, + "Structural Magnitude": 5.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -420017,7 +420017,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "94.57%", "Testing Exposure": "2.3%", "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", @@ -420026,7 +420026,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.65%", + "Documentation Exposure": "36.35%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -420091,7 +420091,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Space Indentations": 75, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420160,9 +420160,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6053.85, - "Y": -172.48, - "Z": -1560.34 + "X": 6052.05, + "Y": -173.05, + "Z": -1560.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420172,21 +420172,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 52, - "Coding LOC": 21, - "Documentation LOC": 29, - "Structural Magnitude": 1.82, + "Coding LOC": 50, + "Documentation LOC": 0, + "Structural Magnitude": 2.5, "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.238 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.43%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "88.08%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420194,19 +420194,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.66%", + "Documentation Exposure": "36.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Structural Impact": 1.5, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 25, - "End Line": 33 + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -420259,7 +420259,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 24, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420328,9 +420328,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6792.0, - "Y": 23.46, - "Z": -1054.09 + "X": 6580.46, + "Y": -20.93, + "Z": -1741.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420340,21 +420340,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 86, - "Coding LOC": 19, - "Documentation LOC": 59, - "Structural Magnitude": 4.78, + "Coding LOC": 78, + "Documentation LOC": 0, + "Structural Magnitude": 5.96, "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.263 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.46%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420362,7 +420362,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "27.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -420462,7 +420462,7 @@ "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, @@ -420506,9 +420506,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6523.37, + "X": 6524.14, "Y": -92.58, - "Z": -1346.27 + "Z": -1346.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420518,9 +420518,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 668, - "Coding LOC": 338, - "Documentation LOC": 253, - "Structural Magnitude": 46.16, + "Coding LOC": 573, + "Documentation LOC": 18, + "Structural Magnitude": 50.06, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -420531,8 +420531,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.77%", - "Testing Exposure": "2.37%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420540,19 +420540,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "13.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 72, + "Structural Impact": 4.1, + "Lines of Code (LOC)": 54, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 473, - "End Line": 544 + "End Line": 526 }, { "Function Name": "XC_CHECK_PATH_SEPARATOR", @@ -420565,144 +420565,144 @@ "End Line": 667 }, { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 573 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 558 + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 348 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 107 + "Start Line": 176, + "End Line": 194 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 208, - "End Line": 224 + "End Line": 227 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 241, - "End Line": 257 + "End Line": 260 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 270, - "End Line": 286 + "End Line": 289 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 299, - "End Line": 315 + "End Line": 318 }, { - "Function Name": "AC_DEFUN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 135 + "Start Line": 328, + "End Line": 351 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 163 + "Start Line": 369, + "End Line": 421 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Function Name": "_XC_CFG_PRE_POSTLUDE", "Structural Impact": 1.8, "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 191 + "Start Line": 428, + "End Line": 443 }, { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "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": 428, - "End Line": 443 + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 }, { "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 574, - "End Line": 580 + "End Line": 579 }, { "Function Name": "_XC_CFG_PRE_PREAMBLE", @@ -420738,7 +420738,7 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, + "Sequential Logic Declarations": 38, "Function Parameters": 51, "Function/Method Declarations": 19, "Class/Entity Declarations": 0, @@ -420767,7 +420767,7 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 37, + "Dependency Injection Constructs": 38, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -420785,7 +420785,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Space Indentations": 81, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420810,7 +420810,7 @@ "Design Short Vars": 0, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7046.12, + "X": 7048.57, "Y": -96.74, - "Z": -1113.23 + "Z": -1113.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6913.58, + "X": 6916.03, "Y": -88.78, - "Z": -903.21 + "Z": -903.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", From 534aabd9f573c8f84df29aaa3380772084c42999 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sun, 23 Aug 2026 22:00:33 -0400 Subject: [PATCH 2/3] fix(m4): add full-precision golden master updates --- tests/golden_master_audit.json | 1106 ++++++++++++++++---------------- 1 file changed, 553 insertions(+), 553 deletions(-) diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index ba5f18582..3a3eb87f5 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-23T22:33:58.827982+00:00", - "Total Scan Duration": "39.59 seconds" + "Analysis ISO Timestamp": "2026-08-24T01:48:03.613110+00:00", + "Total Scan Duration": "39.8 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -26,7 +26,7 @@ "summary": { "total_files": 1104, "verified_files": 935, - "total_loc": 587175, + "total_loc": 588838, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 84.7 @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.695, + "avg_cognitive_load": 24.682, "avg_safety_score": 38.656, - "avg_tech_debt": 25.011, - "avg_documentation": 21.56 + "avg_tech_debt": 24.799, + "avg_documentation": 21.603 }, "composition": { "xml": { @@ -279,8 +279,8 @@ }, "m4": { "files": 8, - "loc": 13321, - "impact": 669.62 + "loc": 14984, + "impact": 658.78 }, "python": { "files": 268, @@ -1135,11 +1135,11 @@ }, "cobol/gnucobol_internals": { "file_count": 5, - "total_mass": 15668.75, + "total_mass": 15672.55, "avg_exposures": { "cognitive_load": 48.32, "safety_score": 68.48, - "tech_debt": 14.48, + "tech_debt": 14.44, "verification": 48.92, "api_exposure": 5.08, "concurrency": 0.0, @@ -1148,7 +1148,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 45.89, + "documentation": 45.92, "secrets_risk": 0.0 } }, @@ -1496,9 +1496,9 @@ }, "m4/curl": { "file_count": 2, - "total_mass": 257.74, + "total_mass": 268.24, "avg_exposures": { - "cognitive_load": 0.0, + "cognitive_load": 2.41, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.15, @@ -1509,26 +1509,26 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 15.08, + "documentation": 16.04, "secrets_risk": 0.0 } }, "m4/gnucobol": { "file_count": 2, - "total_mass": 192.98, + "total_mass": 158.82, "avg_exposures": { - "cognitive_load": 2.61, + "cognitive_load": 2.57, "safety_score": 0.0, - "tech_debt": 13.66, + "tech_debt": 11.15, "verification": 1.15, - "api_exposure": 5.51, + "api_exposure": 5.67, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 2.44, "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 14.78, + "documentation": 17.48, "secrets_risk": 0.0 } }, @@ -1933,12 +1933,12 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 96.06, + "total_mass": 105.08, "avg_exposures": { - "cognitive_load": 4.78, + "cognitive_load": 1.38, "safety_score": 0.0, - "tech_debt": 75.12, - "verification": 2.36, + "tech_debt": 36.53, + "verification": 2.33, "api_exposure": 1.74, "concurrency": 0.0, "state_flux": 0.0, @@ -1946,7 +1946,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 19.01, + "documentation": 25.59, "secrets_risk": 0.0 } }, @@ -62933,7 +62933,7 @@ } }, "cobol/gnucobol_internals": { - "Directory Group Magnitude": 15668.75, + "Directory Group Magnitude": 15672.55, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -62941,7 +62941,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "48.32%", "Error & Exception Exposure": "68.48%", - "Tech Debt Exposure": "14.48%", + "Tech Debt Exposure": "14.44%", "Testing Exposure": "48.92%", "API Exposure": "5.08%", "Concurrency Exposure": "0.0%", @@ -62950,7 +62950,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.89%", + "Documentation Exposure": "45.92%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -65669,9 +65669,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": -4606.72, - "Y": 1.1, - "Z": -3451.53 + "X": -4606.54, + "Y": 1.12, + "Z": -3451.3 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -65681,9 +65681,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7252, - "Coding LOC": 6117, - "Documentation LOC": 190, - "Structural Magnitude": 137.34, + "Coding LOC": 6307, + "Documentation LOC": 0, + "Structural Magnitude": 141.14, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -65694,7 +65694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.78%", + "Tech Debt Exposure": "11.63%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -65703,7 +65703,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "12.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -65722,7 +65722,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 633, + "Unit Test Assertions": 643, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -220055,7 +220055,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.57%", + "Testing Exposure": "2.58%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -336297,7 +336297,7 @@ "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "75.17%", "Tech Debt Exposure": "69.71%", - "Testing Exposure": "2.49%", + "Testing Exposure": "2.5%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -406085,14 +406085,14 @@ } }, "m4/curl": { - "Directory Group Magnitude": 257.74, + "Directory Group Magnitude": 268.24, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "2.41%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", @@ -406103,7 +406103,7 @@ "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "15.08%", + "Documentation Exposure": "16.04%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -406120,9 +406120,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4380.65, - "Y": 211.04, - "Z": -4664.33 + "X": 4380.63, + "Y": 211.01, + "Z": -4664.35 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -406277,9 +406277,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4622.19, + "X": 4622.51, "Y": 251.14, - "Z": -5082.8 + "Z": -5083.13 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -406289,18 +406289,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 5493, - "Coding LOC": 4237, - "Documentation LOC": 724, - "Structural Magnitude": 256.74, - "Control Flow Ratio": "0.0%", + "Coding LOC": 4762, + "Documentation LOC": 199, + "Structural Magnitude": 267.24, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.004 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "4.81%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -406311,13 +406311,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "30.15%", + "Documentation Exposure": "32.08%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, + "Control Flow Branches": 15, "Sequential Logic Declarations": 0, "Function Parameters": 7, "Function/Method Declarations": 0, @@ -406365,7 +406365,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3101, + "Structural Space Indentations": 3207, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -413176,366 +413176,6 @@ } } }, - "m4/gnucobol": { - "Directory Group Magnitude": 192.98, - "File Count": 2, - "Ecosystem Fingerprint (Archetypes)": { - "Static: Literature & Documentation": "50.0%", - "Unclassified": "50.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "2.61%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.66%", - "Testing Exposure": "1.15%", - "API Exposure": "5.51%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "2.44%", - "Specification Exposure": "50.0%", - "Instability Exposure": "25.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.78%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "m4/gnucobol/COPYING": { - "1. Artifact Identity": { - "Filename": "COPYING", - "Path": "m4/gnucobol/COPYING", - "Language": "Plaintext", - "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (COPYING)" - }, - "2. Topological Coordinates": { - "X": -4837.46, - "Y": -126.2, - "Z": 4397.19 - }, - "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": 675, - "Coding LOC": 0, - "Documentation LOC": 553, - "Structural Magnitude": 13.5, - "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": [] - }, - "m4/gnucobol/configure.ac": { - "1. Artifact Identity": { - "Filename": "configure.ac", - "Path": "m4/gnucobol/configure.ac", - "Language": "M4", - "Architect": "Unknown Architect", - "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", - "Doc Umbrella": 0.0, - "Folder Dominant Lang": "plaintext", - "Lock Tier": 1, - "Identity Proof": "Metadata Anchor (configure.ac)" - }, - "2. Topological Coordinates": { - "X": -4585.55, - "Y": -118.16, - "Z": 3970.8 - }, - "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": 2922, - "Coding LOC": 2144, - "Documentation LOC": 517, - "Structural Magnitude": 179.48, - "Control Flow Ratio": "100.0%", - "Popularity Rank": 0, - "Raw Churn Frequency": 0.0, - "Authorship Centralization": 0.0, - "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.026 - }, - "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.21%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "27.32%", - "Testing Exposure": "2.31%", - "API Exposure": "11.01%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", - "Commented Logic Exposure": "4.88%", - "Specification Exposure": "100.0%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "29.55%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "5. Function Analysis": [ - { - "Function Name": "AC_PROG_F77", - "Structural Impact": 55.5, - "Lines of Code (LOC)": 1532, - "Control Flow Branches": 36, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 658, - "End Line": 2189 - }, - { - "Function Name": "AC_PROG_CXX", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 657, - "End Line": 657 - } - ], - "6. Contextual Mitigations & Amplifications": "None Detected", - "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 50, - "Sequential Logic Declarations": 0, - "Function Parameters": 0, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 42, - "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 80, - "State Mutations / Variable Reassignments": 0, - "Commented-out Code (Dead Logic)": 1, - "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": 10, - "Decorators and Annotations": 0, - "Generic Type Abstractions": 0, - "Collection Iterators / Comprehensions": 0, - "Scientific & Mathematical Operations": 1, - "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, - "Authorship Metadata": 1, - "Planned Work (TODOs)": 1, - "Acknowledged Tech Debt (FIXMEs)": 12, - "Specification Traceability Tags": 0, - "Server-Side Rendering Contexts": 0, - "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 126, - "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, - "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 240, - "Ad-hoc Print / Debug Statements": 0, - "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 70, - "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": 814, - "Structural Space Indentations": 491, - "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": 362, - "Design Camel Case": 0, - "Design Snake Case": 85, - "Design Pascal Case": 0, - "Design Upper Case": 273, - "Design Short Vars": 8, - "Design Long Vars": 4, - "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)": 0, - "Direct Downstream (Dependency Blast Radius)": 0, - "Total Upstream (Absolute Fragility)": 0, - "Total Downstream (Absolute Dependency Blast Radius)": 0 - }, - "9. Extracted Dependencies": [] - } - } - }, "typescript/fp-ts": { "Directory Group Magnitude": 160.92, "File Count": 5, @@ -417508,6 +417148,366 @@ } } }, + "m4/gnucobol": { + "Directory Group Magnitude": 158.82, + "File Count": 2, + "Ecosystem Fingerprint (Archetypes)": { + "Static: Literature & Documentation": "50.0%", + "Unclassified": "50.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "2.57%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "11.15%", + "Testing Exposure": "1.15%", + "API Exposure": "5.67%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "2.44%", + "Specification Exposure": "50.0%", + "Instability Exposure": "25.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "17.48%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/gnucobol/COPYING": { + "1. Artifact Identity": { + "Filename": "COPYING", + "Path": "m4/gnucobol/COPYING", + "Language": "Plaintext", + "Architect": "Unknown Architect", + "Indentation Style": "Neutral / No Indentation", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (COPYING)" + }, + "2. Topological Coordinates": { + "X": -4834.07, + "Y": -126.28, + "Z": 4394.12 + }, + "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": 675, + "Coding LOC": 0, + "Documentation LOC": 553, + "Structural Magnitude": 13.5, + "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": [] + }, + "m4/gnucobol/configure.ac": { + "1. Artifact Identity": { + "Filename": "configure.ac", + "Path": "m4/gnucobol/configure.ac", + "Language": "M4", + "Architect": "Unknown Architect", + "Indentation Style": "Mixed (33.2% Spaces / 66.8% Tabs)", + "Doc Umbrella": 0.0, + "Folder Dominant Lang": "plaintext", + "Lock Tier": 1, + "Identity Proof": "Metadata Anchor (configure.ac)" + }, + "2. Topological Coordinates": { + "X": -4583.85, + "Y": -118.16, + "Z": 3969.26 + }, + "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": 2922, + "Coding LOC": 2606, + "Documentation LOC": 55, + "Structural Magnitude": 145.32, + "Control Flow Ratio": "98.1%", + "Popularity Rank": 0, + "Raw Churn Frequency": 0.0, + "Authorship Centralization": 0.0, + "Ownership Entropy": 0.0, + "Raw Cognitive Density": 0.021 + }, + "4. Vulnerability & Risk Exposures": { + "Cognitive Load Exposure": "5.13%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "22.3%", + "Testing Exposure": "2.3%", + "API Exposure": "11.33%", + "Concurrency Exposure": "0.0%", + "State Flux Exposure": "0.0%", + "Commented Logic Exposure": "4.88%", + "Specification Exposure": "100.0%", + "Instability Exposure": "50.0%", + "Volatility Exposure": "0.0%", + "Documentation Exposure": "34.96%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "5. Function Analysis": [ + { + "Function Name": "AC_PROG_CXX", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 657, + "End Line": 657 + }, + { + "Function Name": "AC_PROG_F77", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 658, + "End Line": 658 + } + ], + "6. Contextual Mitigations & Amplifications": "None Detected", + "7. Structural Signatures (Net Mitigated Signals)": { + "Control Flow Branches": 51, + "Sequential Logic Declarations": 1, + "Function Parameters": 0, + "Function/Method Declarations": 2, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 48, + "Type/Safety Bypasses": 0, + "High-Risk Execution Commands": 0, + "I/O and Network Boundaries": 6, + "Exposed API / Public Exports": 91, + "State Mutations / Variable Reassignments": 0, + "Commented-out Code (Dead Logic)": 1, + "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": 10, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, + "Collection Iterators / Comprehensions": 0, + "Scientific & Mathematical Operations": 1, + "Metaprogramming & Reflection": 0, + "Module Dependencies (Imports)": 0, + "Authorship Metadata": 1, + "Planned Work (TODOs)": 1, + "Acknowledged Tech Debt (FIXMEs)": 12, + "Specification Traceability Tags": 0, + "Server-Side Rendering Contexts": 0, + "Event Publishers / Emitters": 0, + "Dependency Injection Constructs": 1, + "Preprocessor Macros": 136, + "Pointer Arithmetic & Addressing": 0, + "Manual Memory Allocation": 0, + "Inline Assembly Blocks": 0, + "Structured Telemetry & Logging": 248, + "Ad-hoc Print / Debug Statements": 0, + "Explicit Type Casts": 0, + "Fatal Aborts & Exceptions": 71, + "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": 1014, + "Structural Space Indentations": 504, + "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": 384, + "Design Camel Case": 0, + "Design Snake Case": 86, + "Design Pascal Case": 0, + "Design Upper Case": 294, + "Design Short Vars": 11, + "Design Long Vars": 4, + "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)": 0, + "Direct Downstream (Dependency Blast Radius)": 0, + "Total Upstream (Absolute Fragility)": 0, + "Total Downstream (Absolute Dependency Blast Radius)": 0 + }, + "9. Extracted Dependencies": [] + } + } + }, "assembly/hellosilicon": { "Directory Group Magnitude": 134.16, "File Count": 4, @@ -419660,16 +419660,16 @@ } }, "m4/curl/m4": { - "Directory Group Magnitude": 96.06, + "Directory Group Magnitude": 105.08, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "4.78%", + "Cognitive Load Exposure": "1.38%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "75.12%", - "Testing Exposure": "2.36%", + "Tech Debt Exposure": "36.53%", + "Testing Exposure": "2.33%", "API Exposure": "1.74%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -419677,7 +419677,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "19.01%", + "Documentation Exposure": "25.59%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -419694,9 +419694,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6294.88, - "Y": -77.67, - "Z": -1004.48 + "X": 6294.64, + "Y": -77.89, + "Z": -1003.7 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419706,9 +419706,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 577, - "Coding LOC": 375, - "Documentation LOC": 163, - "Structural Magnitude": 38.4, + "Coding LOC": 503, + "Documentation LOC": 35, + "Structural Magnitude": 40.96, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -419719,8 +419719,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "62.25%", - "Testing Exposure": "2.35%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -419728,7 +419728,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "14.33%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -419855,22 +419855,22 @@ { "Function Name": "CURL_CHECK_OPTION_ECH", "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Lines of Code (LOC)": 28, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 510, - "End Line": 538 + "End Line": 537 }, { "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 30, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 546, - "End Line": 576 + "End Line": 575 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -419923,7 +419923,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 324, + "Structural Space Indentations": 357, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419948,7 +419948,7 @@ "Design Short Vars": 0, "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 10, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -419992,9 +419992,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6581.06, - "Y": -42.94, - "Z": -1681.86 + "X": 6795.59, + "Y": 1.77, + "Z": -995.04 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420004,9 +420004,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 123, - "Coding LOC": 70, - "Documentation LOC": 35, - "Structural Magnitude": 4.9, + "Coding LOC": 105, + "Documentation LOC": 0, + "Structural Magnitude": 5.6, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -420017,7 +420017,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.61%", + "Tech Debt Exposure": "94.57%", "Testing Exposure": "2.3%", "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", @@ -420026,7 +420026,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "31.65%", + "Documentation Exposure": "36.35%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -420091,7 +420091,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 66, + "Structural Space Indentations": 75, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420160,9 +420160,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6053.85, - "Y": -172.48, - "Z": -1560.34 + "X": 6052.05, + "Y": -173.05, + "Z": -1560.96 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420172,21 +420172,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 52, - "Coding LOC": 21, - "Documentation LOC": 29, - "Structural Magnitude": 1.82, + "Coding LOC": 50, + "Documentation LOC": 0, + "Structural Magnitude": 2.5, "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.238 + "Raw Cognitive Density": 0.1 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "11.43%", + "Cognitive Load Exposure": "6.91%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.97%", - "Testing Exposure": "2.34%", + "Tech Debt Exposure": "88.08%", + "Testing Exposure": "2.32%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420194,19 +420194,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.66%", + "Documentation Exposure": "36.09%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 9, + "Structural Impact": 1.5, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 25, - "End Line": 33 + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", @@ -420259,7 +420259,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 18, + "Structural Space Indentations": 24, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420328,9 +420328,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6792.0, - "Y": 23.46, - "Z": -1054.09 + "X": 6580.46, + "Y": -20.93, + "Z": -1741.98 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420340,21 +420340,21 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 86, - "Coding LOC": 19, - "Documentation LOC": 59, - "Structural Magnitude": 4.78, + "Coding LOC": 78, + "Documentation LOC": 0, + "Structural Magnitude": 5.96, "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.263 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.48%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.99%", - "Testing Exposure": "2.46%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420362,7 +420362,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "27.3%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -420462,7 +420462,7 @@ "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, @@ -420506,9 +420506,9 @@ "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 6523.37, + "X": 6524.14, "Y": -92.58, - "Z": -1346.27 + "Z": -1346.43 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420518,9 +420518,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 668, - "Coding LOC": 338, - "Documentation LOC": 253, - "Structural Magnitude": 46.16, + "Coding LOC": 573, + "Documentation LOC": 18, + "Structural Magnitude": 50.06, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -420531,8 +420531,8 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "13.77%", - "Testing Exposure": "2.37%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "2.34%", "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -420540,19 +420540,19 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "11.92%", + "Documentation Exposure": "13.9%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 5.0, - "Lines of Code (LOC)": 72, + "Structural Impact": 4.1, + "Lines of Code (LOC)": 54, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 473, - "End Line": 544 + "End Line": 526 }, { "Function Name": "XC_CHECK_PATH_SEPARATOR", @@ -420565,144 +420565,144 @@ "End Line": 667 }, { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 15, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 573 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 14, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 558 + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", "Structural Impact": 2.0, - "Lines of Code (LOC)": 21, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 348 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 107 + "Start Line": 176, + "End Line": 194 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 208, - "End Line": 224 + "End Line": 227 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 241, - "End Line": 257 + "End Line": 260 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 270, - "End Line": 286 + "End Line": 289 }, { "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 1.9, - "Lines of Code (LOC)": 17, + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", "Start Line": 299, - "End Line": 315 + "End Line": 318 }, { - "Function Name": "AC_DEFUN", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 135 + "Start Line": 328, + "End Line": 351 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 163 + "Start Line": 369, + "End Line": 421 }, { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Function Name": "_XC_CFG_PRE_POSTLUDE", "Structural Impact": 1.8, "Lines of Code (LOC)": 16, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 191 + "Start Line": 428, + "End Line": 443 }, { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "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": 428, - "End Line": 443 + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 }, { "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 7, + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, "Control Flow Branches": 0, "Input Parameters": 1, "Control Flow Ratio": "0.0%", "Start Line": 574, - "End Line": 580 + "End Line": 579 }, { "Function Name": "_XC_CFG_PRE_PREAMBLE", @@ -420738,7 +420738,7 @@ "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 37, + "Sequential Logic Declarations": 38, "Function Parameters": 51, "Function/Method Declarations": 19, "Class/Entity Declarations": 0, @@ -420767,7 +420767,7 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 37, + "Dependency Injection Constructs": 38, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, @@ -420785,7 +420785,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 92, + "Structural Space Indentations": 81, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420810,7 +420810,7 @@ "Design Short Vars": 0, "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 1, + "Orphaned Logic": 0, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7046.12, + "X": 7048.57, "Y": -96.74, - "Z": -1113.23 + "Z": -1113.59 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6913.58, + "X": 6916.03, "Y": -88.78, - "Z": -903.21 + "Z": -903.58 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", From b95386b30f6b1fa1a22e8886f9b175721193cfb2 Mon Sep 17 00:00:00 2001 From: Joe Esquibel Date: Sun, 23 Aug 2026 22:12:34 -0400 Subject: [PATCH 3/3] fix(m4): regenerate golden masters with clean m4 lexical_family --- tests/golden_master_audit.json | 2198 +++++++++++------------ tests/golden_master_zero_dep_audit.json | 2198 +++++++++++------------ 2 files changed, 2198 insertions(+), 2198 deletions(-) diff --git a/tests/golden_master_audit.json b/tests/golden_master_audit.json index 3a3eb87f5..53171d856 100644 --- a/tests/golden_master_audit.json +++ b/tests/golden_master_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-24T01:48:03.613110+00:00", - "Total Scan Duration": "39.8 seconds" + "Analysis ISO Timestamp": "2026-08-24T02:11:40.019706+00:00", + "Total Scan Duration": "38.64 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -26,7 +26,7 @@ "summary": { "total_files": 1104, "verified_files": 935, - "total_loc": 588838, + "total_loc": 587175, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 84.7 @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.682, + "avg_cognitive_load": 24.695, "avg_safety_score": 38.656, - "avg_tech_debt": 24.799, - "avg_documentation": 21.603 + "avg_tech_debt": 25.011, + "avg_documentation": 21.558 }, "composition": { "xml": { @@ -279,8 +279,8 @@ }, "m4": { "files": 8, - "loc": 14984, - "impact": 658.78 + "loc": 13321, + "impact": 614.52 }, "python": { "files": 268, @@ -1135,11 +1135,11 @@ }, "cobol/gnucobol_internals": { "file_count": 5, - "total_mass": 15672.55, + "total_mass": 15668.75, "avg_exposures": { "cognitive_load": 48.32, "safety_score": 68.48, - "tech_debt": 14.44, + "tech_debt": 14.48, "verification": 48.92, "api_exposure": 5.08, "concurrency": 0.0, @@ -1148,7 +1148,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 45.92, + "documentation": 45.89, "secrets_risk": 0.0 } }, @@ -1496,9 +1496,9 @@ }, "m4/curl": { "file_count": 2, - "total_mass": 268.24, + "total_mass": 257.74, "avg_exposures": { - "cognitive_load": 2.41, + "cognitive_load": 0.0, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.15, @@ -1509,26 +1509,26 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 16.04, + "documentation": 15.08, "secrets_risk": 0.0 } }, "m4/gnucobol": { "file_count": 2, - "total_mass": 158.82, + "total_mass": 138.58, "avg_exposures": { - "cognitive_load": 2.57, + "cognitive_load": 2.61, "safety_score": 0.0, - "tech_debt": 11.15, + "tech_debt": 13.66, "verification": 1.15, - "api_exposure": 5.67, + "api_exposure": 5.51, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 2.44, "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 17.48, + "documentation": 13.92, "secrets_risk": 0.0 } }, @@ -1933,12 +1933,12 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 105.08, + "total_mass": 95.36, "avg_exposures": { - "cognitive_load": 1.38, + "cognitive_load": 4.78, "safety_score": 0.0, - "tech_debt": 36.53, - "verification": 2.33, + "tech_debt": 75.12, + "verification": 2.36, "api_exposure": 1.74, "concurrency": 0.0, "state_flux": 0.0, @@ -1946,7 +1946,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.59, + "documentation": 19.01, "secrets_risk": 0.0 } }, @@ -62933,7 +62933,7 @@ } }, "cobol/gnucobol_internals": { - "Directory Group Magnitude": 15672.55, + "Directory Group Magnitude": 15668.75, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -62941,7 +62941,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "48.32%", "Error & Exception Exposure": "68.48%", - "Tech Debt Exposure": "14.44%", + "Tech Debt Exposure": "14.48%", "Testing Exposure": "48.92%", "API Exposure": "5.08%", "Concurrency Exposure": "0.0%", @@ -62950,7 +62950,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.92%", + "Documentation Exposure": "45.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -65669,9 +65669,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": -4606.54, - "Y": 1.12, - "Z": -3451.3 + "X": -4606.72, + "Y": 1.1, + "Z": -3451.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -65681,9 +65681,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7252, - "Coding LOC": 6307, - "Documentation LOC": 0, - "Structural Magnitude": 141.14, + "Coding LOC": 6117, + "Documentation LOC": 190, + "Structural Magnitude": 137.34, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -65694,7 +65694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.63%", + "Tech Debt Exposure": "11.78%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -65703,7 +65703,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.09%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -65722,7 +65722,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 643, + "Unit Test Assertions": 633, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -220055,7 +220055,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", + "Testing Exposure": "2.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -336297,7 +336297,7 @@ "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "75.17%", "Tech Debt Exposure": "69.71%", - "Testing Exposure": "2.5%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -406085,14 +406085,14 @@ } }, "m4/curl": { - "Directory Group Magnitude": 268.24, + "Directory Group Magnitude": 257.74, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.41%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", @@ -406103,7 +406103,7 @@ "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.04%", + "Documentation Exposure": "15.08%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -406120,9 +406120,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4380.63, - "Y": 211.01, - "Z": -4664.35 + "X": 4380.65, + "Y": 211.04, + "Z": -4664.33 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -406277,9 +406277,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4622.51, + "X": 4622.19, "Y": 251.14, - "Z": -5083.13 + "Z": -5082.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -406289,18 +406289,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 5493, - "Coding LOC": 4762, - "Documentation LOC": 199, - "Structural Magnitude": 267.24, - "Control Flow Ratio": "100.0%", + "Coding LOC": 4237, + "Documentation LOC": 724, + "Structural Magnitude": 256.74, + "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.004 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.81%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -406311,13 +406311,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.08%", + "Documentation Exposure": "30.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 7, "Function/Method Declarations": 0, @@ -406365,7 +406365,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3207, + "Structural Space Indentations": 3101, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -417149,25 +417149,25 @@ } }, "m4/gnucobol": { - "Directory Group Magnitude": 158.82, + "Directory Group Magnitude": 138.58, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.57%", + "Cognitive Load Exposure": "2.61%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.15%", + "Tech Debt Exposure": "13.66%", "Testing Exposure": "1.15%", - "API Exposure": "5.67%", + "API Exposure": "5.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "2.44%", "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.48%", + "Documentation Exposure": "13.92%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -417184,9 +417184,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -4834.07, - "Y": -126.28, - "Z": 4394.12 + "X": -4831.7, + "Y": -126.34, + "Z": 4391.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -417334,16 +417334,16 @@ "Path": "m4/gnucobol/configure.ac", "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (33.2% Spaces / 66.8% Tabs)", + "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", "Doc Umbrella": 0.0, "Folder Dominant Lang": "plaintext", "Lock Tier": 1, "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": -4583.85, + "X": -4582.66, "Y": -118.16, - "Z": 3969.26 + "Z": 3968.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -417353,29 +417353,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 2922, - "Coding LOC": 2606, - "Documentation LOC": 55, - "Structural Magnitude": 145.32, - "Control Flow Ratio": "98.1%", + "Coding LOC": 2144, + "Documentation LOC": 517, + "Structural Magnitude": 125.08, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.021 + "Raw Cognitive Density": 0.026 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.13%", + "Cognitive Load Exposure": "5.21%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "22.3%", + "Tech Debt Exposure": "27.32%", "Testing Exposure": "2.3%", - "API Exposure": "11.33%", + "API Exposure": "11.01%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.88%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.96%", + "Documentation Exposure": "27.84%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -417402,16 +417402,16 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 51, - "Sequential Logic Declarations": 1, + "Control Flow Branches": 50, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 48, + "Defensive Programming Constructs": 42, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 91, + "Exposed API / Public Exports": 80, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 1, @@ -417432,15 +417432,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, - "Preprocessor Macros": 136, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 126, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 248, + "Structured Telemetry & Logging": 240, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 71, + "Fatal Aborts & Exceptions": 70, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -417449,8 +417449,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1014, - "Structural Space Indentations": 504, + "Structural Tab Indentations": 814, + "Structural Space Indentations": 491, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -417467,12 +417467,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 384, + "Core Var Decl": 362, "Design Camel Case": 0, - "Design Snake Case": 86, + "Design Snake Case": 85, "Design Pascal Case": 0, - "Design Upper Case": 294, - "Design Short Vars": 11, + "Design Upper Case": 273, + "Design Short Vars": 8, "Design Long Vars": 4, "Duplicate Logic": 0, "Orphaned Logic": 2, @@ -419659,44 +419659,44 @@ } } }, - "m4/curl/m4": { - "Directory Group Magnitude": 105.08, - "File Count": 5, + "xml/apex": { + "Directory Group Magnitude": 95.76, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "1.38%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "36.53%", - "Testing Exposure": "2.33%", - "API Exposure": "1.74%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "17.37%", + "Tech Debt Exposure": "45.98%", + "Testing Exposure": "1.23%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "12.32%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.59%", + "Documentation Exposure": "13.63%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "m4/curl/m4/curl-confopts.m4": { + "xml/apex/CanTheUser_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-confopts.m4", - "Path": "m4/curl/m4/curl-confopts.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls-meta.xml", + "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6294.64, - "Y": -77.89, - "Z": -1003.7 + "X": 2365.65, + "Y": 112.82, + "Z": 3759.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419705,186 +419705,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 577, - "Coding LOC": 503, - "Documentation LOC": 35, - "Structural Magnitude": 40.96, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "3.46%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.33%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 189 - }, - { - "Function Name": "CURL_CHECK_OPTION_WARNINGS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 296 - }, - { - "Function Name": "CURL_CHECK_OPTION_ARES", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 101 - }, - { - "Function Name": "CURL_CHECK_OPTION_DEBUG", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 134 - }, - { - "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 229 - }, - { - "Function Name": "CURL_CHECK_OPTION_RT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 262 - }, - { - "Function Name": "CURL_CHECK_OPTION_WERROR", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 304, - "End Line": 327 - }, - { - "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 334, - "End Line": 357 - }, - { - "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 67 - }, - { - "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 385 - }, - { - "Function Name": "CURL_CHECK_LIB_ARES", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 467 - }, - { - "Function Name": "CURL_CHECK_OPTION_HTTPSRR", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 502 - }, - { - "Function Name": "CURL_CHECK_OPTION_ECH", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 537 - }, - { - "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 575 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 9, - "Function/Method Declarations": 14, + "Sequential Logic Declarations": 0, + "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": 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, @@ -419905,15 +419764,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 5, - "Preprocessor Macros": 2, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 47, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -419923,7 +419782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 357, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419940,13 +419799,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 108, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 57, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 35, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -419958,7 +419817,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -419979,22 +419838,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-mbedtls.m4": { + "xml/apex/IterationRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-mbedtls.m4", - "Path": "m4/curl/m4/curl-mbedtls.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6795.59, - "Y": 1.77, - "Z": -995.04 + "X": 2583.66, + "Y": 160.61, + "Z": 4415.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420003,56 +419862,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 123, - "Coding LOC": 105, - "Documentation LOC": 0, - "Structural Magnitude": 5.6, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "94.57%", - "Testing Exposure": "2.3%", - "API Exposure": "4.56%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.35%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_WITH_MBEDTLS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 95, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 122 - } - ], + "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": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "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, @@ -420069,16 +419917,16 @@ "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": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420091,7 +419939,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 75, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420108,15 +419956,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 15, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 2, + "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, @@ -420126,7 +419974,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420147,22 +419995,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-sysconfig.m4": { + "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-sysconfig.m4", - "Path": "m4/curl/m4/curl-sysconfig.m4", - "Language": "M4", + "Filename": "ListSortingRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6052.05, - "Y": -173.05, - "Z": -1560.96 + "X": 1884.76, + "Y": 252.1, + "Z": 4095.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420171,50 +420019,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 50, - "Documentation LOC": 0, - "Structural Magnitude": 2.5, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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.1 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.91%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "88.08%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 51 - } - ], + "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": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -420246,7 +420083,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 3, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420259,7 +420096,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420276,15 +420113,15 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "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, @@ -420294,7 +420131,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420315,22 +420152,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/xc-am-iface.m4": { + "xml/apex/CanTheUser_Tests.cls": { "1. Artifact Identity": { - "Filename": "xc-am-iface.m4", - "Path": "m4/curl/m4/xc-am-iface.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls", + "Path": "xml/apex/CanTheUser_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6580.46, - "Y": -20.93, - "Z": -1741.98 + "X": 2286.17, + "Y": 135.41, + "Z": 4092.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420339,80 +420176,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 78, - "Documentation LOC": 0, - "Structural Magnitude": 5.96, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 144, + "Documentation LOC": 2, + "Structural Magnitude": 30.78, + "Control Flow Ratio": "66.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": 0.149 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "8.3%", + "Error & Exception Exposure": "50.27%", + "Tech Debt Exposure": "99.98%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "27.11%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.3%", + "Documentation Exposure": "19.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_XC_AUTOMAKE_BODY", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 17, + "Function Name": "getBulkFLSAccessibleWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 99 + }, + { + "Function Name": "getBulkFLSUpdatableWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 133 + }, + { + "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 57 + "Start Line": 101, + "End Line": 118 }, { - "Function Name": "XC_AUTOMAKE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 + "Start Line": 135, + "End Line": 152 + }, + { + "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 165 + }, + { + "Function Name": "canCrudAccountCreatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 12 + }, + { + "Function Name": "canCrudCreateAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 20 + }, + { + "Function Name": "canCrudAccountReadPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 28 + }, + { + "Function Name": "canCrudReadAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 36 + }, + { + "Function Name": "canCrudAccountUpdatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 44 + }, + { + "Function Name": "canCrudEditAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 52 + }, + { + "Function Name": "canCrudAccountDeletePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 60 + }, + { + "Function Name": "canCrudDestroyAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 68 + }, + { + "Function Name": "getFLSofAccountNamePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 76 + }, + { + "Function Name": "getFLSofAccountIDNegative", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 35, "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, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 12, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 47, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420422,7 +420389,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 12, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420433,11 +420400,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 141, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420454,15 +420421,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, + "Core Var Decl": 8, + "Design Camel Case": 4, + "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": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420493,22 +420460,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/zz40-xc-ovr.m4": { + "xml/apex/IterationRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "zz40-xc-ovr.m4", - "Path": "m4/curl/m4/zz40-xc-ovr.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls", + "Path": "xml/apex/IterationRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6524.14, - "Y": -92.58, - "Z": -1346.43 + "X": 2668.07, + "Y": 94.78, + "Z": 3866.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420517,275 +420484,115 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 668, - "Coding LOC": 573, - "Documentation LOC": 18, - "Structural Magnitude": 50.06, - "Control Flow Ratio": "0.0%", + "Total LOC": 74, + "Coding LOC": 59, + "Documentation LOC": 7, + "Structural Magnitude": 9.98, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "6.28%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.71%", + "Tech Debt Exposure": "99.1%", + "Testing Exposure": "2.32%", + "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": "13.9%", + "Documentation Exposure": "25.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 473, - "End Line": 526 - }, - { - "Function Name": "XC_CHECK_PATH_SEPARATOR", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 612, - "End Line": 667 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 110 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 138 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 166 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 194 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 227 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 260 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 289 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 299, - "End Line": 318 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, + "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 3, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 351 + "Control Flow Ratio": "60.0%", + "Start Line": 46, + "End Line": 72 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "testIterableApiClientRecipePositive", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 - }, - { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 428, - "End Line": 443 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 549 - }, - { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 564 - }, - { - "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 579 + "Start Line": 19, + "End Line": 44 }, { - "Function Name": "_XC_CFG_PRE_PREAMBLE", + "Function Name": "testIterateOnAccountListPositive", "Structural Impact": 1.5, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 81 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 + "Start Line": 6, + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, - "Function Parameters": 51, - "Function/Method Declarations": 19, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 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": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 14, "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, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 8, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 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": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 38, + "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": 4, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 4, + "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": 2, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 2, "Structural Tab Indentations": 0, - "Structural Space Indentations": 81, + "Structural Space Indentations": 56, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420802,15 +420609,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, - "Design Camel Case": 0, - "Design Snake Case": 37, + "Core Var Decl": 6, + "Design Camel Case": 3, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 3, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420840,47 +420647,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "xml/apex": { - "Directory Group Magnitude": 95.76, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "7.1%", - "Error & Exception Exposure": "17.37%", - "Tech Debt Exposure": "45.98%", - "Testing Exposure": "1.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "12.32%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.63%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/apex/CanTheUser_Tests.cls-meta.xml": { + }, + "xml/apex/ListSortingRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls-meta.xml", - "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "ListSortingRecipes_Tests.cls", + "Path": "xml/apex/ListSortingRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 2365.65, - "Y": 112.82, - "Z": 3759.41 + "X": 2044.06, + "Y": 231.79, + "Z": 4252.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420889,59 +420672,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 150, + "Coding LOC": 142, + "Documentation LOC": 3, + "Structural Magnitude": 23.44, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "12.99%", + "Error & Exception Exposure": "53.94%", + "Tech Debt Exposure": "76.8%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "46.8%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "18.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "testASCComparatorException", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 95, + "End Line": 116 + }, + { + "Function Name": "testSortAccountsByShippingCountry", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 63 + }, + { + "Function Name": "testSortAccountsByShippingCountryInDescending", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 93 + }, + { + "Function Name": "testSortAccountsByNumberOfEmployees", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 148 + } + ], "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, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 12, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 16, "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, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 14, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420951,7 +420775,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 16, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420960,13 +420784,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 10, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 139, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420983,15 +420807,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": 29, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Snake Case": 7, + "Design Pascal Case": 12, + "Design Upper Case": 10, + "Design Short Vars": 6, "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, @@ -421021,23 +420845,47 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "xml/apex/IterationRecipes_Tests.cls-meta.xml": { + } + } + }, + "m4/curl/m4": { + "Directory Group Magnitude": 95.36, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "75.12%", + "Testing Exposure": "2.36%", + "API Exposure": "1.74%", + "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.01%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/curl/m4/curl-confopts.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-confopts.m4", + "Path": "m4/curl/m4/curl-confopts.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2583.66, - "Y": 160.61, - "Z": 4415.92 + "X": 6294.83, + "Y": -77.64, + "Z": -1004.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421046,45 +420894,186 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 577, + "Coding LOC": 375, + "Documentation LOC": 163, + "Structural Magnitude": 38.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.35%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 189 + }, + { + "Function Name": "CURL_CHECK_OPTION_WARNINGS", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 296 + }, + { + "Function Name": "CURL_CHECK_OPTION_ARES", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 101 + }, + { + "Function Name": "CURL_CHECK_OPTION_DEBUG", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 229 + }, + { + "Function Name": "CURL_CHECK_OPTION_RT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 262 + }, + { + "Function Name": "CURL_CHECK_OPTION_WERROR", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 304, + "End Line": 327 + }, + { + "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 334, + "End Line": 357 + }, + { + "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 67 + }, + { + "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 385 + }, + { + "Function Name": "CURL_CHECK_LIB_ARES", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 467 + }, + { + "Function Name": "CURL_CHECK_OPTION_HTTPSRR", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 502 + }, + { + "Function Name": "CURL_CHECK_OPTION_ECH", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 510, + "End Line": 537 + }, + { + "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 575 + } + ], "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": 5, + "Function Parameters": 9, + "Function/Method Declarations": 14, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421105,15 +421094,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Dependency Injection Constructs": 5, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 47, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -421123,7 +421112,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 324, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421140,15 +421129,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": 108, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 57, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 35, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421158,7 +421147,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421179,22 +421168,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { + "m4/curl/m4/curl-mbedtls.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-mbedtls.m4", + "Path": "m4/curl/m4/curl-mbedtls.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 1884.76, - "Y": 252.1, - "Z": 4095.81 + "X": 6580.88, + "Y": -42.95, + "Z": -1681.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421203,45 +421192,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 123, + "Coding LOC": 70, + "Documentation LOC": 35, + "Structural Magnitude": 4.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.61%", + "Testing Exposure": "2.3%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "31.65%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_WITH_MBEDTLS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 95, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 122 + } + ], "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, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421258,16 +421258,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421280,7 +421280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 66, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421297,15 +421297,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": 30, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 15, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421315,7 +421315,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421336,22 +421336,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/CanTheUser_Tests.cls": { + "m4/curl/m4/curl-sysconfig.m4": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls", - "Path": "xml/apex/CanTheUser_Tests.cls", - "Language": "Apex", + "Filename": "curl-sysconfig.m4", + "Path": "m4/curl/m4/curl-sysconfig.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2286.17, - "Y": 135.41, - "Z": 4092.93 + "X": 6053.8, + "Y": -172.45, + "Z": -1560.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421360,210 +421360,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 144, - "Documentation LOC": 2, - "Structural Magnitude": 30.78, - "Control Flow Ratio": "66.7%", + "Total LOC": 52, + "Coding LOC": 21, + "Documentation LOC": 29, + "Structural Magnitude": 1.92, + "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.149 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.3%", - "Error & Exception Exposure": "50.27%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "11.43%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "27.11%", + "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.55%", + "Documentation Exposure": "27.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getBulkFLSAccessibleWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 99 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 133 - }, - { - "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 118 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 152 - }, - { - "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 165 - }, - { - "Function Name": "canCrudAccountCreatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 12 - }, - { - "Function Name": "canCrudCreateAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 20 - }, - { - "Function Name": "canCrudAccountReadPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 28 - }, - { - "Function Name": "canCrudReadAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 36 - }, - { - "Function Name": "canCrudAccountUpdatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 44 - }, - { - "Function Name": "canCrudEditAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "canCrudAccountDeletePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 60 - }, - { - "Function Name": "canCrudDestroyAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 68 - }, - { - "Function Name": "getFLSofAccountNamePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 76 - }, - { - "Function Name": "getFLSofAccountIDNegative", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 25, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "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": 4, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 35, + "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": 16, - "Generic Type Abstractions": 12, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 47, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421573,9 +421433,9 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 12, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 3, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421584,11 +421444,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 141, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421605,15 +421465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 4, - "Design Snake Case": 4, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421623,7 +421483,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421644,22 +421504,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/IterationRecipes_Tests.cls": { + "m4/curl/m4/xc-am-iface.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls", - "Path": "xml/apex/IterationRecipes_Tests.cls", - "Language": "Apex", + "Filename": "xc-am-iface.m4", + "Path": "m4/curl/m4/xc-am-iface.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2668.07, - "Y": 94.78, - "Z": 3866.55 + "X": 6791.74, + "Y": 23.44, + "Z": -1054.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421668,22 +421528,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 59, - "Documentation LOC": 7, - "Structural Magnitude": 9.98, - "Control Flow Ratio": "42.9%", + "Total LOC": 86, + "Coding LOC": 19, + "Documentation LOC": 59, + "Structural Magnitude": 4.78, + "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.136 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.28%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.1%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -421691,67 +421551,57 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.7%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 46, - "End Line": 72 - }, - { - "Function Name": "testIterableApiClientRecipePositive", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 26, + "Function Name": "_XC_AUTOMAKE_BODY", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 44 + "Start Line": 41, + "End Line": 57 }, { - "Function Name": "testIterateOnAccountListPositive", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "XC_AUTOMAKE", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 17 + "Start Line": 73, + "End Line": 85 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, + "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": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 14, + "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": 4, - "Generic Type Abstractions": 8, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421761,7 +421611,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 10, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -421772,11 +421622,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 2, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 56, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421793,15 +421643,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 3, - "Design Snake Case": 3, + "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": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421832,22 +421682,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls": { + "m4/curl/m4/zz40-xc-ovr.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls", - "Path": "xml/apex/ListSortingRecipes_Tests.cls", - "Language": "Apex", + "Filename": "zz40-xc-ovr.m4", + "Path": "m4/curl/m4/zz40-xc-ovr.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2044.06, - "Y": 231.79, - "Z": 4252.05 + "X": 6523.21, + "Y": -92.58, + "Z": -1346.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421856,125 +421706,275 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 150, - "Coding LOC": 142, - "Documentation LOC": 3, - "Structural Magnitude": 23.44, - "Control Flow Ratio": "14.3%", + "Total LOC": 668, + "Coding LOC": 338, + "Documentation LOC": 253, + "Structural Magnitude": 45.36, + "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.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.99%", - "Error & Exception Exposure": "53.94%", - "Tech Debt Exposure": "76.8%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.77%", + "Testing Exposure": "2.37%", + "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.34%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testASCComparatorException", + "Function Name": "XC_CONFIGURE_PREAMBLE", "Structural Impact": 4.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 473, + "End Line": 526 + }, + { + "Function Name": "XC_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 612, + "End Line": 667 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 95, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "testSortAccountsByShippingCountry", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 63 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "testSortAccountsByShippingCountryInDescending", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 93 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "testSortAccountsByNumberOfEmployees", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 176, + "End Line": 194 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 227 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 260 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 289 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 299, + "End Line": 318 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 351 + }, + { + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 421 + }, + { + "Function Name": "_XC_CFG_PRE_POSTLUDE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 428, + "End Line": 443 + }, + { + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 579 + }, + { + "Function Name": "_XC_CFG_PRE_PREAMBLE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 148 + "Start Line": 42, + "End Line": 81 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 12, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 51, + "Function/Method Declarations": 19, + "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": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 16, + "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": 5, - "Generic Type Abstractions": 14, + "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)": 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, + "Dependency Injection Constructs": 37, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 16, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 4, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 4, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 14, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 139, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421991,15 +421991,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 12, + "Design Snake Case": 37, + "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 6, - "Design Long Vars": 0, + "Design Short Vars": 0, + "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7048.57, + "X": 7045.59, "Y": -96.74, - "Z": -1113.59 + "Z": -1113.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6916.03, + "X": 6913.05, "Y": -88.78, - "Z": -903.58 + "Z": -903.14 }, "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 2dfee2b2e..ba80763b3 100644 --- a/tests/golden_master_zero_dep_audit.json +++ b/tests/golden_master_zero_dep_audit.json @@ -12,8 +12,8 @@ }, "Target Root Name": "data", "Absolute Project Path": "/home/joe/nyx_projects/language-crucible/data", - "Analysis ISO Timestamp": "2026-08-24T01:48:48.621223+00:00", - "Total Scan Duration": "35.52 seconds" + "Analysis ISO Timestamp": "2026-08-24T02:12:24.791400+00:00", + "Total Scan Duration": "35.31 seconds" }, "Source Control Footprint (Immutable Anchor)": { "Active Branch": "HEAD", @@ -26,7 +26,7 @@ "summary": { "total_files": 1104, "verified_files": 935, - "total_loc": 588838, + "total_loc": 587175, "dominant_language": "c", "volatility_index": 0.0, "Percent_Visible": 84.7 @@ -196,10 +196,10 @@ } }, "health": { - "avg_cognitive_load": 24.682, + "avg_cognitive_load": 24.695, "avg_safety_score": 38.656, - "avg_tech_debt": 24.799, - "avg_documentation": 21.603 + "avg_tech_debt": 25.011, + "avg_documentation": 21.558 }, "composition": { "xml": { @@ -279,8 +279,8 @@ }, "m4": { "files": 8, - "loc": 14984, - "impact": 658.78 + "loc": 13321, + "impact": 614.52 }, "python": { "files": 268, @@ -1135,11 +1135,11 @@ }, "cobol/gnucobol_internals": { "file_count": 5, - "total_mass": 15672.55, + "total_mass": 15668.75, "avg_exposures": { "cognitive_load": 48.32, "safety_score": 68.48, - "tech_debt": 14.44, + "tech_debt": 14.48, "verification": 48.92, "api_exposure": 5.08, "concurrency": 0.0, @@ -1148,7 +1148,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 45.92, + "documentation": 45.89, "secrets_risk": 0.0 } }, @@ -1496,9 +1496,9 @@ }, "m4/curl": { "file_count": 2, - "total_mass": 268.24, + "total_mass": 257.74, "avg_exposures": { - "cognitive_load": 2.41, + "cognitive_load": 0.0, "safety_score": 0.0, "tech_debt": 0.0, "verification": 1.15, @@ -1509,26 +1509,26 @@ "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 16.04, + "documentation": 15.08, "secrets_risk": 0.0 } }, "m4/gnucobol": { "file_count": 2, - "total_mass": 158.82, + "total_mass": 138.58, "avg_exposures": { - "cognitive_load": 2.57, + "cognitive_load": 2.61, "safety_score": 0.0, - "tech_debt": 11.15, + "tech_debt": 13.66, "verification": 1.15, - "api_exposure": 5.67, + "api_exposure": 5.51, "concurrency": 0.0, "state_flux": 0.0, "dead_code": 2.44, "spec_match": 50.0, "stability": 25.0, "churn": 0.0, - "documentation": 17.48, + "documentation": 13.92, "secrets_risk": 0.0 } }, @@ -1933,12 +1933,12 @@ }, "m4/curl/m4": { "file_count": 5, - "total_mass": 105.08, + "total_mass": 95.36, "avg_exposures": { - "cognitive_load": 1.38, + "cognitive_load": 4.78, "safety_score": 0.0, - "tech_debt": 36.53, - "verification": 2.33, + "tech_debt": 75.12, + "verification": 2.36, "api_exposure": 1.74, "concurrency": 0.0, "state_flux": 0.0, @@ -1946,7 +1946,7 @@ "spec_match": 100.0, "stability": 50.0, "churn": 0.0, - "documentation": 25.59, + "documentation": 19.01, "secrets_risk": 0.0 } }, @@ -62933,7 +62933,7 @@ } }, "cobol/gnucobol_internals": { - "Directory Group Magnitude": 15672.55, + "Directory Group Magnitude": 15668.75, "File Count": 5, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" @@ -62941,7 +62941,7 @@ "Average Risk Exposures": { "Cognitive Load Exposure": "48.32%", "Error & Exception Exposure": "68.48%", - "Tech Debt Exposure": "14.44%", + "Tech Debt Exposure": "14.48%", "Testing Exposure": "48.92%", "API Exposure": "5.08%", "Concurrency Exposure": "0.0%", @@ -62950,7 +62950,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "45.92%", + "Documentation Exposure": "45.89%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -65669,9 +65669,9 @@ "Identity Proof": "Single Indicator (Ext: .at)" }, "2. Topological Coordinates": { - "X": -4606.54, - "Y": 1.12, - "Z": -3451.3 + "X": -4606.72, + "Y": 1.1, + "Z": -3451.53 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -65681,9 +65681,9 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 7252, - "Coding LOC": 6307, - "Documentation LOC": 0, - "Structural Magnitude": 141.14, + "Coding LOC": 6117, + "Documentation LOC": 190, + "Structural Magnitude": 137.34, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, @@ -65694,7 +65694,7 @@ "4. Vulnerability & Risk Exposures": { "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.63%", + "Tech Debt Exposure": "11.78%", "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", @@ -65703,7 +65703,7 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "12.09%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], @@ -65722,7 +65722,7 @@ "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 643, + "Unit Test Assertions": 633, "Asynchronous/Concurrent Execution": 0, "UI / View Layer Components": 0, "Closures and Anonymous Functions": 0, @@ -220055,7 +220055,7 @@ "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "100.0%", - "Testing Exposure": "2.58%", + "Testing Exposure": "2.57%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -336297,7 +336297,7 @@ "Cognitive Load Exposure": "68.76%", "Error & Exception Exposure": "75.17%", "Tech Debt Exposure": "69.71%", - "Testing Exposure": "2.5%", + "Testing Exposure": "2.49%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "99.96%", @@ -406085,14 +406085,14 @@ } }, "m4/curl": { - "Directory Group Magnitude": 268.24, + "Directory Group Magnitude": 257.74, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.41%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "1.15%", @@ -406103,7 +406103,7 @@ "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "16.04%", + "Documentation Exposure": "15.08%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -406120,9 +406120,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": 4380.63, - "Y": 211.01, - "Z": -4664.35 + "X": 4380.65, + "Y": 211.04, + "Z": -4664.33 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -406277,9 +406277,9 @@ "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": 4622.51, + "X": 4622.19, "Y": 251.14, - "Z": -5083.13 + "Z": -5082.8 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -406289,18 +406289,18 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 5493, - "Coding LOC": 4762, - "Documentation LOC": 199, - "Structural Magnitude": 267.24, - "Control Flow Ratio": "100.0%", + "Coding LOC": 4237, + "Documentation LOC": 724, + "Structural Magnitude": 256.74, + "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.004 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "4.81%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", "Testing Exposure": "2.3%", @@ -406311,13 +406311,13 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "32.08%", + "Documentation Exposure": "30.15%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 15, + "Control Flow Branches": 0, "Sequential Logic Declarations": 0, "Function Parameters": 7, "Function/Method Declarations": 0, @@ -406365,7 +406365,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 3207, + "Structural Space Indentations": 3101, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -417149,25 +417149,25 @@ } }, "m4/gnucobol": { - "Directory Group Magnitude": 158.82, + "Directory Group Magnitude": 138.58, "File Count": 2, "Ecosystem Fingerprint (Archetypes)": { "Static: Literature & Documentation": "50.0%", "Unclassified": "50.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "2.57%", + "Cognitive Load Exposure": "2.61%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "11.15%", + "Tech Debt Exposure": "13.66%", "Testing Exposure": "1.15%", - "API Exposure": "5.67%", + "API Exposure": "5.51%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "2.44%", "Specification Exposure": "50.0%", "Instability Exposure": "25.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "17.48%", + "Documentation Exposure": "13.92%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { @@ -417184,9 +417184,9 @@ "Identity Proof": "Metadata Anchor (COPYING)" }, "2. Topological Coordinates": { - "X": -4834.07, - "Y": -126.28, - "Z": 4394.12 + "X": -4831.7, + "Y": -126.34, + "Z": 4391.98 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -417334,16 +417334,16 @@ "Path": "m4/gnucobol/configure.ac", "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Mixed (33.2% Spaces / 66.8% Tabs)", + "Indentation Style": "Mixed (37.6% Spaces / 62.4% Tabs)", "Doc Umbrella": 0.0, "Folder Dominant Lang": "plaintext", "Lock Tier": 1, "Identity Proof": "Metadata Anchor (configure.ac)" }, "2. Topological Coordinates": { - "X": -4583.85, + "X": -4582.66, "Y": -118.16, - "Z": 3969.26 + "Z": 3968.2 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -417353,29 +417353,29 @@ "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, "Total LOC": 2922, - "Coding LOC": 2606, - "Documentation LOC": 55, - "Structural Magnitude": 145.32, - "Control Flow Ratio": "98.1%", + "Coding LOC": 2144, + "Documentation LOC": 517, + "Structural Magnitude": 125.08, + "Control Flow Ratio": "100.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.021 + "Raw Cognitive Density": 0.026 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.13%", + "Cognitive Load Exposure": "5.21%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "22.3%", + "Tech Debt Exposure": "27.32%", "Testing Exposure": "2.3%", - "API Exposure": "11.33%", + "API Exposure": "11.01%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "4.88%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "34.96%", + "Documentation Exposure": "27.84%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ @@ -417402,16 +417402,16 @@ ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 51, - "Sequential Logic Declarations": 1, + "Control Flow Branches": 50, + "Sequential Logic Declarations": 0, "Function Parameters": 0, "Function/Method Declarations": 2, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 48, + "Defensive Programming Constructs": 42, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 6, - "Exposed API / Public Exports": 91, + "Exposed API / Public Exports": 80, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 1, "Structured Documentation Blocks": 1, @@ -417432,15 +417432,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 1, - "Preprocessor Macros": 136, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 126, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 248, + "Structured Telemetry & Logging": 240, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 71, + "Fatal Aborts & Exceptions": 70, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -417449,8 +417449,8 @@ "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, - "Structural Tab Indentations": 1014, - "Structural Space Indentations": 504, + "Structural Tab Indentations": 814, + "Structural Space Indentations": 491, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -417467,12 +417467,12 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 384, + "Core Var Decl": 362, "Design Camel Case": 0, - "Design Snake Case": 86, + "Design Snake Case": 85, "Design Pascal Case": 0, - "Design Upper Case": 294, - "Design Short Vars": 11, + "Design Upper Case": 273, + "Design Short Vars": 8, "Design Long Vars": 4, "Duplicate Logic": 0, "Orphaned Logic": 2, @@ -419659,44 +419659,44 @@ } } }, - "m4/curl/m4": { - "Directory Group Magnitude": 105.08, - "File Count": 5, + "xml/apex": { + "Directory Group Magnitude": 95.76, + "File Count": 6, "Ecosystem Fingerprint (Archetypes)": { "Unclassified": "100.0%" }, "Average Risk Exposures": { - "Cognitive Load Exposure": "1.38%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "36.53%", - "Testing Exposure": "2.33%", - "API Exposure": "1.74%", + "Cognitive Load Exposure": "7.1%", + "Error & Exception Exposure": "17.37%", + "Tech Debt Exposure": "45.98%", + "Testing Exposure": "1.23%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "12.32%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "53.33%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.59%", + "Documentation Exposure": "13.63%", "Hardcoded Payload Artifacts": "0.0%" }, "Files": { - "m4/curl/m4/curl-confopts.m4": { + "xml/apex/CanTheUser_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-confopts.m4", - "Path": "m4/curl/m4/curl-confopts.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls-meta.xml", + "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6294.64, - "Y": -77.89, - "Z": -1003.7 + "X": 2365.65, + "Y": 112.82, + "Z": 3759.41 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -419705,186 +419705,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 577, - "Coding LOC": 503, - "Documentation LOC": 35, - "Structural Magnitude": 40.96, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "3.46%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "14.33%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 48, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 142, - "End Line": 189 - }, - { - "Function Name": "CURL_CHECK_OPTION_WARNINGS", - "Structural Impact": 2.8, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 296 - }, - { - "Function Name": "CURL_CHECK_OPTION_ARES", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 75, - "End Line": 101 - }, - { - "Function Name": "CURL_CHECK_OPTION_DEBUG", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 110, - "End Line": 134 - }, - { - "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 32, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 198, - "End Line": 229 - }, - { - "Function Name": "CURL_CHECK_OPTION_RT", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 25, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 238, - "End Line": 262 - }, - { - "Function Name": "CURL_CHECK_OPTION_WERROR", - "Structural Impact": 2.4, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 304, - "End Line": 327 - }, - { - "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", - "Structural Impact": 2.2, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 334, - "End Line": 357 - }, - { - "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 34, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 67 - }, - { - "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 17, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 385 - }, - { - "Function Name": "CURL_CHECK_LIB_ARES", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 75, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 393, - "End Line": 467 - }, - { - "Function Name": "CURL_CHECK_OPTION_HTTPSRR", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 475, - "End Line": 502 - }, - { - "Function Name": "CURL_CHECK_OPTION_ECH", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 28, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 510, - "End Line": 537 - }, - { - "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 30, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 546, - "End Line": 575 - } - ], + "5. Function Analysis": [], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { "Control Flow Branches": 0, - "Sequential Logic Declarations": 5, - "Function Parameters": 9, - "Function/Method Declarations": 14, + "Sequential Logic Declarations": 0, + "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": 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, @@ -419905,15 +419764,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 5, - "Preprocessor Macros": 2, + "Dependency Injection Constructs": 0, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 47, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 1, + "Fatal Aborts & Exceptions": 0, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -419923,7 +419782,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 357, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -419940,13 +419799,13 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 108, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 57, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 35, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 1, + "Design Long Vars": 0, "Duplicate Logic": 0, "Orphaned Logic": 0, "Instructional Code Examples": 0, @@ -419958,7 +419817,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -419979,22 +419838,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-mbedtls.m4": { + "xml/apex/IterationRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-mbedtls.m4", - "Path": "m4/curl/m4/curl-mbedtls.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6795.59, - "Y": 1.77, - "Z": -995.04 + "X": 2583.66, + "Y": 160.61, + "Z": 4415.92 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420003,56 +419862,45 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 123, - "Coding LOC": 105, - "Documentation LOC": 0, - "Structural Magnitude": 5.6, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "94.57%", - "Testing Exposure": "2.3%", - "API Exposure": "4.56%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", + "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.35%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_WITH_MBEDTLS", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 95, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 28, - "End Line": 122 - } - ], + "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": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 3, + "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, @@ -420069,16 +419917,16 @@ "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": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 2, + "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 2, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420091,7 +419939,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 75, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420108,15 +419956,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 30, + "Core Var Decl": 0, "Design Camel Case": 0, - "Design Snake Case": 15, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 15, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 2, + "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, @@ -420126,7 +419974,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420147,22 +419995,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/curl-sysconfig.m4": { + "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { "1. Artifact Identity": { - "Filename": "curl-sysconfig.m4", - "Path": "m4/curl/m4/curl-sysconfig.m4", - "Language": "M4", + "Filename": "ListSortingRecipes_Tests.cls-meta.xml", + "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", + "Language": "Xml", "Architect": "Unknown Architect", - "Indentation Style": "Spaces", + "Indentation Style": "Neutral / No Indentation", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .xml)" }, "2. Topological Coordinates": { - "X": 6052.05, - "Y": -173.05, - "Z": -1560.96 + "X": 1884.76, + "Y": 252.1, + "Z": 4095.81 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420171,50 +420019,39 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 52, - "Coding LOC": 50, - "Documentation LOC": 0, - "Structural Magnitude": 2.5, + "Total LOC": 6, + "Coding LOC": 0, + "Documentation LOC": 5, + "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.1 + "Raw Cognitive Density": 5.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.91%", + "Cognitive Load Exposure": "5.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "88.08%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "0.0%", + "Testing Exposure": "0.15%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "100.0%", + "Specification Exposure": "6.67%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "36.09%", + "Documentation Exposure": "6.05%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [ - { - "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 25, - "End Line": 51 - } - ], + "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": 1, + "Function/Method Declarations": 0, "Class/Entity Declarations": 0, "Defensive Programming Constructs": 0, "Type/Safety Bypasses": 0, @@ -420246,7 +420083,7 @@ "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 3, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -420259,7 +420096,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 24, + "Structural Space Indentations": 0, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420276,15 +420113,15 @@ "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": 2, + "Design Snake Case": 0, "Design Pascal Case": 0, - "Design Upper Case": 3, + "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, @@ -420294,7 +420131,7 @@ "External Network & I/O Hooks": 0, "Dynamic Code Execution (Eval/Exec)": 0, "Global Environment Mutation": 0, - "Commented-Out Executable Logic": 2, + "Commented-Out Executable Logic": 0, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -420315,22 +420152,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/xc-am-iface.m4": { + "xml/apex/CanTheUser_Tests.cls": { "1. Artifact Identity": { - "Filename": "xc-am-iface.m4", - "Path": "m4/curl/m4/xc-am-iface.m4", - "Language": "M4", + "Filename": "CanTheUser_Tests.cls", + "Path": "xml/apex/CanTheUser_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6580.46, - "Y": -20.93, - "Z": -1741.98 + "X": 2286.17, + "Y": 135.41, + "Z": 4092.93 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420339,80 +420176,210 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 86, - "Coding LOC": 78, - "Documentation LOC": 0, - "Structural Magnitude": 5.96, - "Control Flow Ratio": "0.0%", + "Total LOC": 167, + "Coding LOC": 144, + "Documentation LOC": 2, + "Structural Magnitude": 30.78, + "Control Flow Ratio": "66.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": 0.149 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", + "Cognitive Load Exposure": "8.3%", + "Error & Exception Exposure": "50.27%", + "Tech Debt Exposure": "99.98%", + "Testing Exposure": "2.33%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "27.11%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "27.3%", + "Documentation Exposure": "19.55%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "_XC_AUTOMAKE_BODY", - "Structural Impact": 2.3, - "Lines of Code (LOC)": 17, + "Function Name": "getBulkFLSAccessibleWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 86, + "End Line": 99 + }, + { + "Function Name": "getBulkFLSUpdatableWithAccountPositive", + "Structural Impact": 2.7, + "Lines of Code (LOC)": 14, + "Control Flow Branches": 1, + "Input Parameters": 0, + "Control Flow Ratio": "100.0%", + "Start Line": 120, + "End Line": 133 + }, + { + "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 41, - "End Line": 57 + "Start Line": 101, + "End Line": 118 }, { - "Function Name": "XC_AUTOMAKE", - "Structural Impact": 2.1, - "Lines of Code (LOC)": 13, + "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 18, "Control Flow Branches": 0, - "Input Parameters": 1, + "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 73, - "End Line": 85 + "Start Line": 135, + "End Line": 152 + }, + { + "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 12, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 154, + "End Line": 165 + }, + { + "Function Name": "canCrudAccountCreatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 6, + "End Line": 12 + }, + { + "Function Name": "canCrudCreateAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 14, + "End Line": 20 + }, + { + "Function Name": "canCrudAccountReadPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 22, + "End Line": 28 + }, + { + "Function Name": "canCrudReadAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 30, + "End Line": 36 + }, + { + "Function Name": "canCrudAccountUpdatePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 38, + "End Line": 44 + }, + { + "Function Name": "canCrudEditAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 46, + "End Line": 52 + }, + { + "Function Name": "canCrudAccountDeletePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 54, + "End Line": 60 + }, + { + "Function Name": "canCrudDestroyAccountPositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 62, + "End Line": 68 + }, + { + "Function Name": "getFLSofAccountNamePositive", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 70, + "End Line": 76 + }, + { + "Function Name": "getFLSofAccountIDNegative", + "Structural Impact": 1.4, + "Lines of Code (LOC)": 7, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 78, + "End Line": 84 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 0, - "Function Parameters": 3, - "Function/Method Declarations": 2, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 1, + "Function Parameters": 15, + "Function/Method Declarations": 15, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, - "High-Risk Execution Commands": 0, + "High-Risk Execution Commands": 2, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 4, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Unit Test Assertions": 35, "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, + "Decorators and Annotations": 16, + "Generic Type Abstractions": 12, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 47, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420422,7 +420389,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 12, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420433,11 +420400,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 1, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 1, + "Structural Space Indentations": 141, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420454,15 +420421,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, + "Core Var Decl": 8, + "Design Camel Case": 4, + "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": 0, + "Orphaned Logic": 15, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420493,22 +420460,22 @@ }, "9. Extracted Dependencies": [] }, - "m4/curl/m4/zz40-xc-ovr.m4": { + "xml/apex/IterationRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "zz40-xc-ovr.m4", - "Path": "m4/curl/m4/zz40-xc-ovr.m4", - "Language": "M4", + "Filename": "IterationRecipes_Tests.cls", + "Path": "xml/apex/IterationRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "m4", + "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .m4)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 6524.14, - "Y": -92.58, - "Z": -1346.43 + "X": 2668.07, + "Y": 94.78, + "Z": 3866.55 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420517,275 +420484,115 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 668, - "Coding LOC": 573, - "Documentation LOC": 18, - "Structural Magnitude": 50.06, - "Control Flow Ratio": "0.0%", + "Total LOC": 74, + "Coding LOC": 59, + "Documentation LOC": 7, + "Structural Magnitude": 9.98, + "Control Flow Ratio": "42.9%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 0.0 + "Raw Cognitive Density": 0.136 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "0.0%", + "Cognitive Load Exposure": "6.28%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "2.34%", - "API Exposure": "0.71%", + "Tech Debt Exposure": "99.1%", + "Testing Exposure": "2.32%", + "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": "13.9%", + "Documentation Exposure": "25.7%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "XC_CONFIGURE_PREAMBLE", - "Structural Impact": 4.1, - "Lines of Code (LOC)": 54, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 473, - "End Line": 526 - }, - { - "Function Name": "XC_CHECK_PATH_SEPARATOR", - "Structural Impact": 2.9, - "Lines of Code (LOC)": 56, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 612, - "End Line": 667 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 91, - "End Line": 110 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 120, - "End Line": 138 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 148, - "End Line": 166 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 19, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 176, - "End Line": 194 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 208, - "End Line": 227 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 241, - "End Line": 260 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 270, - "End Line": 289 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 20, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 299, - "End Line": 318 - }, - { - "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 24, - "Control Flow Branches": 0, + "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", + "Structural Impact": 5.3, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 3, "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 328, - "End Line": 351 + "Control Flow Ratio": "60.0%", + "Start Line": 46, + "End Line": 72 }, { - "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Function Name": "testIterableApiClientRecipePositive", "Structural Impact": 2.0, - "Lines of Code (LOC)": 53, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 369, - "End Line": 421 - }, - { - "Function Name": "_XC_CFG_PRE_POSTLUDE", - "Structural Impact": 1.8, - "Lines of Code (LOC)": 16, + "Lines of Code (LOC)": 26, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 428, - "End Line": 443 - }, - { - "Function Name": "_AS_PATH_SEPARATOR_PREPARE", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 5, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 545, - "End Line": 549 - }, - { - "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 559, - "End Line": 564 - }, - { - "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", - "Structural Impact": 1.7, - "Lines of Code (LOC)": 6, - "Control Flow Branches": 0, - "Input Parameters": 1, - "Control Flow Ratio": "0.0%", - "Start Line": 574, - "End Line": 579 + "Start Line": 19, + "End Line": 44 }, { - "Function Name": "_XC_CFG_PRE_PREAMBLE", + "Function Name": "testIterateOnAccountListPositive", "Structural Impact": 1.5, - "Lines of Code (LOC)": 40, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 42, - "End Line": 81 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 34, - "End Line": 34 - }, - { - "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", - "Structural Impact": 1.1, - "Lines of Code (LOC)": 1, + "Lines of Code (LOC)": 12, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 35 + "Start Line": 6, + "End Line": 17 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 0, - "Sequential Logic Declarations": 38, - "Function Parameters": 51, - "Function/Method Declarations": 19, - "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 4, + "Control Flow Branches": 3, + "Sequential Logic Declarations": 4, + "Function Parameters": 3, + "Function/Method Declarations": 3, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, - "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 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": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 14, "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, + "Decorators and Annotations": 4, + "Generic Type Abstractions": 8, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 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": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 38, + "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": 4, + "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 4, + "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": 2, + "Private / Encapsulated Scopes": 3, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 0, + "Bypassed / Skipped Tests": 2, "Structural Tab Indentations": 0, - "Structural Space Indentations": 81, + "Structural Space Indentations": 56, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420802,15 +420609,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 50, - "Design Camel Case": 0, - "Design Snake Case": 37, + "Core Var Decl": 6, + "Design Camel Case": 3, + "Design Snake Case": 3, "Design Pascal Case": 0, - "Design Upper Case": 10, + "Design Upper Case": 0, "Design Short Vars": 0, - "Design Long Vars": 3, + "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 3, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -420840,47 +420647,23 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - } - } - }, - "xml/apex": { - "Directory Group Magnitude": 95.76, - "File Count": 6, - "Ecosystem Fingerprint (Archetypes)": { - "Unclassified": "100.0%" - }, - "Average Risk Exposures": { - "Cognitive Load Exposure": "7.1%", - "Error & Exception Exposure": "17.37%", - "Tech Debt Exposure": "45.98%", - "Testing Exposure": "1.23%", - "API Exposure": "0.0%", - "Concurrency Exposure": "0.0%", - "State Flux Exposure": "12.32%", - "Commented Logic Exposure": "0.0%", - "Specification Exposure": "53.33%", - "Instability Exposure": "50.0%", - "Volatility Exposure": "0.0%", - "Documentation Exposure": "13.63%", - "Hardcoded Payload Artifacts": "0.0%" - }, - "Files": { - "xml/apex/CanTheUser_Tests.cls-meta.xml": { + }, + "xml/apex/ListSortingRecipes_Tests.cls": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls-meta.xml", - "Path": "xml/apex/CanTheUser_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "ListSortingRecipes_Tests.cls", + "Path": "xml/apex/ListSortingRecipes_Tests.cls", + "Language": "Apex", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, "Folder Dominant Lang": "xml", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .cls)" }, "2. Topological Coordinates": { - "X": 2365.65, - "Y": 112.82, - "Z": 3759.41 + "X": 2044.06, + "Y": 231.79, + "Z": 4252.05 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -420889,59 +420672,100 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, - "Control Flow Ratio": "0.0%", + "Total LOC": 150, + "Coding LOC": 142, + "Documentation LOC": 3, + "Structural Magnitude": 23.44, + "Control Flow Ratio": "14.3%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.3 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", - "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", + "Cognitive Load Exposure": "12.99%", + "Error & Exception Exposure": "53.94%", + "Tech Debt Exposure": "76.8%", + "Testing Exposure": "2.3%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "0.0%", + "State Flux Exposure": "46.8%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "18.34%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "testASCComparatorException", + "Structural Impact": 4.1, + "Lines of Code (LOC)": 22, + "Control Flow Branches": 2, + "Input Parameters": 0, + "Control Flow Ratio": "66.7%", + "Start Line": 95, + "End Line": 116 + }, + { + "Function Name": "testSortAccountsByShippingCountry", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 63 + }, + { + "Function Name": "testSortAccountsByShippingCountryInDescending", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 29, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 65, + "End Line": 93 + }, + { + "Function Name": "testSortAccountsByNumberOfEmployees", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 31, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 118, + "End Line": 148 + } + ], "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, + "Control Flow Branches": 2, + "Sequential Logic Declarations": 12, + "Function Parameters": 4, + "Function/Method Declarations": 4, + "Class/Entity Declarations": 1, + "Defensive Programming Constructs": 2, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, - "State Mutations / Variable Reassignments": 0, + "State Mutations / Variable Reassignments": 12, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 0, - "Unit Test Assertions": 0, + "Structured Documentation Blocks": 2, + "Unit Test Assertions": 16, "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, + "Decorators and Annotations": 5, + "Generic Type Abstractions": 14, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 0, + "Module Dependencies (Imports)": 9, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -420951,7 +420775,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 0, + "Manual Memory Allocation": 16, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -420960,13 +420784,13 @@ "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 0, + "Immutable Data Declarations": 10, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 0, + "Private / Encapsulated Scopes": 14, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 139, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -420983,15 +420807,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": 29, "Design Camel Case": 0, - "Design Snake Case": 0, - "Design Pascal Case": 0, - "Design Upper Case": 0, - "Design Short Vars": 0, + "Design Snake Case": 7, + "Design Pascal Case": 12, + "Design Upper Case": 10, + "Design Short Vars": 6, "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, @@ -421021,23 +420845,47 @@ "Total Downstream (Absolute Dependency Blast Radius)": 0 }, "9. Extracted Dependencies": [] - }, - "xml/apex/IterationRecipes_Tests.cls-meta.xml": { + } + } + }, + "m4/curl/m4": { + "Directory Group Magnitude": 95.36, + "File Count": 5, + "Ecosystem Fingerprint (Archetypes)": { + "Unclassified": "100.0%" + }, + "Average Risk Exposures": { + "Cognitive Load Exposure": "4.78%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "75.12%", + "Testing Exposure": "2.36%", + "API Exposure": "1.74%", + "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.01%", + "Hardcoded Payload Artifacts": "0.0%" + }, + "Files": { + "m4/curl/m4/curl-confopts.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/IterationRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-confopts.m4", + "Path": "m4/curl/m4/curl-confopts.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2583.66, - "Y": 160.61, - "Z": 4415.92 + "X": 6294.83, + "Y": -77.64, + "Z": -1004.56 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421046,45 +420894,186 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 577, + "Coding LOC": 375, + "Documentation LOC": 163, + "Structural Magnitude": 38.4, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "62.25%", + "Testing Exposure": "2.35%", + "API Exposure": "3.46%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_CHECK_OPTION_OPTIMIZE", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 48, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 142, + "End Line": 189 + }, + { + "Function Name": "CURL_CHECK_OPTION_WARNINGS", + "Structural Impact": 2.8, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 296 + }, + { + "Function Name": "CURL_CHECK_OPTION_ARES", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 27, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 75, + "End Line": 101 + }, + { + "Function Name": "CURL_CHECK_OPTION_DEBUG", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 110, + "End Line": 134 + }, + { + "Function Name": "CURL_CHECK_OPTION_SYMBOL_HIDING", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 32, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 198, + "End Line": 229 + }, + { + "Function Name": "CURL_CHECK_OPTION_RT", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 25, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 238, + "End Line": 262 + }, + { + "Function Name": "CURL_CHECK_OPTION_WERROR", + "Structural Impact": 2.4, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 304, + "End Line": 327 + }, + { + "Function Name": "CURL_CHECK_NONBLOCKING_SOCKET", + "Structural Impact": 2.2, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 334, + "End Line": 357 + }, + { + "Function Name": "CURL_CHECK_OPTION_THREADED_RESOLVER", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 34, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 67 + }, + { + "Function Name": "CURL_CONFIGURE_SYMBOL_HIDING", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 17, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 385 + }, + { + "Function Name": "CURL_CHECK_LIB_ARES", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 75, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 393, + "End Line": 467 + }, + { + "Function Name": "CURL_CHECK_OPTION_HTTPSRR", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 475, + "End Line": 502 + }, + { + "Function Name": "CURL_CHECK_OPTION_ECH", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 28, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 510, + "End Line": 537 + }, + { + "Function Name": "CURL_CHECK_OPTION_SSLS_EXPORT", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 30, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 546, + "End Line": 575 + } + ], "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": 5, + "Function Parameters": 9, + "Function/Method Declarations": 14, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 1, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421105,15 +421094,15 @@ "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, - "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Dependency Injection Constructs": 5, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 47, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 1, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, @@ -421123,7 +421112,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 324, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421140,15 +421129,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": 108, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 57, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 35, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 1, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 10, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421158,7 +421147,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421179,22 +421168,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls-meta.xml": { + "m4/curl/m4/curl-mbedtls.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls-meta.xml", - "Path": "xml/apex/ListSortingRecipes_Tests.cls-meta.xml", - "Language": "Xml", + "Filename": "curl-mbedtls.m4", + "Path": "m4/curl/m4/curl-mbedtls.m4", + "Language": "M4", "Architect": "Unknown Architect", - "Indentation Style": "Neutral / No Indentation", + "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .xml)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 1884.76, - "Y": 252.1, - "Z": 4095.81 + "X": 6580.88, + "Y": -42.95, + "Z": -1681.66 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421203,45 +421192,56 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 6, - "Coding LOC": 0, - "Documentation LOC": 5, - "Structural Magnitude": 10.52, + "Total LOC": 123, + "Coding LOC": 70, + "Documentation LOC": 35, + "Structural Magnitude": 4.9, "Control Flow Ratio": "0.0%", "Popularity Rank": 0, "Raw Churn Frequency": 0.0, "Authorship Centralization": 0.0, "Ownership Entropy": 0.0, - "Raw Cognitive Density": 5.0 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "5.0%", + "Cognitive Load Exposure": "0.0%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "0.0%", - "Testing Exposure": "0.15%", - "API Exposure": "0.0%", + "Tech Debt Exposure": "99.61%", + "Testing Exposure": "2.3%", + "API Exposure": "4.56%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", - "Specification Exposure": "6.67%", + "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "6.05%", + "Documentation Exposure": "31.65%", "Hardcoded Payload Artifacts": "0.0%" }, - "5. Function Analysis": [], + "5. Function Analysis": [ + { + "Function Name": "CURL_WITH_MBEDTLS", + "Structural Impact": 1.5, + "Lines of Code (LOC)": 95, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 28, + "End Line": 122 + } + ], "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, + "Function/Method Declarations": 1, "Class/Entity Declarations": 0, - "Defensive Programming Constructs": 0, + "Defensive Programming Constructs": 3, "Type/Safety Bypasses": 0, "High-Risk Execution Commands": 0, "I/O and Network Boundaries": 0, - "Exposed API / Public Exports": 0, + "Exposed API / Public Exports": 2, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, @@ -421258,16 +421258,16 @@ "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, - "Acknowledged Tech Debt (FIXMEs)": 0, + "Acknowledged Tech Debt (FIXMEs)": 1, "Specification Traceability Tags": 0, "Server-Side Rendering Contexts": 0, "Event Publishers / Emitters": 0, "Dependency Injection Constructs": 0, - "Preprocessor Macros": 0, + "Preprocessor Macros": 2, "Pointer Arithmetic & Addressing": 0, "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 2, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421280,7 +421280,7 @@ "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 0, + "Structural Space Indentations": 66, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421297,15 +421297,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": 30, "Design Camel Case": 0, - "Design Snake Case": 0, + "Design Snake Case": 15, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 15, "Design Short Vars": 0, - "Design Long Vars": 0, + "Design Long Vars": 2, "Duplicate Logic": 0, - "Orphaned Logic": 0, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421315,7 +421315,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421336,22 +421336,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/CanTheUser_Tests.cls": { + "m4/curl/m4/curl-sysconfig.m4": { "1. Artifact Identity": { - "Filename": "CanTheUser_Tests.cls", - "Path": "xml/apex/CanTheUser_Tests.cls", - "Language": "Apex", + "Filename": "curl-sysconfig.m4", + "Path": "m4/curl/m4/curl-sysconfig.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2286.17, - "Y": 135.41, - "Z": 4092.93 + "X": 6053.8, + "Y": -172.45, + "Z": -1560.28 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421360,210 +421360,70 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 167, - "Coding LOC": 144, - "Documentation LOC": 2, - "Structural Magnitude": 30.78, - "Control Flow Ratio": "66.7%", + "Total LOC": 52, + "Coding LOC": 21, + "Documentation LOC": 29, + "Structural Magnitude": 1.92, + "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.149 + "Raw Cognitive Density": 0.238 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "8.3%", - "Error & Exception Exposure": "50.27%", - "Tech Debt Exposure": "99.98%", - "Testing Exposure": "2.33%", + "Cognitive Load Exposure": "11.43%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "99.97%", + "Testing Exposure": "2.35%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "27.11%", + "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.55%", + "Documentation Exposure": "27.66%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "getBulkFLSAccessibleWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 86, - "End Line": 99 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositive", - "Structural Impact": 2.7, - "Lines of Code (LOC)": 14, - "Control Flow Branches": 1, - "Input Parameters": 0, - "Control Flow Ratio": "100.0%", - "Start Line": 120, - "End Line": 133 - }, - { - "Function Name": "getBulkFLSAccessibleWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 101, - "End Line": 118 - }, - { - "Function Name": "getBulkFLSUpdatableWithAccountPositiveWithNegativeResults", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 18, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 135, - "End Line": 152 - }, - { - "Function Name": "memoizedFLSMDCcomparesAccesibleToUpdatable", + "Function Name": "CURL_DARWIN_SYSTEMCONFIGURATION", "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 154, - "End Line": 165 - }, - { - "Function Name": "canCrudAccountCreatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 12 - }, - { - "Function Name": "canCrudCreateAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 14, - "End Line": 20 - }, - { - "Function Name": "canCrudAccountReadPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 22, - "End Line": 28 - }, - { - "Function Name": "canCrudReadAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 30, - "End Line": 36 - }, - { - "Function Name": "canCrudAccountUpdatePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 38, - "End Line": 44 - }, - { - "Function Name": "canCrudEditAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 46, - "End Line": 52 - }, - { - "Function Name": "canCrudAccountDeletePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 54, - "End Line": 60 - }, - { - "Function Name": "canCrudDestroyAccountPositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 62, - "End Line": 68 - }, - { - "Function Name": "getFLSofAccountNamePositive", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, - "Control Flow Branches": 0, - "Input Parameters": 0, - "Control Flow Ratio": "0.0%", - "Start Line": 70, - "End Line": 76 - }, - { - "Function Name": "getFLSofAccountIDNegative", - "Structural Impact": 1.4, - "Lines of Code (LOC)": 7, + "Lines of Code (LOC)": 27, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 78, - "End Line": 84 + "Start Line": 25, + "End Line": 51 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 1, - "Function Parameters": 15, - "Function/Method Declarations": 15, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 1, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, + "Function Parameters": 0, + "Function/Method Declarations": 1, + "Class/Entity Declarations": 0, + "Defensive Programming Constructs": 0, "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": 4, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, "Structured Documentation Blocks": 0, - "Unit Test Assertions": 35, + "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": 16, - "Generic Type Abstractions": 12, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 47, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421573,9 +421433,9 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 12, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 3, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, "Fatal Aborts & Exceptions": 0, @@ -421584,11 +421444,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 1, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 141, + "Structural Space Indentations": 18, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421605,15 +421465,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 8, - "Design Camel Case": 4, - "Design Snake Case": 4, + "Core Var Decl": 5, + "Design Camel Case": 0, + "Design Snake Case": 2, "Design Pascal Case": 0, - "Design Upper Case": 0, + "Design Upper Case": 3, "Design Short Vars": 0, "Design Long Vars": 0, "Duplicate Logic": 0, - "Orphaned Logic": 15, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421623,7 +421483,7 @@ "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": 2, "Low-Level Bitwise / Cryptographic Math": 0, "Non-Standard / Steganographic Imports": 0, "Non-Standard Unicode / Homoglyphs": 0, @@ -421644,22 +421504,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/IterationRecipes_Tests.cls": { + "m4/curl/m4/xc-am-iface.m4": { "1. Artifact Identity": { - "Filename": "IterationRecipes_Tests.cls", - "Path": "xml/apex/IterationRecipes_Tests.cls", - "Language": "Apex", + "Filename": "xc-am-iface.m4", + "Path": "m4/curl/m4/xc-am-iface.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2668.07, - "Y": 94.78, - "Z": 3866.55 + "X": 6791.74, + "Y": 23.44, + "Z": -1054.19 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421668,22 +421528,22 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 74, - "Coding LOC": 59, - "Documentation LOC": 7, - "Structural Magnitude": 9.98, - "Control Flow Ratio": "42.9%", + "Total LOC": 86, + "Coding LOC": 19, + "Documentation LOC": 59, + "Structural Magnitude": 4.78, + "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.136 + "Raw Cognitive Density": 0.263 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "6.28%", + "Cognitive Load Exposure": "12.48%", "Error & Exception Exposure": "0.0%", - "Tech Debt Exposure": "99.1%", - "Testing Exposure": "2.32%", + "Tech Debt Exposure": "99.99%", + "Testing Exposure": "2.46%", "API Exposure": "0.0%", "Concurrency Exposure": "0.0%", "State Flux Exposure": "0.0%", @@ -421691,67 +421551,57 @@ "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "25.7%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testIterableApiClientRecipeNegativeWhenRecordPageRequestFails", - "Structural Impact": 5.3, - "Lines of Code (LOC)": 27, - "Control Flow Branches": 3, - "Input Parameters": 0, - "Control Flow Ratio": "60.0%", - "Start Line": 46, - "End Line": 72 - }, - { - "Function Name": "testIterableApiClientRecipePositive", - "Structural Impact": 2.0, - "Lines of Code (LOC)": 26, + "Function Name": "_XC_AUTOMAKE_BODY", + "Structural Impact": 2.3, + "Lines of Code (LOC)": 17, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 19, - "End Line": 44 + "Start Line": 41, + "End Line": 57 }, { - "Function Name": "testIterateOnAccountListPositive", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 12, + "Function Name": "XC_AUTOMAKE", + "Structural Impact": 2.1, + "Lines of Code (LOC)": 13, "Control Flow Branches": 0, - "Input Parameters": 0, + "Input Parameters": 1, "Control Flow Ratio": "0.0%", - "Start Line": 6, - "End Line": 17 + "Start Line": 73, + "End Line": 85 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 3, - "Sequential Logic Declarations": 4, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 0, "Function Parameters": 3, - "Function/Method Declarations": 3, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 3, + "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": 2, + "I/O and Network Boundaries": 0, "Exposed API / Public Exports": 0, "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 14, + "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": 4, - "Generic Type Abstractions": 8, + "Decorators and Annotations": 0, + "Generic Type Abstractions": 0, "Collection Iterators / Comprehensions": 0, "Scientific & Mathematical Operations": 0, "Metaprogramming & Reflection": 0, - "Module Dependencies (Imports)": 13, + "Module Dependencies (Imports)": 0, "Authorship Metadata": 0, "Planned Work (TODOs)": 0, "Acknowledged Tech Debt (FIXMEs)": 0, @@ -421761,7 +421611,7 @@ "Dependency Injection Constructs": 0, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 10, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, "Structured Telemetry & Logging": 0, "Ad-hoc Print / Debug Statements": 0, @@ -421772,11 +421622,11 @@ "Thread Synchronization Locks": 0, "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 3, + "Private / Encapsulated Scopes": 0, "Event Listeners & Subscribers": 0, - "Bypassed / Skipped Tests": 2, + "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 56, + "Structural Space Indentations": 1, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421793,15 +421643,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 6, - "Design Camel Case": 3, - "Design Snake Case": 3, + "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": 3, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -421832,22 +421682,22 @@ }, "9. Extracted Dependencies": [] }, - "xml/apex/ListSortingRecipes_Tests.cls": { + "m4/curl/m4/zz40-xc-ovr.m4": { "1. Artifact Identity": { - "Filename": "ListSortingRecipes_Tests.cls", - "Path": "xml/apex/ListSortingRecipes_Tests.cls", - "Language": "Apex", + "Filename": "zz40-xc-ovr.m4", + "Path": "m4/curl/m4/zz40-xc-ovr.m4", + "Language": "M4", "Architect": "Unknown Architect", "Indentation Style": "Spaces", "Doc Umbrella": 0.0, - "Folder Dominant Lang": "xml", + "Folder Dominant Lang": "m4", "Lock Tier": 2, - "Identity Proof": "Single Indicator (Ext: .cls)" + "Identity Proof": "Single Indicator (Ext: .m4)" }, "2. Topological Coordinates": { - "X": 2044.06, - "Y": 231.79, - "Z": 4252.05 + "X": 6523.21, + "Y": -92.58, + "Z": -1346.23 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified", @@ -421856,125 +421706,275 @@ "File Archetype": null, "File Drift (Z-Score)": 0.0, "File Fingerprint": {}, - "Total LOC": 150, - "Coding LOC": 142, - "Documentation LOC": 3, - "Structural Magnitude": 23.44, - "Control Flow Ratio": "14.3%", + "Total LOC": 668, + "Coding LOC": 338, + "Documentation LOC": 253, + "Structural Magnitude": 45.36, + "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.3 + "Raw Cognitive Density": 0.0 }, "4. Vulnerability & Risk Exposures": { - "Cognitive Load Exposure": "12.99%", - "Error & Exception Exposure": "53.94%", - "Tech Debt Exposure": "76.8%", - "Testing Exposure": "2.3%", - "API Exposure": "0.0%", + "Cognitive Load Exposure": "0.0%", + "Error & Exception Exposure": "0.0%", + "Tech Debt Exposure": "13.77%", + "Testing Exposure": "2.37%", + "API Exposure": "0.71%", "Concurrency Exposure": "0.0%", - "State Flux Exposure": "46.8%", + "State Flux Exposure": "0.0%", "Commented Logic Exposure": "0.0%", "Specification Exposure": "100.0%", "Instability Exposure": "50.0%", "Volatility Exposure": "0.0%", - "Documentation Exposure": "18.34%", + "Documentation Exposure": "11.92%", "Hardcoded Payload Artifacts": "0.0%" }, "5. Function Analysis": [ { - "Function Name": "testASCComparatorException", + "Function Name": "XC_CONFIGURE_PREAMBLE", "Structural Impact": 4.1, - "Lines of Code (LOC)": 22, - "Control Flow Branches": 2, + "Lines of Code (LOC)": 54, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 473, + "End Line": 526 + }, + { + "Function Name": "XC_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.9, + "Lines of Code (LOC)": 56, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 612, + "End Line": 667 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_ECHO", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, "Input Parameters": 0, - "Control Flow Ratio": "66.7%", - "Start Line": 95, - "End Line": 116 + "Control Flow Ratio": "0.0%", + "Start Line": 91, + "End Line": 110 }, { - "Function Name": "testSortAccountsByShippingCountry", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_TEST", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 35, - "End Line": 63 + "Start Line": 120, + "End Line": 138 }, { - "Function Name": "testSortAccountsByShippingCountryInDescending", - "Structural Impact": 1.5, - "Lines of Code (LOC)": 29, + "Function Name": "_XC_CFG_PRE_BASIC_CHK_VAR_PATH", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 65, - "End Line": 93 + "Start Line": 148, + "End Line": 166 }, { - "Function Name": "testSortAccountsByNumberOfEmployees", + "Function Name": "_XC_CFG_PRE_BASIC_CHK_CMD_EXPR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 19, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 176, + "End Line": 194 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_SED", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 208, + "End Line": 227 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_GREP", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 241, + "End Line": 260 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_TR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 270, + "End Line": 289 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_WC", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 20, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 299, + "End Line": 318 + }, + { + "Function Name": "_XC_CFG_PRE_BASIC_CHK_UTIL_CAT", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 24, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 328, + "End Line": 351 + }, + { + "Function Name": "_XC_CFG_PRE_CHECK_PATH_SEPARATOR", + "Structural Impact": 2.0, + "Lines of Code (LOC)": 53, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 369, + "End Line": 421 + }, + { + "Function Name": "_XC_CFG_PRE_POSTLUDE", + "Structural Impact": 1.8, + "Lines of Code (LOC)": 16, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 428, + "End Line": 443 + }, + { + "Function Name": "_AS_PATH_SEPARATOR_PREPARE", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 5, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 545, + "End Line": 549 + }, + { + "Function Name": "_AC_INIT_PREPARE_FS_SEPARATORS", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 559, + "End Line": 564 + }, + { + "Function Name": "_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR", + "Structural Impact": 1.7, + "Lines of Code (LOC)": 6, + "Control Flow Branches": 0, + "Input Parameters": 1, + "Control Flow Ratio": "0.0%", + "Start Line": 574, + "End Line": 579 + }, + { + "Function Name": "_XC_CFG_PRE_PREAMBLE", "Structural Impact": 1.5, - "Lines of Code (LOC)": 31, + "Lines of Code (LOC)": 40, "Control Flow Branches": 0, "Input Parameters": 0, "Control Flow Ratio": "0.0%", - "Start Line": 118, - "End Line": 148 + "Start Line": 42, + "End Line": 81 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MAJOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 34, + "End Line": 34 + }, + { + "Function Name": "XC_CONFIGURE_PREAMBLE_VER_MINOR", + "Structural Impact": 1.1, + "Lines of Code (LOC)": 1, + "Control Flow Branches": 0, + "Input Parameters": 0, + "Control Flow Ratio": "0.0%", + "Start Line": 35, + "End Line": 35 } ], "6. Contextual Mitigations & Amplifications": "None Detected", "7. Structural Signatures (Net Mitigated Signals)": { - "Control Flow Branches": 2, - "Sequential Logic Declarations": 12, - "Function Parameters": 4, - "Function/Method Declarations": 4, - "Class/Entity Declarations": 1, - "Defensive Programming Constructs": 2, + "Control Flow Branches": 0, + "Sequential Logic Declarations": 37, + "Function Parameters": 51, + "Function/Method Declarations": 19, + "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": 0, - "State Mutations / Variable Reassignments": 12, + "Exposed API / Public Exports": 1, + "State Mutations / Variable Reassignments": 0, "Commented-out Code (Dead Logic)": 0, - "Structured Documentation Blocks": 2, - "Unit Test Assertions": 16, + "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": 5, - "Generic Type Abstractions": 14, + "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)": 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, + "Dependency Injection Constructs": 37, "Preprocessor Macros": 0, "Pointer Arithmetic & Addressing": 0, - "Manual Memory Allocation": 16, + "Manual Memory Allocation": 0, "Inline Assembly Blocks": 0, - "Structured Telemetry & Logging": 0, + "Structured Telemetry & Logging": 4, "Ad-hoc Print / Debug Statements": 0, "Explicit Type Casts": 0, - "Fatal Aborts & Exceptions": 0, + "Fatal Aborts & Exceptions": 4, "Thread Sleeps & Blocking Waits": 0, "Bitwise Operations": 0, "Thread Synchronization Locks": 0, - "Immutable Data Declarations": 10, + "Immutable Data Declarations": 0, "Resource Deallocation & Cleanup": 0, - "Private / Encapsulated Scopes": 14, + "Private / Encapsulated Scopes": 2, "Event Listeners & Subscribers": 0, "Bypassed / Skipped Tests": 0, "Structural Tab Indentations": 0, - "Structural Space Indentations": 139, + "Structural Space Indentations": 92, "Hardware Bridge": 0, "Cryptography": 0, "Auth Middleware": 0, @@ -421991,15 +421991,15 @@ "Deep Learning & Neural Networks": 0, "Lazy Evaluation & Generators (O(1) Memory)": 0, "Vectorized Math & Tensor Operations": 0, - "Core Var Decl": 29, + "Core Var Decl": 50, "Design Camel Case": 0, - "Design Snake Case": 7, - "Design Pascal Case": 12, + "Design Snake Case": 37, + "Design Pascal Case": 0, "Design Upper Case": 10, - "Design Short Vars": 6, - "Design Long Vars": 0, + "Design Short Vars": 0, + "Design Long Vars": 3, "Duplicate Logic": 0, - "Orphaned Logic": 4, + "Orphaned Logic": 1, "Instructional Code Examples": 0, "Architectural Diagrams (Mermaid/PlantUML)": 0, "Structured Literature Headers": 0, @@ -436450,9 +436450,9 @@ "Identity Proof": "Prose Extension (.txt)" }, "2. Topological Coordinates": { - "X": 7048.57, + "X": 7045.59, "Y": -96.74, - "Z": -1113.59 + "Z": -1113.15 }, "3. Architectural Profile": { "Repository Archetype": "Static: Literature & Documentation", @@ -436607,9 +436607,9 @@ "Identity Proof": "Single Indicator (Ext: .html)" }, "2. Topological Coordinates": { - "X": 6916.03, + "X": 6913.05, "Y": -88.78, - "Z": -903.58 + "Z": -903.14 }, "3. Architectural Profile": { "Repository Archetype": "Unclassified",